/* =========================================================
   ROOT
========================================================= */

:root {
    /* Brand */
    --color-primary: #073d29;
    --color-primary-dark: #03291d;
    --color-primary-light: #0b4d35;

    --color-gold: #b58a3b;
    --color-gold-light: #c59a4c;
    --color-gold-dark: #8c6728;

    /* Water Park Intense Blue Shades */
    --color-waterpark-blue: #0077b6;
    --color-waterpark-blue-dark: #023e8a;
    --color-waterpark-blue-light: #00b4d8;
    --color-aqua-cyan: #48cae4;
    --color-ocean-gradient: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #023e8a 100%);
    --color-waterpark-glow: rgba(0, 180, 216, 0.4);

    /* Neutral */
    --color-white: #ffffff;
    --color-black: #111111;
    --color-text: #252525;
    --color-text-light: #666666;
    --color-bg: #f8f7f3;
    --color-border: #ddd8ce;

    /* Typography */
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Montserrat", Arial, sans-serif;

    /* Sizes */
    --container-width: 1180px;
    --section-padding: 65px;

    /* Effects */
    --shadow-sm: 0 3px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1300px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   UTILITY BAR
========================================================= */

.utility-bar {
    height: 31px;
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11.9px;
    letter-spacing: 0.1px;
}

.utility-inner {
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.utility-left a,
.utility-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.utility-left i {
    color: var(--color-gold-light);
    font-size: 11px;
}

.utility-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-social span {
    margin-right: 5px;
    font-size: 9px;
}

.utility-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.utility-social a:hover {
    color: var(--color-gold-light);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    height: 62px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header .container {
    width: min(1320px, calc(100% - 30px));
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}


/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    white-space: nowrap;
}

.brand-name strong {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 700;
    color: #17231e;
    letter-spacing: 0.5px;
}

.brand-name span {
    margin-top: 3px;
    font-family: var(--font-body);
    font-size: 7.5px;
    color: #333;
    letter-spacing: 4px;
    font-weight:800;
}


/* Navigation */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu a,
.nav-menu .nav-link,
.nav-menu .dropdown-toggle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #202724;
    height: 62px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-menu a i,
.nav-menu .nav-link i,
.nav-menu .dropdown-toggle i {
    font-size: 9px;
    transition: transform var(--transition);
}

.nav-menu a::after,
.nav-menu .nav-link::after,
.nav-menu .dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 0;
    height: 2.5px;
    background: var(--color-waterpark-blue-light);
    box-shadow: 0 0 10px var(--color-waterpark-glow);
    transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .nav-link:hover,
.nav-menu .nav-link.active,
.nav-menu .dropdown-toggle:hover,
.nav-menu .dropdown-toggle.active {
    color: var(--color-waterpark-blue) !important;
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after,
.nav-menu .dropdown-toggle:hover::after,
.nav-menu .dropdown-toggle.active::after {
    width: 100%;
}

/* Dropdown Menu Desktop */
.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--color-waterpark-blue);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 210px;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 12px 35px rgba(0, 119, 182, 0.15);
    border-top: 3px solid var(--color-waterpark-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-menu .dropdown-item {
    display: block;
    width: 100%;
    height: auto !important;
    padding: 10px 18px;
    color: #202724;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.nav-menu .dropdown-item::after {
    display: none !important;
}

.nav-menu .dropdown-item:hover {
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-waterpark-blue-dark) !important;
    padding-left: 23px;
}

/* Book Now */

.nav-menu .book-btn {
    height: auto;
    padding: 10px 21px;
    background: var(--color-gold);
    color: #fff !important;
    border-radius: 4px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.nav-menu .book-btn::after {
    display: none;
}

.nav-menu .book-btn:hover {
    background: var(--color-ocean-gradient) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px var(--color-waterpark-glow);
    transform: translateY(-2px);
}

.nav-menu .book-btn:hover {
    background: var(--color-gold-dark);
    color: #fff;
}


/* Mobile menu button */

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--color-primary);
    font-size: 25px;
    transition: color var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--color-gold);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    height: 600px;
    min-height: 440px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-video {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 87%) 0%, rgb(0 20 13 / 31%) 32%, rgba(0, 20, 13, 0.12) 65%, rgb(0 5 4 / 2%) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg, rgb(0 20 13) 0%, rgb(0 20 13 / 79%) 30%, rgb(0 20 13 / 23%) 70%, rgba(0, 20, 13, 0.2) 100%)
}

.hero-container {
    height: 100%;
    position: relative;
    z-index: 2;
}


/* Hero content */

.hero-content {
    position: absolute;
    top: 90px;
    left: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(52px, 3vw, 76px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    color: var(--color-gold-light);
    font-size: 4.2vw !important;
}

.hero-content p {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    width: 700px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}


/* =========================================================
   BUTTONS (GLOBAL PERFECT ALIGNMENT & CENTERING FIX)
========================================================= */

.btn,
.btn-gold,
.btn-outline,
.btn-primary,
.btn-card-solid,
.btn-card-outline,
.btn-cta-gold,
.btn-enquire,
.book-btn,
a.btn,
button.btn,
input[type="submit"].btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    min-height: 44px;
    padding: 10px 24px !important;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2 !important;

    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box !important;
}

.btn-gold {
    background: var(--color-gold) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(181, 138, 59, 0.2);
}

.btn-gold:hover {
    background: var(--color-ocean-gradient) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-waterpark-glow) !important;
}

.btn-outline:hover {
    background: var(--color-waterpark-blue) !important;
    border-color: var(--color-waterpark-blue) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-waterpark-glow) !important;
}

.btn-waterpark {
    background: var(--color-ocean-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px var(--color-waterpark-glow);
    border: none !important;
}

.btn-waterpark:hover {
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.5);
}

.badge-waterpark-blue {
    background: var(--color-ocean-gradient);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px var(--color-waterpark-glow);
}

.text-waterpark-blue {
    color: var(--color-waterpark-blue) !important;
}

.bg-waterpark-light {
    background: #f0f9ff !important;
}

.waterpark-card-blue {
    border-top: 4px solid var(--color-waterpark-blue-light) !important;
    transition: all 0.3s ease;
}

.waterpark-card-blue:hover {
    border-color: var(--color-waterpark-blue) !important;
    box-shadow: 0 12px 30px var(--color-waterpark-glow) !important;
    transform: translateY(-5px);
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    position: absolute;
    top: 25px;
    right: 0;

    /* width: 95px; */
    min-height: 178px;
    padding: 20px 20px !important;
    border: 1px solid var(--color-gold);
    border-radius: 5px;

    background: rgba(0, 37, 24, 0.84);

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    padding: 12px 8px;

    color: #fff;
}

.badge-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-gold-light);
    font-size: 22px;
}

.hero-badge>small {
    font-size: 10px;
    line-height: 1.5;
}

.hero-badge>strong {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.5;
    font-weight: 500;
}

.badge-line {
    width: 35px;
    height: 1px;
    margin: 9px 0 7px;
    background: var(--color-gold);
}

.badge-location {
    color: var(--color-gold-light);
    font-size: 15px;
    margin-bottom: 3px;
}


/* =========================================================
   FLOATING CONTACT
========================================================= */

.floating-contact {
    position: absolute;
    right: 0;
    top: 336px;
    z-index: 5;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floating-contact a {
    min-width: 99px;
    height: 34px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 12px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 0;
    border-radius: 20px 0 0 20px;

    background: rgba(0, 55, 36, 0.88);

    color: #fff;
    font-size: 9px;

    transition: var(--transition);
}

.floating-contact a:hover {
    background: var(--color-gold);
}

.floating-contact i {
    font-size: 14px;
}


/* =========================================================
   BOOKING BAR
========================================================= */

.booking-wrapper {
    position: absolute;
    left: 10%;
    right: 0;
    bottom: -43px;
    z-index: 20;
    width: 80%;
}

.booking-bar {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 180px;
    background: rgba(1, 52, 33, 0.9);
    border: 1px solid rgba(181, 138, 59, 0.55);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.booking-field {
    padding: 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-field>span {
    color: rgba(255, 255, 255);
    font-size: 13px;
    margin-bottom: 3px;
    font-weight: 600;
}

.booking-field strong {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #fff;
    font-size: 10px;
    font-weight: 500;
}

.booking-field strong i {
    color: var(--color-gold-light);
}

.booking-field strong i:last-child {
    margin-left: auto;
}

.availability-btn {
    border: 0;
    margin: 11px;

    background: var(--color-gold);
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    transition: var(--transition);
}

.availability-btn:hover {
    background: var(--color-gold-dark);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: var(--section-padding) 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.section-heading p {
    margin-top: 12px;
    font-size: 16px;
    color: #555;
    padding: 0px 121px;
}

.heading-line {
    width: 65px;
    height: 8px;
    position: relative;
    margin: 9px auto 0;
}

.heading-line::before,
.heading-line::after {
    content: "";
    position: absolute;
    top: 4px;
    height: 1px;
    width: 27px;
    background: var(--color-gold);
}

.heading-line::before {
    left: 0;
}

.heading-line::after {
    right: 0;
}

.heading-line span {
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-gold);
    transform: rotate(45deg);
    display: block;
    margin: auto;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: #fff;
    padding-top: 65px;
    padding-bottom: 34px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.feature-item {
    min-height: 72px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid #dedbd3;
}

.feature-item:last-child {
    border-right: 0;
}

.feature-item i {
    color: var(--color-gold);
    font-size: 25px;
    margin-bottom: 7px;
}

.feature-item strong {
    color: #262626;
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}


/* =========================================================
   STAY
========================================================= */

.stay {
    background: #faf9f6;
    border-top: 1px solid #e1ded7;
}

.heading-with-button {
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
}

.heading-with-button .heading-line {
    margin-left: 0;
}

.outline-btn {
    border: 1px solid #aaa49a;
    padding: 7px 17px;

    color: #30332f;
    font-size: 9px;
    font-weight: 500;

    transition: var(--transition);
}

.outline-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.room-card {
    background: #fff;
    border: 1px solid #ddd9d0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.04);

    transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.room-card>img {
    height: 125px;
    object-fit: cover;
}

.room-content {
    padding: 11px 13px 13px;
}

.room-content h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.room-meta {
    font-size: 12px;
    margin-bottom: 5px;
}

.room-meta i {
    color: var(--color-gold);
}

.room-content p {
    font-size: 12px;
    color: #555;
    white-space: nowrap;
    margin-bottom: 8px;
}

.room-content p span {
    color: #aaa;
    margin: 0 3px;
}

.room-content small {
    display: block;
    font-size: 10px;
    color: #777;
}

.price {
    color: var(--color-gold-dark);
    font-size: 15px;
    font-weight: 700;
}

.price span {
    color: #2b2929;
    font-size: 10px;
    font-weight: 400;
}

.room-btn {
    display: inline-flex;
    margin-top: 7px;
    padding: 6px 15px;

    background: var(--color-primary);
    color: #fff;

    font-size: 8px;
    font-weight: 600;

    border-radius: 2px;

    transition: var(--transition);
}

.room-btn:hover {
    background: var(--color-gold);
}


/* =========================================================
   EXPERIENCES
========================================================= */

.section-dark {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 23px 0 26px;
}

.dark-heading {
    margin-bottom: 18px;
}

.dark-heading h2 {
    color: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
}

.experience-card {
    position: relative;
    height: 125px;

    overflow: hidden;
    border: 1px solid rgba(181, 138, 59, 0.6);
    border-radius: 4px;
}

.experience-card img {
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.08);
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 18, 11, 0.92),
            rgba(0, 18, 11, 0.05) 65%);
}

.experience-card>div {
    position: absolute;
    z-index: 2;

    left: 10px;
    right: 10px;
    bottom: 8px;

    text-align: center;
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.experience-card p {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   EVENTS
========================================================= */

.event-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.event-box {
    min-height: 145px;
    position: relative;

    background-size: cover;
    background-position: center;

    color: #fff;
}

.event-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.2));
}

.event-content {
    position: relative;
    z-index: 2;

    max-width: 440px;
    padding: 25px 58px;
}

.event-content h2 {
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.1;
}

.event-content p {
    margin: 7px 0 14px;

    max-width: 320px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   REVIEWS + OFFERS
========================================================= */

.reviews-offers {
    background: #fff;
    padding: 23px 0 35px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.7fr;
    gap: 40px;
}

.left-heading {
    text-align: left;
    margin-bottom: 15px;
}

.left-heading h2 {
    font-size: 20px;
}

.review-card {
    border: 1px solid #ddd9d0;
    border-radius: 5px;
    padding: 14px 18px;
    min-height: 105px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 9px;
}

.google-rating strong {
    color: #4285f4;
    font-size: 21px;
}

.google-rating span {
    color: #e4a82e;
    font-size: 12px;
    letter-spacing: 1px;
}

.review-card>p {
    margin: 5px 0 8px;

    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-primary);
    color: #fff;

    font-family: var(--font-heading);
    font-size: 13px;
}

.review-user strong {
    display: block;
    font-size: 12px;
}

.review-user small {
    display: block;
    color: #888;
    font-size: 11px;
}


/* Offers */

.offers .section-heading {
    margin-bottom: 15px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.offer-card {
    min-height: 82px;

    /* display: flex; */

    border: 1px solid #ddd9d0;
    border-radius: 5px;
    overflow: hidden;

    background: #fff;
}

.offer-card img {
    width: 100% !important;
    height: 82px;
    object-fit: cover;
    flex-shrink: 0;
}

.offer-card>div {
    padding: 8px 7px;
}

.offer-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.1;
}

.offer-card p {
    margin-top: 4px;

    font-size: 11px;
    color: #555;
}

.offer-card a {
    display: inline-flex;
    margin-top: 7px;
    padding: 4px 9px;

    background: var(--color-primary);
    color: #fff;

    font-size: 11px;
}

.offer-card a:hover {
    background: var(--color-gold);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1.25fr 1.15fr;
    gap: 45px;

    padding: 32px 0 27px;
}

.footer-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.footer-brand span {
    display: block;
    margin-top: 5px;

    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--color-gold-light);
}

.footer-about p {
    margin-top: 13px;

    max-width: 260px;

    font-size: 12px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.footer-social a {
    font-size: 14px;
}

.footer-social a:hover {
    color: var(--color-gold-light);
}


/* Footer columns */

.footer-grid h3 {
    margin-bottom: 12px;

    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
}

.footer-links h3 {
    grid-column: 1 / -1;
}

.footer-links a {
    margin-bottom: 5px;
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}


/* Contact */

.footer-contact p {
    display: flex;
    gap: 8px;

    margin-bottom: 7px;

    font-size: 11px;
    line-height: 1.45;
}

.footer-contact i {
    color: var(--color-gold-light);
    font-size: 11px;
    flex-shrink: 0;
}


/* Newsletter */

.footer-newsletter p {
    margin-bottom: 11px;
    font-size: 11px;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-newsletter input {
    width: 100%;
    height: 31px;

    padding: 0 10px;

    background: transparent;
    border: 1px solid rgba(181, 138, 59, 0.7);

    outline: none;

    color: #fff;
    font-size: 11px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter button {
    height: 29px;

    border: 0;

    background: var(--color-gold);
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--color-gold-dark);
}


/* Footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom .container {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 8px;
}

.footer-bottom div {
    display: flex;
    gap: 9px;
}

.footer-bottom a:hover {
    color: var(--color-gold-light);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 30px, 1000px);
    }

    .nav-menu {
        gap: 13px;
    }

    .nav-menu>a {
        font-size: 8px;
    }

    .room-grid {
        gap: 12px;
    }

    .feature-item strong {
        font-size: 10px;
    }

    .booking-bar {
        grid-template-columns:
            1fr 1fr 1fr 1fr 160px;
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 1100px) {

    .main-header {
        height: 62px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 20px;
        background: #ffffff;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 62px);
        overflow-y: auto;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-item {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu .nav-link,
    .nav-menu>a {
        height: 44px;
        font-size: 11px;
        border-bottom: 1px solid #f0f0f0;
        justify-content: space-between;
        width: 100%;
    }

    .nav-menu .nav-link::after,
    .nav-menu>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--color-gold);
        background: #fcfbfa;
        padding: 4px 0 4px 12px;
        margin: 4px 0 8px 0;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-item.has-dropdown.open .dropdown-menu,
    .nav-item.has-dropdown.active-mobile .dropdown-menu {
        display: block;
    }

    .nav-item.has-dropdown.open .dropdown-icon,
    .nav-item.has-dropdown.active-mobile .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-item {
        padding: 8px 12px;
        font-size: 10.5px;
    }

    .nav-menu .book-btn {
        margin: 14px 0 0;
        justify-content: center;
        text-align: center;
    }

    .utility-left {
        gap: 12px;
    }

    .utility-location {
        display: none;
    }

    .hero {
        height: 510px;
    }

    .booking-wrapper {
        bottom: -120px;
    }

    .booking-bar {
        grid-template-columns: 1fr 1fr;
    }

    .availability-btn {
        min-height: 45px;
        grid-column: 1 / -1;
    }

    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 15px;
    }

    .feature-item:nth-child(4) {
        border-right: 0;
    }

    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* Utility */

    .utility-bar {
        height: 34px;
    }

    .utility-inner {
        height: 34px;
        justify-content: center;
    }

    .utility-left a {
        font-size: 9px;
    }

    .utility-left a:nth-child(2) {
        display: none;
    }

    .utility-social {
        display: none;
    }


    /* Brand */

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name strong {
        font-size: 15px;
    }

    .brand-name span {
        font-size: 6px;
        letter-spacing: 3px;
    }


    /* Hero */

    .hero {
        height: 590px;
        min-height: 590px;
        background-position: 62% center;
    }

    .hero-content {
        left: 0;
        top: 45px;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .hero-content p {
        font-size: 11px;
    }

    .hero-badge {
        display: none;
    }

    .floating-contact {
        top: auto;
        bottom: 130px;
    }

    .floating-contact a {
        min-width: 90px;
        height: 30px;
        font-size: 8px;
    }


    /* Booking */

    .booking-wrapper {
        bottom: -180px;
    }

    .booking-bar {
        grid-template-columns: 1fr;
    }

    .booking-field {
        min-height: 53px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .availability-btn {
        grid-column: auto;
        margin: 10px;
    }


    /* Sections */

    .section {
        padding: 48px 0;
    }

    .why-section {
        padding-top: 200px;
    }

    .section-heading h2 {
        font-size: 22px;
    }


    /* Features */

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        border-right: 1px solid #dedbd3;
    }

    .feature-item:nth-child(even) {
        border-right: 0;
    }


    /* Rooms */

    .heading-with-button {
        align-items: center;
    }

    .outline-btn {
        padding: 6px 10px;
        font-size: 8px;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-card>img {
        height: 190px;
    }


    /* Experiences */

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-card {
        height: 145px;
    }


    /* Events */

    .event-split {
        grid-template-columns: 1fr;
    }

    .event-content {
        padding: 30px 25px;
    }


    /* Offers */

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-card img {
        width: 100%;
        height: 100px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom .container {
        min-height: 60px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 47px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-item i {
        font-size: 22px;
    }

    .feature-item strong {
        font-size: 10px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        height: 170px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

}

.room-card img {

    display: block;
    width: 100% !important;
    max-width: 100%;
}

.pakage-select {
    background: none;
    color: #fff;
}

.pakage-select option {
    background: none;
    color: #000;
}


/* =========================================================
   ABOUT US PAGE SPECIFIC STYLES
========================================================= */

.about-hero {
    position: relative;
    padding: 90px 0 70px;
    background-image: url("../images/banner/about-hero.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 20 13) 0%, rgb(0 20 13 / 79%) 30%, rgb(0 20 13 / 23%) 70%, rgba(0, 20, 13, 0.2) 100%)
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-tag {
    display: inline-block;
    color: #c59a4c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #ffffff;
}

.about-hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
}

.about-breadcrumb a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.about-breadcrumb a:hover {
    color: #c59a4c;
}

.about-breadcrumb span {
    color: #c59a4c;
}


/* Our Story Section */

.our-story-section {
    padding: 85px 0;
    background: #fbf9f5;
}

.story-grid {
    display: grid;
    grid-template-columns: 360px 1.1fr 1.2fr;
    gap: 35px;
    align-items: stretch;
}

@media (max-width: 1180px) {
    .story-grid {
        grid-template-columns: 300px 1fr 1.1fr;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-features-grid {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-features-grid {
        grid-column: span 1;
    }
}

.story-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    min-height: 380px;
    height: 100%;
}

.story-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.story-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text-col .sub-title {
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.story-text-col h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.15;
    color: #17231e;
    font-weight: 600;
    margin-bottom: 20px;
}

.story-text-col p {
    color: #555555;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.story-signature {
    margin-top: 22px;
}

.signature-svg {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: 30px;
    color: var(--color-gold);
    letter-spacing: 1px;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.signature-title {
    font-size: 11px;
    font-weight: 700;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Grid Cards */

.story-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-content: center;
}

@media (max-width: 500px) {
    .story-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: #ffffff;
    border: 1px solid #eee8dd;
    border-radius: 10px;
    padding: 22px 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 24px;
}

.feature-card strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #17231e;
    line-height: 1.3;
}


/* =========================================================
   STAY PAGE SPECIFIC STYLES
========================================================= */

.acc-section {
    padding: 50px 0 80px;
    background: #faf8f5;
}

.acc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .acc-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styling */

.acc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eae5db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sidebar-box-title {
    background: #03291d;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 18px;
}

.cat-list {
    list-style: none;
    padding: 6px 0;
}

.cat-list li a {
    display: block;
    padding: 11px 20px;
    color: #444444;
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 1px solid #f5f2eb;
    transition: all 0.2s ease;
}

.cat-list li:last-child a {
    border-bottom: none;
}

.cat-list li a:hover,
.cat-list li a.active {
    color: var(--color-gold-dark);
    background: rgba(181, 138, 59, 0.06);
    font-weight: 600;
    padding-left: 24px;
}

/* Help Box Widget */

.help-box {
    background: #ffffff;
    border: 1px solid #e5dec9;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.help-box h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.help-box p {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.help-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #17231e;
    margin-bottom: 18px;
    text-decoration: none;
}

.help-phone i {
    color: var(--color-gold);
}

.btn-enquire {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-gold);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 4px;
    transition: background 0.25s ease;
}

.btn-enquire:hover {
    background: var(--color-gold-dark);
    color: #ffffff;
}

/* Right Content Area */

.acc-main-content {
    display: flex;
    flex-direction: column;
}

.acc-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.acc-results-count {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}

.acc-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #666666;
}

.sort-select {
    padding: 7px 14px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    outline: none;
}

/* Room Cards Grid */

.room-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 1200px) {
    .room-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .room-cards-grid {
        grid-template-columns: 1fr;
    }
}

.room-grid-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eae5db;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.room-card-thumb {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.room-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.room-grid-card:hover .room-card-thumb img {
    transform: scale(1.05);
}

.room-card-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 10px;
}

.room-spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #666666;
}

.room-spec-tags span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.room-spec-tags i {
    color: var(--color-gold);
    font-size: 12px;
}

.room-card-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.room-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #17231e;
    margin-bottom: 16px;
}

.room-card-price span {
    font-size: 11px;
    font-weight: 400;
    color: #888888;
}

.room-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-card-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-card-outline:hover {
    background: var(--color-gold);
    color: #ffffff;
}

.btn-card-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #03291d;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease;
    text-align: center;
}

.btn-card-solid:hover {
    background: var(--color-primary-light);
    color: #ffffff;
}

/* Pagination */

.acc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.page-link-num {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #ddd;
    color: #333333;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-link-num.active {
    background: #03291d;
    border-color: #03291d;
    color: #ffffff;
}

.page-link-num:hover:not(.active) {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}


/* =========================================================
   WATER PARK PAGE SPECIFIC STYLES
========================================================= */

.waterpark-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.attractions-title {
    text-align: center;
    color: var(--color-gold-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}

@media (max-width: 1100px) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 440px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

.attraction-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee8dd;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold);
}

.attraction-thumb {
    height: 155px;
    overflow: hidden;
}

.attraction-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.attraction-card:hover .attraction-thumb img {
    transform: scale(1.06);
}

.attraction-content {
    padding: 16px 14px;
    text-align: left;
}

.attraction-content h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 4px;
}

.attraction-content p {
    font-size: 11.5px;
    color: #777777;
    line-height: 1.45;
}

/* Water Park Amenities Bar */

.waterpark-amenities-bar {
    background: #f6f3eb;
    border: 1px solid #eae3d3;
    border-radius: 10px;
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 900px) {
    .waterpark-amenities-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 580px) {
    .waterpark-amenities-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #e2dac7;
}

.amenity-item:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .amenity-item {
        border-right: none;
        border-bottom: 1px solid #e2dac7;
        padding-bottom: 15px;
    }
}

.amenity-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    font-size: 24px;
}

.amenity-item strong {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #17231e;
    line-height: 1.3;
}


/* =========================================================
   EXPERIENCES PAGE SPECIFIC STYLES
========================================================= */

.exp-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.exp-layout {
    display: grid;
    grid-template-columns: 230px 1.15fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 1100px) {
    .exp-layout {
        grid-template-columns: 200px 1fr;
    }

    .exp-photo-wrap {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .exp-layout {
        grid-template-columns: 1fr;
    }

    .exp-photo-wrap {
        grid-column: span 1;
    }
}

/* Sidebar List */

.exp-sidebar-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eae5db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.exp-cat-list {
    list-style: none;
    padding: 6px 0;
}

.exp-cat-list li a {
    display: block;
    padding: 12px 20px;
    color: #444444;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #f5f2eb;
    transition: all 0.2s ease;
}

.exp-cat-list li:last-child a {
    border-bottom: none;
}

.exp-cat-list li a:hover {
    color: var(--color-gold-dark);
    background: rgba(181, 138, 59, 0.06);
    padding-left: 24px;
}

.exp-cat-list li a.active {
    background: var(--color-gold) !important;
    color: #ffffff !important;
    padding-left: 20px;
}

/* Middle Details Column */

.exp-details-col {
    display: flex;
    flex-direction: column;
}

.exp-subtitle {
    color: var(--color-gold-dark);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.exp-details-col p {
    font-size: 13px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 22px;
}

.exp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.exp-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #222222;
}

.exp-checklist li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px dashed var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 13px;
    flex-shrink: 0;
}

/* Right Photo Column */

.exp-photo-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 320px;
}

.exp-photo-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.exp-photo-wrap:hover img {
    transform: scale(1.03);
}

/* Bottom CTA Bar */

.exp-cta-bar {
    background: #03291d;
    border-radius: 10px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 12px 30px rgba(3, 41, 29, 0.25);
}

.exp-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.exp-cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--color-gold);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-cta-gold:hover {
    background: var(--color-gold-dark);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   GALLERY PAGE SPECIFIC STYLES
========================================================= */

.gallery-section {
    padding: 60px 0 90px;
    background: #faf8f5;
}

.gallery-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    color: #444444;
    background: #ffffff;
    border: 1px solid #ebe5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.gallery-filter-btn.active {
    background: #03291d;
    border-color: #03291d;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 440px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 170px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    background: #e0e0e0;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 41, 29, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* =========================================================
   EVENTS & WEDDINGS PAGE SPECIFIC STYLES
========================================================= */

.events-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee8dd;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: var(--color-gold);
}

.event-card-img {
    height: 220px;
    overflow: hidden;
}

.event-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-img img {
    transform: scale(1.06);
}

.event-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card-tag {
    color: var(--color-gold-dark);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-card-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 10px;
}

.event-card-body p {
    font-size: 12.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* =========================================================
   OFFERS PAGE SPECIFIC STYLES
========================================================= */

.offers-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 850px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eae5db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 550px) {
    .offer-card {
        flex-direction: column;
    }
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d9534f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.offer-img {
    width: 45%;
    position: relative;
    overflow: hidden;
}

@media (max-width: 550px) {
    .offer-img {
        width: 100%;
        height: 200px;
    }
}

.offer-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.offer-body {
    width: 55%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 550px) {
    .offer-body {
        width: 100%;
    }
}

.offer-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 8px;
}

.offer-body p {
    font-size: 12px;
    color: #666666;
    line-height: 1.55;
    margin-bottom: 16px;
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.offer-price {
    font-size: 20px;
    font-weight: 700;
    color: #03291d;
}

.offer-old-price {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
}

/* =========================================================
   CONTACT PAGE SPECIFIC STYLES
========================================================= */

.contact-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 850px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #eee8dd;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(181, 138, 59, 0.1);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid #eee8dd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #444444;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333333;
    background: #fcfcfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(181, 138, 59, 0.15);
    background: #ffffff;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eae5db;
    height: 380px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   BOOK NOW PAGE SPECIFIC STYLES
========================================================= */

.booking-section {
    padding: 70px 0 90px;
    background: #faf8f5;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

.booking-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid #eee8dd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.booking-form-card h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee8dd;
    padding-bottom: 12px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444444;
    cursor: pointer;
}

.booking-summary-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #eee8dd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 90px;
}

.booking-summary-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 8px;
    display: inline-block;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555555;
    margin-bottom: 12px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: #03291d;
    border-top: 1px dashed #dddddd;
    padding-top: 14px;
    margin-top: 14px;
}


/* =========================================================
   HOME PAGE SPECIFIC STYLES
========================================================= */

/* Floating Contact Buttons on Right Screen Edge */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.floating-contact a:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.floating-contact a:nth-child(1) {
    background: #25D366;
    /* WhatsApp Green */
}

.floating-contact a:nth-child(2) {
    background: #03291d;
    /* Dark Green */
    border: 1px solid var(--color-gold);
}

/* Why Section */
.why-section {
    padding: 115px 0 50px;
    background: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    background: #ffffff;
    border: 1px solid #eee8dd;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 110px;
    overflow: visible;
    margin: 72px 0px;
}

@media (max-width: 1100px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        height: 220px;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        border-bottom: 1px solid #eee8dd;
    }

    .feature-item:nth-child(4n) {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        height: 440px;
    }

    .feature-item {
        border-bottom: 1px solid #eee8dd;
    }

    .feature-item:nth-child(7),
    .feature-item:nth-child(8) {
        border-bottom: none;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }
}

.feature-item {
    position: relative;
    height: 100%;
    border-right: 1px solid #eee8dd;
}

.feature-item:last-child {
    border-right: none;
}

.feature-inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 10px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-sizing: border-box;
}

.feature-item:hover .feature-inner {
    z-index: 25;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    border: 1px solid var(--color-gold);
    padding: 18px 12px;
    left: -6px;
    right: -6px;
}

.feature-item i {
    font-size: 26px;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item:hover i {
    transform: translateY(-2px) scale(1.1);
    color: var(--color-gold);
}

.feature-item strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0f1613;
    line-height: 1.3;
}

.feature-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    font-family: var(--font-body);
    font-size: 12px;
    color: #555555;
    line-height: 1.45;
    margin-top: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease 0.05s, margin-top 0.35s ease;
}

.feature-item:hover .feature-desc {
    max-height: 140px;
    opacity: 1;
    margin-top: 10px;
}

/* Stay Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1100px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .room-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee8dd;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-gold);
}

.room-card img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    display: block;
}

.room-content {
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #17231e;
    margin-bottom: 4px;
}

.room-meta {
    font-size: 11px;
    color: #777777;
    margin-bottom: 6px;
}

.room-content p {
    font-size: 11px;
    color: #888888;
    margin-bottom: 12px;
}

.room-content small {
    font-size: 10px;
    color: #999999;
}

.room-content .price {
    font-size: 18px;
    font-weight: 700;
    color: #03291d;
    margin-bottom: 12px;
}

.room-content .price span {
    font-size: 11px;
    font-weight: 400;
    color: #777777;
}

.room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #03291d;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: auto;
    transition: background 0.2s ease;
}

.room-btn:hover {
    background: var(--color-gold-dark);
    color: #ffffff !important;
}

/* Experiences Section */
.experiences {
    position: relative;
    background-image: linear-gradient(180deg, rgba(0, 24, 15, 0.92) 0%, rgba(0, 18, 12, 0.95) 100%), url("../images/home-banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 55px 0 70px;
    color: #ffffff;
}

.gold-divider {
    position: relative;
    width: 140px;
    height: 1px;
    background: var(--color-gold);
    margin: 8px auto 25px;
}

.gold-divider::after {
    content: "◆";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00180f;
    color: var(--color-gold);
    font-size: 8px;
    padding: 0 5px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.experience-card {
    background: #032d20;
    border: 1px solid rgba(181, 138, 59, 0.45);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 176px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.experience-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.experience-card img {
    width: 100% !important;
    height: 118px !important;
    min-height: 118px !important;
    object-fit: cover !important;
    display: block;
    border-radius: 0;
}

.experience-card div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.25;
}

.experience-card p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Event Split Banners */
.event-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    background: #000;
}

@media (max-width: 768px) {
    .event-split {
        grid-template-columns: 1fr;
    }
}

.event-box {
    position: relative;
    height: 290px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px 48px;
    color: #ffffff;
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.event-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
}

.event-content h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #c5a059;
    /* GOLD / BRONZE */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.event-content p {
    font-size: 13.5px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
}

.event-content .btn-gold {
    background: #b58a3b;
    color: #ffffff !important;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-flex;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.25s ease;
}

.event-content .btn-gold:hover {
    background: #966f28;
}

/* Heading With Button Utility */
.heading-with-button {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-bottom: 22px !important;
    text-align: left !important;
}

.heading-with-button h2 {
    margin-bottom: 0 !important;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-dark) !important;
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
    margin-left: auto;
}

.outline-btn:hover {
    background: var(--color-gold);
    color: #ffffff !important;
}

/* Reviews and Offers Section */
.reviews-offers {
    padding: 60px 0 80px;
    background: #faf8f5;
}

.reviews {
    border-right: 1px solid #e0d8c8;
    padding-right: 35px;
}

@media (max-width: 900px) {
    .reviews {
        border-right: none;
        padding-right: 0;
    }
}

.review-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #eee8dd;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.review-slide-content {
    transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.32s ease;
    will-change: transform, opacity;
}

.review-slide-content.slide-out-left {
    transform: translateX(-40px);
    opacity: 0;
}

.review-slide-content.slide-out-right {
    transform: translateX(40px);
    opacity: 0;
}

.review-slide-content.slide-in-left {
    transform: translateX(-40px);
    opacity: 0;
}

.review-slide-content.slide-in-right {
    transform: translateX(40px);
    opacity: 0;
}

.review-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-rating strong {
    color: #4285F4;
    font-size: 18px;
    font-weight: 700;
}

.google-rating span {
    color: #f4c430;
    letter-spacing: 2px;
    font-size: 14px;
}

.review-arrows {
    display: flex;
    gap: 8px;
    color: #888888;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

.review-arrows span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.review-arrows span:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    background: rgba(181, 138, 59, 0.08);
}

.review-quote-text {
    font-size: 12.5px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;

}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.offer-grid .offer-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eae3d5;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 98px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.offer-grid .offer-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
}

.offer-grid .offer-card img {
    width: 32% !important;
    min-width: 32% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.offer-grid .offer-card div {
    width: 68%;
    padding: 8px 6px 8px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.offer-grid .offer-card h4 {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: #17231e;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: normal;
    word-break: break-word;
}

.offer-grid .offer-card p {
    font-size: 10px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 6px;
}

.offer-grid .offer-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: #03291d;
    color: #ffffff !important;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 3px;
    width: fit-content;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.offer-grid .offer-card a:hover {
    background: var(--color-gold-dark);
}


/* =========================================================
   MOBILE RESPONSIVE FIXES
========================================================= */

@media (max-width: 991px) {
    .hero {
        height: auto !important;
        min-height: 520px !important;
        padding-bottom: 35px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    .hero-container {
        height: auto !important;
        padding-top: 20px !important;
    }

    .hero-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-bottom: 20px !important;
    }

    .hero-content h1 {
        font-size: clamp(34px, 7.5vw, 52px) !important;
        line-height: 1.1 !important;
    }

    .hero-badge {
        display: none !important;
    }

    .booking-wrapper {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 480px !important;
        margin: 25px auto 0 !important;
        padding: 0 15px !important;
        z-index: 10 !important;
    }

    .booking-bar {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        background: rgba(1, 52, 33, 0.96) !important;
        border: 1px solid rgba(181, 138, 59, 0.6) !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    }

    .booking-field {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        padding: 12px 18px !important;
    }

    .booking-field:last-of-type {
        border-bottom: 0 !important;
    }

    .availability-btn {
        margin: 12px 16px 16px !important;
        padding: 12px 0 !important;
        font-size: 11px !important;
        border-radius: 6px !important;
        height: auto !important;
    }

    .why-section {
        padding-top: 40px !important;
    }

    .floating-contact {
        bottom: 15px !important;
        right: 15px !important;
    }

    .floating-contact a {
        padding: 8px 14px !important;
        font-size: 10.5px !important;
    }
}






/* ========================================= TIGER PARADISE ABOUT SECTION ========================================= */
.tp-about-section {
    padding: 90px 0;
    background: #f8f6f0;
    overflow: hidden;
}

/* HEADER */
.tp-about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.tp-about-eyebrow {
    display: block;
    color: #b78937;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.tp-about-header h2 {
    margin: 0;
    color: #07382e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.05;
}

.tp-about-header h2 span {
    color: #b78937;
}

/* ========================================= MAIN ABOUT ========================================= */
.tp-about-main {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    max-width: 1180px;
    margin: auto;
}

/* IMAGE */
.tp-about-image {
    position: relative;
    min-height: 570px;
}

.tp-about-image img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    display: block;
}

/* IMAGE OVERLAY */
.tp-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 35, 28, .55), transparent 45%);
}

/* IMAGE CAPTION */
.tp-about-image-caption {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(3, 55, 45, .94);
    color: #fff;
}

.tp-about-image-caption>.iconify {
    color: #c49a4c;
    font-size: 32px;
}

.tp-about-image-caption strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
}

.tp-about-image-caption small {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
}

/* CONTENT */
.tp-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 55px;
    background: #fff;
    border-top: 4px solid #b78937;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 2;
    margin-left: -45px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.tp-about-content p {
    color: #626862;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 17px;
}

.tp-about-content p:last-child {
    margin-bottom: 0;
}

.tp-about-content strong {
    color: #07382e;
}

/* ========================================= GETAWAY SECTION ========================================= */
.tp-getaway-section {
    max-width: 1050px;
    margin: 110px auto 70px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.tp-getaway-title span {
    color: #b78937;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.tp-getaway-title h3 {
    margin: 12px 0 0;
    color: #07382e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.15;
}

.tp-getaway-content {
    padding-left: 35px;
    border-left: 2px solid #b78937;
}

.tp-getaway-content p {
    color: #626862;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* ========================================= LOCATION + EXPERIENCE ========================================= */
.tp-info-grids {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 25px;
    max-width: 1180px;
    margin: auto;
}

.tp-info-card {
    padding: 40px;
    background: #fff;
    display: flex;
    gap: 22px;
    border: 1px solid rgba(7, 56, 46, .08);
    transition: all .3s ease;
}

.tp-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.tp-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eee0;
    border-radius: 50%;
}

.tp-info-icon .iconify {
    color: #b78937;
    font-size: 25px;
}

.tp-info-label {
    color: #b78937;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-info-card h3 {
    color: #07382e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    margin: 8px 0 15px;
}

.tp-info-card p {
    color: #666d67;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

/* ========================================= EXPERIENCE PROMISE ========================================= */
.tp-promise-list {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.tp-promise-list div {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #626862;
    font-size: 12px;
    line-height: 1.5;
}

.tp-promise-list .iconify {
    flex-shrink: 0;
    color: #b78937;
    font-size: 16px;
}

/* ========================================= TABLET ========================================= */
@media (max-width: 991px) {
    .tp-about-section {
        padding: 70px 0;
    }

    .tp-about-main {
        grid-template-columns: 1fr;
    }

    .tp-about-image {
        min-height: 480px;
    }

    .tp-about-image img {
        min-height: 480px;
    }

    .tp-about-content {
        margin: -50px 35px 0;
    }

    .tp-getaway-section {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 80px;
    }

    .tp-getaway-content {
        padding-left: 25px;
    }

    .tp-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= MOBILE ========================================= */
@media (max-width: 575px) {
    .tp-about-section {
        padding: 55px 0;
    }

    .tp-about-header {
        margin-bottom: 35px;
    }

    .tp-about-header h2 {
        font-size: 38px;
    }

    .tp-about-image {
        min-height: 380px;
    }

    .tp-about-image img {
        min-height: 380px;
    }

    .tp-about-image-caption {
        left: 15px;
        bottom: 15px;
        padding: 12px 15px;
    }

    .tp-about-content {
        margin: -35px 15px 0;
        padding: 30px 25px;
    }

    .tp-about-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .tp-getaway-section {
        margin: 65px 15px 50px;
        gap: 20px;
    }

    .tp-getaway-title h3 {
        font-size: 32px;
    }

    .tp-getaway-content {
        padding-left: 18px;
    }

    .tp-getaway-content p {
        font-size: 13px;
    }

    .tp-info-grid {
        margin: 0 15px;
    }

    .tp-info-card {
        padding: 25px 20px;
        gap: 15px;
    }

    .tp-info-card h3 {
        font-size: 25px;
    }

    .tp-promise-list {
        grid-template-columns: 1fr;
    }
}

/* Adventure css */

/* =========================================
   TIGER PARADISE - ADVENTURE SECTION
========================================= */

.tp-adventure-section {
    position: relative;
    padding: 90px 0 80px;
    background: #f8f6f1;
    overflow: hidden;
}

/* Subtle background decoration */
.tp-adventure-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(185, 139, 55, 0.06);
    pointer-events: none;
}

.tp-adventure-section .container {
    position: relative;
    z-index: 1;
}


/* =========================================
   MAIN ADVENTURE WRAPPER
========================================= */

.tp-adventure-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
    margin-bottom: 55px;
}


/* =========================================
   IMAGE
========================================= */

.tp-adventure-image {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.tp-adventure-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tp-adventure-image:hover img {
    transform: scale(1.05);
}


/* Image dark overlay */
.tp-adventure-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.02) 45%,
            rgba(0, 35, 26, 0.65) 100%);
    pointer-events: none;
}


/* =========================================
   IMAGE LABEL
========================================= */

.tp-adventure-image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;

    background: rgba(0, 42, 31, 0.88);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tp-adventure-image-label i {
    color: #c59a45;
    font-size: 18px;
}


/* =========================================
   CONTENT
========================================= */

.tp-adventure-content {
    padding-right: 20px;
}

.tp-adventure-eyebrow {
    position: relative;
    display: inline-block;

    margin-bottom: 15px;
    padding-left: 42px;

    color: #a8792f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tp-adventure-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #b88a3b;
    transform: translateY(-50%);
}


.tp-adventure-content h2 {
    margin: 0 0 24px;

    color: #06392d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
}

.tp-adventure-content h2 span {
    display: block;
    color: #b78635;
    font-style: italic;
}


.tp-adventure-content p {
    max-width: 600px;
    margin: 0 0 16px;

    color: #5f625d;
    font-size: 15px;
    line-height: 1.8;
}

.tp-adventure-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   ACTIVITY HIGHLIGHTS
========================================= */

.tp-adventure-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid #ddd8ca;
    background: #fff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}


.tp-adventure-item {
    min-height: 115px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px 20px;

    border-right: 1px solid #e4dfd4;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.tp-adventure-item:last-child {
    border-right: 0;
}


.tp-adventure-item:hover {
    background: #f7f3e9;
    transform: translateY(-3px);
}


/* =========================================
   ACTIVITY ICON
========================================= */

.tp-adventure-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #06392d;
    color: #c49a4a;

    font-size: 21px;

    transition: all 0.3s ease;
}

.tp-adventure-item:hover .tp-adventure-icon {
    background: #b78635;
    color: #fff;
    transform: rotate(5deg);
}


/* =========================================
   HIGHLIGHT TEXT
========================================= */

.tp-adventure-item strong {
    display: block;
    margin-bottom: 5px;

    color: #06392d;
    font-size: 14px;
    font-weight: 700;
}

.tp-adventure-item span {
    display: block;

    color: #77766f;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .tp-adventure-section {
        padding: 70px 0 60px;
    }

    .tp-adventure-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-adventure-image {
        height: 430px;
    }

    .tp-adventure-content {
        padding-right: 0;
    }

    .tp-adventure-content h2 {
        font-size: 45px;
    }

    .tp-adventure-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-adventure-item:nth-child(2) {
        border-right: 0;
    }

    .tp-adventure-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e4dfd4;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .tp-adventure-section {
        padding: 55px 0 50px;
    }

    .tp-adventure-wrapper {
        gap: 32px;
        margin-bottom: 35px;
    }

    .tp-adventure-image {
        height: 330px;
        border-radius: 5px;
    }

    .tp-adventure-image-label {
        left: 15px;
        bottom: 15px;
        padding: 9px 13px;
        font-size: 11px;
    }

    .tp-adventure-image-label i {
        font-size: 16px;
    }

    .tp-adventure-eyebrow {
        margin-bottom: 12px;
        padding-left: 34px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .tp-adventure-eyebrow::before {
        width: 25px;
    }

    .tp-adventure-content h2 {
        margin-bottom: 18px;
        font-size: 36px;
        line-height: 1.12;
    }

    .tp-adventure-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 13px;
    }

    .tp-adventure-highlights {
        grid-template-columns: 1fr;
    }

    .tp-adventure-item,
    .tp-adventure-item:nth-child(2) {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid #e4dfd4;
    }

    .tp-adventure-item:last-child {
        border-bottom: 0;
    }

    .tp-adventure-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .tp-adventure-section {
        padding: 45px 0;
    }

    .tp-adventure-image {
        height: 280px;
    }

    .tp-adventure-content h2 {
        font-size: 32px;
    }

    .tp-adventure-item {
        padding: 17px 15px;
    }

    .tp-adventure-item strong {
        font-size: 13px;
    }

    .tp-adventure-item span {
        font-size: 11px;
    }
}



/* ========================================= TIGER PARADISE WATER PARK SECTION ========================================= */
.tp-waterpark-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.tp-waterpark-wrapper {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

/* ========================================= CONTENT ========================================= */
.tp-waterpark-content {
    padding-right: 20px;
}

.tp-waterpark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #b78937;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
}

.tp-waterpark-content h2 {
    margin: 0 0 25px;
    color: #07382e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
}

.tp-waterpark-content h2 span {
    display: block;
    color: #b78937;
    font-style: italic;
}

.tp-waterpark-content p {
    color: #666d67;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 17px;
}

/* ========================================= HIGHLIGHTS ========================================= */
.tp-waterpark-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.tp-water-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    background: #f7f5ef;
    border-left: 3px solid #b78937;
    color: #07382e;
    font-size: 13px;
    font-weight: 600;
}

.tp-water-highlight i {
    color: #b78937;
    font-size: 23px;
}

/* ========================================= IMAGE ========================================= */
.tp-waterpark-image {
    position: relative;
    min-height: 570px;
}

.tp-waterpark-image::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    right: -25px;
    bottom: -25px;
    border: 1px solid #b78937;
    z-index: 0;
}

.tp-waterpark-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 570px;
    object-fit: cover;
    display: block;
}

/* ========================================= IMAGE FLOATING CARD ========================================= */
.tp-waterpark-image-card {
    position: absolute;
    z-index: 3;
    left: -35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 22px;
    background: #07382e;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.tp-waterpark-image-card i {
    color: #c49a4c;
    font-size: 31px;
}

.tp-waterpark-image-card strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
}

.tp-waterpark-image-card span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .65);
    font-size: 10px;
}

/* ========================================= TABLET ========================================= */
@media (max-width: 991px) {
    .tp-waterpark-section {
        padding: 75px 0;
    }

    .tp-waterpark-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-waterpark-content {
        padding-right: 0;
    }

    .tp-waterpark-image {
        min-height: 500px;
    }

    .tp-waterpark-image img {
        height: 500px;
    }

    .tp-waterpark-image-card {
        left: 20px;
    }
}

/* ========================================= MOBILE ========================================= */
@media (max-width: 575px) {
    .tp-waterpark-section {
        padding: 55px 0;
    }

    .tp-waterpark-wrapper {
        gap: 35px;
    }

    .tp-waterpark-content h2 {
        font-size: 37px;
    }

    .tp-waterpark-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .tp-waterpark-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tp-waterpark-image {
        min-height: 380px;
    }

    .tp-waterpark-image img {
        height: 380px;
    }

    .tp-waterpark-image-card {
        left: 12px;
        bottom: 20px;
        padding: 13px 16px;
    }

    .tp-waterpark-image-card i {
        font-size: 26px;
    }

    .tp-waterpark-image-card strong {
        font-size: 16px;
    }
}

/* =========================================================
   WATER PARK INTENSE BLUE THEMED STYLES
========================================================= */

.tp-waterpark-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tp-waterpark-eyebrow {
    color: var(--color-waterpark-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tp-waterpark-eyebrow::before {
    background: var(--color-waterpark-blue-light);
}

.tp-waterpark-content h2 span {
    color: var(--color-waterpark-blue);
}

.tp-water-highlight {
    background: #ffffff;
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.06);
    transition: all 0.3s ease;
}

.tp-water-highlight:hover {
    border-color: var(--color-waterpark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-waterpark-glow);
}

.tp-water-highlight i {
    color: var(--color-waterpark-blue);
    font-size: 22px;
}

.attraction-card {
    border: 1px solid #e0f2fe;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    border-color: var(--color-waterpark-blue-light);
    box-shadow: 0 12px 30px var(--color-waterpark-glow);
    transform: translateY(-6px);
}

/* =========================================================
   GLOBAL WATER PARK BLUE HOVER SYSTEM
========================================================= */

a:hover {
    color: #fff;
}

.room-card,
.contact-info-card,
.booking-form-card,
.booking-summary-card,
.gallery-item,
.story-image-wrap {
    transition: all 0.3s ease;
}

.room-card:hover,
.contact-info-card:hover,
.booking-form-card:hover,
.booking-summary-card:hover,
.gallery-item:hover {
    border-color: var(--color-waterpark-blue-light) !important;
    box-shadow: 0 12px 35px var(--color-waterpark-glow) !important;
    transform: translateY(-4px);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-ocean-gradient) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px var(--color-waterpark-glow) !important;
}

.footer-links a:hover,
.utility-social a:hover,
.footer-contact p i:hover {
    color: var(--color-waterpark-blue-light) !important;
}

.contact-icon:hover {
    background: var(--color-waterpark-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px var(--color-waterpark-glow) !important;
}

/* HIDE PRICE FIGURES SITE-WIDE */
.price,
.room-price,
.price-tag,
.offer-price,
small:has(+ .price) {
    display: none !important;
}

/* HIDE MOBILE DRAWER HEADER ON DESKTOP */
.drawer-top-header {
    display: none !important;
}

/* =========================================================
   MOBILE MENU DRAWER FIX (<= 1100px)
========================================================= */

@media (max-width: 1100px) {
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 42px;
        height: 42px;
        background: rgba(7, 61, 41, 0.08);
        border-radius: 8px;
        color: var(--color-primary) !important;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: var(--color-gold);
        color: #ffffff !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 88vw !important;
        height: 100% !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        background: #03291d !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
        padding: 24px 22px 50px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 99995 !important;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }

    .nav-menu.show {
        transform: translateX(0) !important;
    }

    .drawer-top-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding-bottom: 12px !important;
        margin-bottom: 8px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    .drawer-brand {
        display: flex;
        flex-direction: column;
    }

    .drawer-brand strong {
        font-family: var(--font-heading);
        font-size: 16px;
        color: var(--color-gold-light);
        letter-spacing: 0.5px;
        line-height: 1.1;
    }

    .drawer-brand span {
        font-family: var(--font-body);
        font-size: 7px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 2px;
        margin-top: 3px;
    }

    .drawer-close-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px !important;
        height: 34px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
        color: #ffffff !important;
        font-size: 22px !important;
        cursor: pointer !important;
        line-height: 1 !important;
        margin: 0 !important;
        transition: all 0.2s ease !important;
    }

    .drawer-close-btn:hover {
        background: var(--color-gold) !important;
        color: #ffffff !important;
    }

    .nav-menu a,
    .nav-menu .dropdown-toggle {
        width: 100% !important;
        height: auto !important;
        padding: 9px 0 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 12.5px !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        justify-content: space-between !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active,
    .nav-menu .dropdown-toggle:hover,
    .nav-menu .dropdown-toggle.active {
        color: var(--color-gold-light) !important;
    }

    .nav-item.has-dropdown {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 100% !important;
        background: rgba(0, 0, 0, 0.25) !important;
        border-top: none !important;
        border-radius: 6px !important;
        padding: 5px 12px !important;
        box-shadow: none !important;
        display: none !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .nav-item.has-dropdown.open .dropdown-menu {
        display: flex !important;
    }

    .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .dropdown-menu .dropdown-item:hover {
        color: var(--color-gold-light) !important;
        background: transparent !important;
    }

    .nav-menu .book-btn {
        width: 100% !important;
        margin-top: 15px !important;
        margin-left: 0 !important;
        padding: 12px 0 !important;
        text-align: center !important;
    }
}

/* BACKDROP OVERLAY */
.nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.tp-games-heading {
    background: #f8f7f2;
    padding: 20px 0 35px;
}

.tp-games-heading-inner {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.tp-games-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    color: #12382d;
    margin: 0 0 15px;
}

.tp-games-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-game-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.tp-game-tab {
    border: 1px solid #d2c39e;
    background: transparent;
    color: #183a2f;
    padding: 13px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tp-game-tab:hover,
.tp-game-tab.active {
    background: #183a2f;
    border-color: #183a2f;
    color: #fff;
}

.tp-games-list {
    background: #f8f7f2;
    padding: 25px 0 100px;
}

.tp-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tp-game-card {
    background: #fff;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(18, 56, 45, 0.08);
    transition: 0.4s ease;
}

.tp-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(18, 56, 45, 0.14);
}

.tp-game-card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.tp-game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.tp-game-card:hover .tp-game-card-image img {
    transform: scale(1.07);
}

.tp-game-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #c79535;
    color: #fff;
    padding: 7px 13px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
}

.tp-game-card-content {
    padding: 27px;
}

.tp-game-icon {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.tp-game-icon .tp-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #edf2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.tp-game-icon h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    color: #183a2f;
    line-height: 1.2;
}

.tp-game-card p {
    color: #68726d;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.tp-game-link {
    text-decoration: none;
    color: #b7892f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tp-game-link span {
    display: inline-block;
    margin-left: 7px;
    font-size: 17px;
    transition: 0.3s ease;
}

.tp-game-card:hover .tp-game-link span {
    transform: translateX(7px);
}


.tp-games-info {
    background: #183a2f;
    padding: 50px 0;
}

.tp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.tp-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.tp-info-item:last-child {
    border-right: none;
}

.tp-info-icon {
    font-size: 28px;
}

.tp-info-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 7px;
}

.tp-info-item p {
    color: #cbd5d0;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .tp-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-intro-content {
        max-width: 100%;
    }

    .tp-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tp-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding: 20px;
    }

    .tp-info-item:last-child {
        border-bottom: none;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .tp-games-hero {
        min-height: 480px;
    }

    .tp-games-hero h1 {
        font-size: 46px;
    }

    .tp-games-hero p {
        font-size: 14px;
    }

    .tp-games-intro {
        padding: 65px 0;
    }

    .tp-intro-image {
        height: 330px;
    }

    .tp-intro-content h2 {
        font-size: 37px;
    }

    .tp-games-heading {
        padding-top: 10px;
    }

    .tp-games-heading h2 {
        font-size: 38px;
    }

    .tp-games-grid {
        grid-template-columns: 1fr;
    }

    .tp-game-card-image {
        height: 240px;
    }

    .tp-cta-box {
        min-height: 450px;
        padding: 40px 25px;
    }

    .tp-cta-content h2 {
        font-size: 35px;
    }

    .tp-game-tabs {
        gap: 8px;
    }

    .tp-game-tab {
        padding: 11px 20px;
    }

}

.tp-train-intro {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-train-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-train-intro-image {
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.tp-train-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.tp-train-intro-image:hover img {
    transform: scale(1.05);
}

.tp-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;

    background: #fff;
    color: #183a2f;

    padding: 10px 16px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.tp-train-intro-content {
    max-width: 570px;
}

.tp-section-label {
    color: #bd8b2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-train-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #12382d;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 25px;
}

.tp-train-intro-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 16px;
}

.tp-sea-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 15px;
    padding: 14px 24px;

    border: 1px solid #4caab7;

    color: #183a2f;
    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.tp-sea-btn span {
    color: #4caab7;
    font-size: 17px;
    transition: 0.3s ease;
}

.tp-sea-btn:hover {
    background: #4caab7;
    border-color: #4caab7;
    color: #fff;
}

.tp-sea-btn:hover span {
    color: #fff;
    transform: translateX(5px);
}

.tp-train-experience {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-experience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.tp-experience-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.15;
    color: #12382d;
    margin: 0 0 25px;
}

.tp-experience-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.tp-experience-points {
    margin-top: 25px;
}

.tp-experience-point {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 13px;

    color: #3e4944;
    font-size: 14px;
}

.tp-experience-point span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf2ee;
    color: #3e9eaa;

    font-weight: 700;
}

.tp-experience-image {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.tp-experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.tp-experience-image:hover img {
    transform: scale(1.05);
}

.tp-experience-overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;

    padding: 10px 18px;

    background: rgba(24, 58, 47, 0.90);

    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 991px) {

    .tp-train-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-train-intro-content {
        max-width: 100%;
    }

    .tp-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-experience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-experience-content {
        order: 1;
    }

    .tp-experience-image {
        order: 2;
    }

    .tp-train-info-grid {
        grid-template-columns: 1fr;
    }

    .tp-train-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding: 20px;
    }

    .tp-train-info-item:last-child {
        border-bottom: none;
    }

}


@media (max-width: 600px) {

    .tp-train-hero {
        min-height: 470px;
    }

    .tp-train-hero h1 {
        font-size: 46px;
    }

    .tp-train-hero p {
        font-size: 14px;
    }

    .tp-train-intro {
        padding: 65px 0;
    }

    .tp-train-intro-image {
        height: 330px;
    }

    .tp-train-intro-content h2 {
        font-size: 37px;
    }

    .tp-highlight-grid {
        grid-template-columns: 1fr;
    }

    .tp-highlight-heading h2 {
        font-size: 36px;
    }

    .tp-experience-content h2 {
        font-size: 37px;
    }

    .tp-experience-image {
        height: 350px;
    }

    .tp-train-cta-box {
        min-height: 450px;
        padding: 40px 25px;
    }

    .tp-train-cta-content h2 {
        font-size: 35px;
    }

}

/* =========================================
   RESPONSIVE - HIGHLIGHTS SECTION
========================================= */

/* Tablet */
@media (max-width: 991px) {

    .room-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .room-card {
        padding: 22px !important;
    }

    .room-card h3 {
        font-size: 21px !important;
    }

    .room-card p {
        font-size: 13px !important;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .room-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .room-card {
        padding: 22px !important;
        border-radius: 8px !important;
    }

    .room-card i {
        font-size: 30px !important;
    }

    .room-card h3 {
        font-size: 21px !important;
        margin: 10px 0 7px !important;
        line-height: 1.3 !important;
    }

    .room-card p {
        font-size: 13px !important;
        line-height: 1.7 !important;
        margin-bottom: 0 !important;
    }

    .section-heading h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .section-heading p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        display: contents;
    }

}
/* Tablet */
@media (max-width: 992px) {
    .tp-info-grids {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
        padding: 0 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tp-info-grids {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .tp-info-grids {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .room-grid {
        gap: 15px !important;
    }

    .room-card {
        padding: 20px !important;
    }

    .room-card i {
        font-size: 28px !important;
    }

    .room-card h3 {
        font-size: 20px !important;
    }

    .room-card p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .section-heading h2 {
        font-size: 28px !important;
    }

}

.tp-safari-intro {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-safari-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-safari-intro-image {
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tp-safari-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tp-safari-intro-image:hover img {
    transform: scale(1.05);
}

.tp-safari-image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;

    padding: 10px 17px;

    background: rgba(24, 58, 47, 0.92);
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-safari-intro-content {
    max-width: 570px;
}

.tp-section-label {
    color: #bd8b2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-safari-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #12382d;

    font-size: 47px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 25px;
}

.tp-safari-intro-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;

    margin: 0 0 16px;
}

.tp-safari-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 15px;
    padding: 14px 24px;

    border: 1px solid #4caab7;

    color: #183a2f;
    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.tp-safari-outline-btn span {
    color: #4caab7;
    font-size: 17px;
    transition: 0.3s ease;
}

.tp-safari-outline-btn:hover {
    background: #4caab7;
    border-color: #4caab7;
    color: #fff;
}

.tp-safari-outline-btn:hover span {
    color: #fff;
    transform: translateX(5px);
}

.tp-wildlife-section {
    padding: 100px 0;
    background: #eef3f0;
}

.tp-wildlife-heading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 55px;
}

.tp-wildlife-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;

    color: #12382d;

    margin: 0 0 18px;
}

.tp-wildlife-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-wildlife-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tp-wildlife-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;

    box-shadow: 0 7px 25px rgba(18, 56, 45, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.tp-wildlife-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(18, 56, 45, 0.14);
}

.tp-wildlife-image {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.tp-wildlife-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.tp-wildlife-card:hover .tp-wildlife-image img {
    transform: scale(1.07);
}

.tp-wildlife-image span {
    position: absolute;
    top: 18px;
    left: 18px;

    background: #c79535;
    color: #fff;

    padding: 7px 12px;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tp-wildlife-content {
    padding: 27px;
}

.tp-wildlife-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf2ee;

    font-size: 21px;

    margin-bottom: 16px;

    transition: all 0.3s ease;
}

.tp-wildlife-card:hover .tp-wildlife-icon {
    background: #4caab7;
    transform: translateY(-3px);
}

.tp-wildlife-content h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;
    font-weight: 400;

    color: #183a2f;

    margin: 0 0 12px;

    transition: 0.3s ease;
}

.tp-wildlife-card:hover h3 {
    color: #3f9eaa;
}

.tp-wildlife-content p {
    color: #68726d;

    font-size: 14px;
    line-height: 1.75;

    margin: 0;
}

.tp-safari-info {
    padding: 90px 0;
    background: #eef3f0;
}

.tp-safari-info-heading {
    text-align: center;
    max-width: 700px;

    margin: 0 auto 50px;
}

.tp-safari-info-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;

    color: #12382d;

    margin: 0;
}

.tp-safari-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tp-safari-info-card {
    background: #fff;

    padding: 30px 24px;

    border-radius: 6px;

    border-bottom: 3px solid transparent;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.tp-safari-info-card:hover {
    transform: translateY(-7px);

    border-color: #4caab7;

    box-shadow:
        0 15px 35px rgba(18, 56, 45, 0.10);
}

.tp-safari-info-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf2ee;

    border-radius: 50%;

    font-size: 22px;

    margin-bottom: 18px;

    transition: 0.3s ease;
}

.tp-safari-info-card:hover .tp-safari-info-icon {
    background: #4caab7;
}

.tp-safari-info-card h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 400;

    color: #183a2f;

    margin: 0 0 10px;

    transition: 0.3s ease;
}

.tp-safari-info-card:hover h3 {
    color: #3f9eaa;
}

.tp-safari-info-card p {
    color: #68726d;

    font-size: 13px;
    line-height: 1.7;

    margin: 0;
}

/* ==========================================
   JUNGLE SAFARI RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .tp-safari-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-safari-intro-content {
        max-width: 100%;
    }

    .tp-wildlife-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-safari-journey-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-safari-journey-content {
        order: 1;
    }

    .tp-safari-journey-image {
        order: 2;
    }

    .tp-safari-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .tp-safari-intro {
        padding: 65px 0;
    }

    .tp-safari-intro-image {
        height: 330px;
    }

    .tp-safari-intro-content h2 {
        font-size: 37px;
    }


    .tp-wildlife-section {
        padding: 70px 0;
    }

    .tp-wildlife-heading h2 {
        font-size: 36px;
    }

    .tp-wildlife-grid {
        grid-template-columns: 1fr;
    }

    .tp-wildlife-image {
        height: 240px;
    }


    .tp-safari-journey {
        padding: 70px 0;
    }

    .tp-safari-journey-content h2 {
        font-size: 37px;
    }

    .tp-safari-journey-image {
        height: 350px;
    }


    .tp-safari-info {
        padding: 70px 0;
    }

    .tp-safari-info-heading h2 {
        font-size: 36px;
    }

    .tp-safari-info-grid {
        grid-template-columns: 1fr;
    }


    .tp-safari-cta-box {
        min-height: 450px;
        padding: 40px 25px;
    }

    .tp-safari-cta-content h2 {
        font-size: 35px;
    }

}

.tp-events-intro {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-events-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tp-events-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-events-intro-image {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tp-events-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tp-events-intro-image:hover img {
    transform: scale(1.05);
}

.tp-events-image-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;

    background: rgba(18, 56, 45, .93);
    color: #fff;

    padding: 10px 16px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-events-label {
    color: #bd8b2c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-events-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #12382d;
    margin: 0 0 25px;
}

.tp-events-intro-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 15px;
}

.tp-events-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 15px;
    padding: 14px 23px;

    border: 1px solid #4caab7;

    color: #183a2f;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all .3s ease;
}

.tp-events-btn span {
    color: #4caab7;
    font-size: 17px;
    transition: .3s ease;
}

.tp-events-btn:hover {
    background: #4caab7;
    color: #fff;
}

.tp-events-btn:hover span {
    color: #fff;
    transform: translateX(5px);
}

.tp-wedding-services {
    padding: 95px 0;
    background: #edf3f0;
}

.tp-wedding-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.tp-wedding-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0 0 15px;
}

.tp-wedding-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-wedding-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tp-wedding-service-card {
    padding: 30px 24px;
    background: #fff;
    border-radius: 6px;

    border-bottom: 3px solid transparent;

    transition: all .35s ease;
}

.tp-wedding-service-card:hover {
    transform: translateY(-7px);
    border-bottom-color: #4caab7;
    box-shadow: 0 15px 35px rgba(18, 56, 45, .10);
}

.tp-wedding-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf2ee;
    border-radius: 50%;

    font-size: 21px;
    margin-bottom: 18px;

    transition: all .3s ease;
}

.tp-wedding-service-card:hover .tp-wedding-icon {
    background: #4caab7;
}

.tp-wedding-service-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    color: #183a2f;
    margin: 0 0 11px;
}

.tp-wedding-service-card p {
    color: #68726d;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.tp-celebrations {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-celebrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-celebrations-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.18;
    color: #12382d;
    margin: 0 0 25px;
}

.tp-celebrations-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 15px;
}

.tp-celebration-features {
    margin: 25px 0 5px;
}

.tp-celebration-features div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #414b46;
    font-size: 14px;

    margin-bottom: 12px;
}

.tp-celebration-features span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf2ee;
    border-radius: 50%;

    color: #3e9eaa;
    font-weight: 700;
}

.tp-celebrations-image {
    height: 510px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tp-celebrations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tp-celebrations-image:hover img {
    transform: scale(1.05);
}

.tp-celebrations-card {
    position: absolute;
    bottom: 25px;
    left: 25px;

    padding: 16px 20px;

    display: flex;
    flex-direction: column;

    background: rgba(18, 56, 45, .93);
    color: #fff;
}

.tp-celebrations-card strong {
    font-size: 10px;
    letter-spacing: 2px;
    color: #d09a32;
}

.tp-celebrations-card span {
    margin-top: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.tp-prewedding {
    padding: 100px 0;
    background: #edf3f0;
}

.tp-prewedding-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.tp-prewedding-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0 0 18px;
}

.tp-prewedding-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-prewedding-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.tp-prewedding-card {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.tp-prewedding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.tp-prewedding-card:hover img {
    transform: scale(1.08);
}

.tp-prewedding-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(5, 35, 27, .85),
            rgba(5, 35, 27, 0) 60%);
}

.tp-prewedding-overlay {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

.tp-prewedding-overlay span {
    color: #d19a32;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-prewedding-overlay h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    margin: 7px 0 0;
}

.tp-prewedding-button {
    text-align: center;
    margin-top: 35px;
}

.tp-event-benefits {
    padding: 90px 0;
    background: #f8f7f2;
}

.tp-event-benefits-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tp-event-benefits-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0;
}

.tp-event-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tp-event-benefit {
    text-align: center;
    padding: 25px 20px;
}

.tp-event-benefit-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf2ee;

    font-size: 22px;

    transition: all .3s ease;
}

.tp-event-benefit:hover .tp-event-benefit-icon {
    background: #4caab7;
    transform: translateY(-4px);
}

.tp-event-benefit h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    color: #183a2f;
    margin: 0 0 10px;
}

.tp-event-benefit p {
    color: #68726d;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.tp-event-cta {
    padding: 0 0 100px;
    background: #f8f7f2;
}

.tp-event-cta-box {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px;

    background:
        linear-gradient(90deg,
            rgba(4, 40, 31, .96),
            rgba(4, 40, 31, .58)),
        url("YOUR-WEDDING-CTA-IMAGE.jpg") center / cover no-repeat;
}

.tp-event-cta-content {
    max-width: 700px;
}

.tp-event-cta-content .tp-events-label {
    color: #d19a32;
}

.tp-event-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 20px;
}

.tp-event-cta-content p {
    color: #e2e9e5;
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 0 27px;
}

.tp-event-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 25px;

    background: #4caab7;
    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all .3s ease;
}

.tp-event-cta-btn span {
    font-size: 17px;
}

.tp-event-cta-btn:hover {
    background: #fff;
    color: #183a2f;
}

/* ==========================================
   EVENTS & WEDDINGS RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .tp-events-intro-grid,
    .tp-celebrations-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-wedding-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-event-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-prewedding-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-prewedding-large {
        grid-column: span 2;
    }

}


@media (max-width: 767px) {

    .tp-events-intro,
    .tp-celebrations,
    .tp-wedding-services,
    .tp-prewedding {
        padding: 65px 0;
    }

    .tp-events-container {
        padding: 0 18px;
    }


    /* INTRO */

    .tp-events-intro-grid,
    .tp-celebrations-grid {
        gap: 35px;
    }

    .tp-events-intro-image {
        height: 340px;
    }

    .tp-events-intro-content h2,
    .tp-celebrations-content h2 {
        font-size: 36px;
    }


    /* SERVICES */

    .tp-wedding-heading h2 {
        font-size: 36px;
    }

    .tp-wedding-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* CELEBRATIONS */

    .tp-celebrations-image {
        height: 350px;
    }


    /* PRE-WEDDING */

    .tp-prewedding-heading h2 {
        font-size: 36px;
    }

    .tp-prewedding-grid {
        grid-template-columns: 1fr;
    }

    .tp-prewedding-large {
        grid-column: auto;
    }

    .tp-prewedding-card {
        height: 350px;
    }


    /* BENEFITS */

    .tp-event-benefits {
        padding: 65px 0;
    }

    .tp-event-benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tp-event-benefits-heading h2 {
        font-size: 35px;
    }


    /* CTA */

    .tp-event-cta {
        padding-bottom: 65px;
    }

    .tp-event-cta-box {
        min-height: 470px;
        padding: 40px 25px;
    }

    .tp-event-cta-content h2 {
        font-size: 36px;
    }

}


@media (max-width: 480px) {

    .tp-events-intro-content h2,
    .tp-celebrations-content h2,
    .tp-wedding-heading h2,
    .tp-prewedding-heading h2,
    .tp-event-benefits-heading h2,
    .tp-event-cta-content h2 {
        font-size: 32px;
    }

    .tp-events-intro-image,
    .tp-celebrations-image {
        height: 300px;
    }

    .tp-prewedding-card {
        height: 300px;
    }

    .tp-wedding-service-card {
        padding: 24px 20px;
    }

    .tp-event-cta-box {
        padding: 35px 20px;
    }

}

/* ==========================================
   CORPORATE INTRO
========================================== */

.tp-corporate-intro {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-corporate-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tp-corporate-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-corporate-intro-image {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tp-corporate-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tp-corporate-intro-image:hover img {
    transform: scale(1.05);
}

.tp-corporate-image-label {
    position: absolute;
    left: 20px;
    bottom: 20px;

    padding: 10px 16px;

    background: rgba(18, 56, 45, .94);
    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-corporate-label {
    color: #bd8b2c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-corporate-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #12382d;
    margin: 0 0 25px;
}

.tp-corporate-intro-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 15px;
}

.tp-corporate-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 15px;
    padding: 14px 23px;

    border: 1px solid #4caab7;

    color: #183a2f;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all .3s ease;
}

.tp-corporate-btn span {
    color: #4caab7;
    font-size: 17px;
    transition: .3s ease;
}

.tp-corporate-btn:hover {
    background: #4caab7;
    color: #fff;
}

.tp-corporate-btn:hover span {
    color: #fff;
    transform: translateX(5px);
}

/* ==========================================
   CORPORATE SERVICES
========================================== */

.tp-corporate-services {
    padding: 95px 0;
    background: #edf3f0;
}

.tp-corporate-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.tp-corporate-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0 0 15px;
}

.tp-corporate-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tp-corporate-service-card {
    padding: 30px 24px;

    background: #fff;
    border-radius: 6px;

    border-bottom: 3px solid transparent;

    transition: all .35s ease;
}

.tp-corporate-service-card:hover {
    transform: translateY(-7px);
    border-bottom-color: #4caab7;
    box-shadow: 0 15px 35px rgba(18, 56, 45, .10);
}

.tp-corporate-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf2ee;
    border-radius: 50%;

    font-size: 21px;
    margin-bottom: 18px;

    transition: all .3s ease;
}

.tp-corporate-service-card:hover .tp-corporate-icon {
    background: #4caab7;
}

.tp-corporate-service-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    color: #183a2f;
    margin: 0 0 11px;
}

.tp-corporate-service-card p {
    color: #68726d;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CORPORATE SEMINARS
========================================== */

.tp-seminar-section {
    padding: 100px 0;
    background: #f8f7f2;
}

.tp-seminar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tp-seminar-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.18;
    color: #12382d;
    margin: 0 0 25px;
}

.tp-seminar-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.85;
    margin: 0 0 15px;
}

.tp-seminar-features {
    margin: 25px 0 5px;
}

.tp-seminar-features div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #414b46;
    font-size: 14px;

    margin-bottom: 12px;
}

.tp-seminar-features span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf2ee;
    border-radius: 50%;

    color: #3e9eaa;
    font-weight: 700;
}

.tp-seminar-image {
    height: 510px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tp-seminar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tp-seminar-image:hover img {
    transform: scale(1.05);
}

.tp-seminar-image-card {
    position: absolute;
    left: 25px;
    bottom: 25px;

    padding: 16px 20px;

    display: flex;
    flex-direction: column;

    background: rgba(18, 56, 45, .94);
    color: #fff;
}

.tp-seminar-image-card strong {
    color: #d09a32;
    font-size: 10px;
    letter-spacing: 2px;
}

.tp-seminar-image-card span {
    margin-top: 4px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

/* ==========================================
   TEAM BUILDING
========================================== */

.tp-team-section {
    padding: 95px 0;
    background: #edf3f0;
}

.tp-team-heading {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 55px;
}

.tp-team-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0 0 17px;
}

.tp-team-heading p {
    color: #68736d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tp-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tp-team-card {
    position: relative;

    padding: 35px 30px;

    background: #fff;
    border-radius: 6px;

    border-top: 2px solid transparent;

    transition: all .35s ease;
}

.tp-team-card:hover {
    transform: translateY(-6px);
    border-top-color: #4caab7;
    box-shadow: 0 15px 35px rgba(18, 56, 45, .09);
}

.tp-team-number {
    color: #4caab7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.tp-team-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    color: #183a2f;
    margin: 0 0 12px;
}

.tp-team-card p {
    color: #68726d;
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

/* ==========================================
   CORPORATE BENEFITS
========================================== */

.tp-corporate-benefits {
    padding: 90px 0;
    background: #f8f7f2;
}

.tp-corporate-benefits-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.tp-corporate-benefits-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: #12382d;
    margin: 0;
}

.tp-corporate-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tp-corporate-benefit {
    text-align: center;
    padding: 25px 20px;
}

.tp-benefit-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #edf2ee;

    font-size: 22px;

    transition: all .3s ease;
}

.tp-corporate-benefit:hover .tp-benefit-icon {
    background: #4caab7;
    transform: translateY(-4px);
}

.tp-corporate-benefit h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    color: #183a2f;
    margin: 0 0 10px;
}

.tp-corporate-benefit p {
    color: #68726d;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CORPORATE CTA
========================================== */

.tp-corporate-cta {
    padding: 0 0 100px;
    background: #f8f7f2;
}

.tp-corporate-cta-box {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px;

    background:
        linear-gradient(90deg,
            rgba(4, 40, 31, .96),
            rgba(4, 40, 31, .58)),
        url("YOUR-CORPORATE-CTA-IMAGE.jpg") center / cover no-repeat;
}

.tp-corporate-cta-content {
    max-width: 700px;
}

.tp-corporate-cta-content .tp-corporate-label {
    color: #d19a32;
}

.tp-corporate-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 20px;
}

.tp-corporate-cta-content p {
    color: #e2e9e5;
    font-size: 15px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 0 27px;
}

.tp-corporate-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 25px;

    background: #4caab7;
    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all .3s ease;
}

.tp-corporate-cta-btn span {
    font-size: 17px;
}

.tp-corporate-cta-btn:hover {
    background: #fff;
    color: #183a2f;
}

/* ==========================================
   CORPORATE PAGE RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .tp-corporate-intro-grid,
    .tp-seminar-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-corporate-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-corporate-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .tp-corporate-intro,
    .tp-corporate-services,
    .tp-seminar-section,
    .tp-team-section {
        padding: 65px 0;
    }

    .tp-corporate-container {
        padding: 0 18px;
    }


    /* INTRO */

    .tp-corporate-intro-image {
        height: 340px;
    }

    .tp-corporate-intro-content h2 {
        font-size: 36px;
    }


    /* SERVICES */

    .tp-corporate-heading h2 {
        font-size: 36px;
    }

    .tp-corporate-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* SEMINAR */

    .tp-seminar-content h2 {
        font-size: 36px;
    }

    .tp-seminar-image {
        height: 350px;
    }


    /* TEAM */

    .tp-team-heading h2 {
        font-size: 36px;
    }

    .tp-team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* BENEFITS */

    .tp-corporate-benefits {
        padding: 65px 0;
    }

    .tp-corporate-benefits-heading h2 {
        font-size: 35px;
    }

    .tp-corporate-benefits-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .tp-corporate-cta {
        padding-bottom: 65px;
    }

    .tp-corporate-cta-box {
        min-height: 470px;
        padding: 40px 25px;
    }

    .tp-corporate-cta-content h2 {
        font-size: 36px;
    }

}


@media (max-width: 480px) {

    .tp-corporate-intro-content h2,
    .tp-corporate-heading h2,
    .tp-seminar-content h2,
    .tp-team-heading h2,
    .tp-corporate-benefits-heading h2,
    .tp-corporate-cta-content h2 {
        font-size: 32px;
    }

    .tp-corporate-intro-image,
    .tp-seminar-image {
        height: 300px;
    }

    .tp-corporate-service-card {
        padding: 24px 20px;
    }

    .tp-corporate-cta-box {
        padding: 35px 20px;
    }

}

/* ==========================================
   TEAM OUTING INTRO
========================================== */

.tp-outing-intro {
    padding: 110px 0;
    background: #f8f7f2;
}

.tp-outing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tp-outing-intro-wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 75px;
    align-items: center;
}

.tp-outing-intro-image {
    height: 570px;
    position: relative;
}

.tp-outing-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform .6s ease;
}

.tp-outing-intro-image:hover img {
    transform: scale(1.035);
}


/* FLOATING CARD */

.tp-outing-floating-card {
    position: absolute;
    right: -35px;
    bottom: 35px;

    min-width: 245px;
    padding: 20px 23px;

    background: #12382d;
    color: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.tp-outing-floating-card span {
    display: block;

    color: #d19a32;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 7px;
}

.tp-outing-floating-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}


/* CONTENT */

.tp-outing-label {
    color: #bd8b2c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-outing-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.13;

    color: #12382d;

    margin: 0 0 25px;
}

.tp-outing-intro-content p {
    color: #626d67;
    font-size: 15px;
    line-height: 1.9;

    margin: 0 0 15px;
}


/* MINI POINTS */

.tp-outing-mini-points {
    display: flex;
    gap: 28px;

    margin: 28px 0;
    padding: 20px 0;

    border-top: 1px solid #e2ded4;
    border-bottom: 1px solid #e2ded4;
}

.tp-outing-mini-points div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #32463e;
    font-size: 12px;
    font-weight: 600;
}

.tp-outing-mini-points span {
    color: #4caab7;
    font-size: 10px;
    font-weight: 700;
}


/* BUTTON */

.tp-outing-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 14px 23px;

    border: 1px solid #4caab7;

    color: #183a2f;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all .3s ease;
}

.tp-outing-btn span {
    color: #4caab7;
    font-size: 17px;

    transition: transform .3s ease;
}

.tp-outing-btn:hover {
    background: #4caab7;
    color: #fff;
}

.tp-outing-btn:hover span {
    color: #fff;
    transform: translateX(5px);
}

/* ==========================================
   EXPERIENCE STRIP
========================================== */

.tp-outing-strip {
    padding: 90px 0;
    background: #12382d;
    color: #fff;
}

.tp-outing-strip-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 55px;
}

.tp-outing-strip-heading span {
    color: #d19a32;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.tp-outing-strip-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 42px;
    font-weight: 400;

    margin: 12px 0 0;
}

.tp-outing-strip-heading p {
    max-width: 390px;

    color: #d7e1dc;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* EXPERIENCE ROW */

.tp-outing-experience-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.tp-outing-experience {
    padding: 30px 25px;

    display: flex;
    gap: 17px;

    border-right: 1px solid rgba(255, 255, 255, .15);

    transition: all .3s ease;
}

.tp-outing-experience:first-child {
    padding-left: 0;
}

.tp-outing-experience:last-child {
    border-right: 0;
}

.tp-outing-experience:hover {
    background: rgba(76, 170, 183, .13);
}

.tp-outing-experience-number {
    color: #4caab7;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tp-outing-experience h3 {
    font-family: Georgia, "Times New Roman", serif;

    color: #fff;

    font-size: 21px;
    font-weight: 400;

    margin: 0 0 8px;
}

.tp-outing-experience p {
    color: #bfcfc8;

    font-size: 12px;
    line-height: 1.65;

    margin: 0;
}

/* ==========================================
   DAY PASS
========================================== */

.tp-daypass-section {
    padding: 105px 0;
    background: #f8f7f2;
}

.tp-daypass-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.tp-daypass-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 47px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 17px;
}

.tp-daypass-heading p {
    color: #68736d;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* GRID */

.tp-daypass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tp-daypass-card {
    background: #fff;

    border: 1px solid #e8e3d9;

    transition: all .4s ease;
}

.tp-daypass-card:hover {
    transform: translateY(-8px);

    border-color: #4caab7;

    box-shadow: 0 18px 40px rgba(18, 56, 45, .10);
}


/* IMAGE */

.tp-daypass-image {
    height: 270px;
    position: relative;
    overflow: hidden;
}

.tp-daypass-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tp-daypass-card:hover .tp-daypass-image img {
    transform: scale(1.06);
}

.tp-daypass-image span {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 11px;

    background: #12382d;
    color: #fff;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* CONTENT */

.tp-daypass-content {
    padding: 27px 25px 30px;
}

.tp-daypass-content h3 {
    font-family: Georgia, "Times New Roman", serif;

    color: #183a2f;

    font-size: 25px;
    font-weight: 400;

    margin: 0 0 11px;
}

.tp-daypass-content p {
    color: #68726d;

    font-size: 13px;
    line-height: 1.75;

    margin: 0 0 20px;
}

.tp-daypass-content a {
    color: #bd8b2c;

    text-decoration: none;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: color .3s ease;
}

.tp-daypass-content a span {
    color: #4caab7;

    margin-left: 7px;

    transition: margin .3s ease;
}

.tp-daypass-content a:hover {
    color: #4caab7;
}

.tp-daypass-content a:hover span {
    margin-left: 12px;
}

/* ==========================================
   TEAM CHALLENGE
========================================== */

.tp-team-challenge {
    display: grid;
    grid-template-columns: 1.15fr .85fr;

    min-height: 570px;

    background: #12382d;
}

.tp-team-challenge-image {
    overflow: hidden;
}

.tp-team-challenge-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.tp-team-challenge:hover .tp-team-challenge-image img {
    transform: scale(1.04);
}

.tp-team-challenge-content {
    padding: 75px 70px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp-team-challenge-content .tp-outing-label {
    color: #d19a32;
}

.tp-team-challenge-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #fff;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.12;

    margin: 0 0 22px;
}

.tp-team-challenge-content p {
    color: #d1ddd8;

    font-size: 14px;
    line-height: 1.85;

    margin: 0 0 25px;
}

.tp-challenge-list {
    border-top: 1px solid rgba(255, 255, 255, .18);

    margin-bottom: 25px;
}

.tp-challenge-list div {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .18);

    color: #fff;

    font-size: 12px;
}

.tp-challenge-list span {
    color: #4caab7;

    font-size: 10px;
    font-weight: 700;
}

.tp-dark-btn {
    width: fit-content;

    border-color: #4caab7;
    color: #fff;
}

.tp-dark-btn:hover {
    background: #4caab7;
    color: #fff;
}

/* ==========================================
   FOOD SECTION
========================================== */

.tp-outing-food {
    padding: 105px 0;

    background: #edf3f0;
}

.tp-outing-food-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.tp-outing-food-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 20px;
}

.tp-outing-food-content p {
    color: #65716b;

    font-size: 14px;
    line-height: 1.85;

    margin: 0 0 25px;
}

.tp-food-points {
    border-top: 1px solid #d5ddd8;
}

.tp-food-points div {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 14px 0;

    border-bottom: 1px solid #d5ddd8;

    color: #31443d;

    font-size: 13px;
}

.tp-food-points strong {
    color: #4caab7;

    font-size: 10px;
    letter-spacing: 1px;
}

.tp-outing-food-image {
    height: 480px;

    position: relative;

    overflow: hidden;
}

.tp-outing-food-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tp-outing-food-image:hover img {
    transform: scale(1.05);
}

.tp-food-stamp {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 115px;
    height: 115px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #4caab7;
    color: #fff;

    transform: rotate(-8deg);
}

.tp-food-stamp span {
    font-size: 8px;
    letter-spacing: 2px;
}

.tp-food-stamp strong {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    line-height: 1;
    font-weight: 400;

    margin-top: 5px;
}

/* ==========================================
   FINAL CTA
========================================== */

.tp-outing-cta {
    padding: 0 0 100px;

    background: #f8f7f2;
}

.tp-outing-cta-inner {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px;

    background:
        linear-gradient(90deg,
            rgba(6, 43, 34, .97),
            rgba(6, 43, 34, .60)),
        url("YOUR-TEAM-CTA-IMAGE.jpg") center / cover no-repeat;
}

.tp-outing-cta-content {
    max-width: 650px;
}

.tp-outing-cta-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #fff;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 18px;
}

.tp-outing-cta-content p {
    color: #d9e3de;

    font-size: 14px;
    line-height: 1.8;

    margin: 0 0 27px;
}

.tp-outing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 25px;

    background: #4caab7;

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all .3s ease;
}

.tp-outing-cta-btn span {
    font-size: 17px;
}

.tp-outing-cta-btn:hover {
    background: #fff;
    color: #183a2f;
}

/* ==========================================
   TEAM OUTING RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .tp-outing-intro-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .tp-outing-intro-image {
        height: 480px;
    }

    .tp-outing-floating-card {
        right: -15px;
    }

    .tp-outing-experience-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-outing-experience:nth-child(2) {
        border-right: 0;
    }

    .tp-outing-experience:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .tp-daypass-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-daypass-card:last-child {
        grid-column: span 2;
    }

    .tp-team-challenge {
        grid-template-columns: 1fr;
    }

    .tp-team-challenge-image {
        height: 450px;
    }

    .tp-outing-food-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 767px) {

    .tp-outing-intro,
    .tp-daypass-section,
    .tp-outing-food {
        padding: 70px 0;
    }

    .tp-outing-container {
        padding: 0 18px;
    }


    /* INTRO */

    .tp-outing-intro-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tp-outing-intro-image {
        height: 380px;
    }

    .tp-outing-floating-card {
        right: 15px;
        bottom: 15px;
        min-width: 215px;
    }

    .tp-outing-intro-content h2 {
        font-size: 38px;
    }

    .tp-outing-mini-points {
        gap: 15px;
        flex-wrap: wrap;
    }


    /* STRIP */

    .tp-outing-strip {
        padding: 70px 0;
    }

    .tp-outing-strip-heading {
        display: block;
        margin-bottom: 40px;
    }

    .tp-outing-strip-heading h2 {
        font-size: 36px;
    }

    .tp-outing-strip-heading p {
        margin-top: 18px;
    }

    .tp-outing-experience-row {
        grid-template-columns: 1fr;
    }

    .tp-outing-experience,
    .tp-outing-experience:first-child {
        padding: 22px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .tp-outing-experience:last-child {
        border-bottom: 0;
    }


    /* DAY PASS */

    .tp-daypass-heading h2 {
        font-size: 37px;
    }

    .tp-daypass-grid {
        grid-template-columns: 1fr;
    }

    .tp-daypass-card:last-child {
        grid-column: auto;
    }

    .tp-daypass-image {
        height: 250px;
    }


    /* TEAM CHALLENGE */

    .tp-team-challenge-image {
        height: 330px;
    }

    .tp-team-challenge-content {
        padding: 60px 25px;
    }

    .tp-team-challenge-content h2 {
        font-size: 38px;
    }


    /* FOOD */

    .tp-outing-food-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tp-outing-food-content h2 {
        font-size: 37px;
    }

    .tp-outing-food-image {
        height: 350px;
    }


    /* CTA */

    .tp-outing-cta {
        padding-bottom: 70px;
    }

    .tp-outing-cta-inner {
        min-height: 450px;
        padding: 40px 25px;
    }

    .tp-outing-cta-content h2 {
        font-size: 38px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .tp-outing-intro-content h2,
    .tp-outing-strip-heading h2,
    .tp-daypass-heading h2,
    .tp-team-challenge-content h2,
    .tp-outing-food-content h2,
    .tp-outing-cta-content h2 {
        font-size: 32px;
    }

    .tp-outing-intro-image {
        height: 300px;
    }

    .tp-outing-floating-card {
        min-width: 190px;
        padding: 15px;
    }

    .tp-outing-floating-card strong {
        font-size: 16px;
    }

    .tp-outing-mini-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .tp-team-challenge-image {
        height: 280px;
    }

    .tp-team-challenge-content {
        padding: 50px 20px;
    }

    .tp-outing-food-image {
        height: 300px;
    }

    .tp-outing-cta-inner {
        padding: 35px 20px;
    }

}

/* ==========================================
   SCHOOL INTRO
========================================== */

.tp-school-intro {
    padding: 110px 0;
    background: #f8f7f2;
}

.tp-school-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.tp-school-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}


/* CONTENT */

.tp-school-label {
    color: #bd8b2c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tp-school-intro-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 51px;
    font-weight: 400;
    line-height: 1.1;

    margin: 0 0 25px;
}

.tp-school-intro-content p {
    color: #626d67;

    font-size: 14px;
    line-height: 1.9;

    margin: 0 0 14px;
}


/* STATS */

.tp-school-stats {
    display: flex;
    gap: 35px;

    margin-top: 32px;
    padding-top: 22px;

    border-top: 1px solid #ddd9d0;
}

.tp-school-stats div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-school-stats strong {
    color: #4caab7;

    font-size: 11px;
}

.tp-school-stats span {
    color: #31443d;

    font-size: 12px;
    font-weight: 600;
}


/* VISUAL */

.tp-school-intro-visual {
    height: 560px;
    position: relative;
}

.tp-school-main-image {
    width: 78%;
    height: 470px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 8px 8px 70px 8px;
}

.tp-school-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tp-school-main-image:hover img {
    transform: scale(1.05);
}


/* ROUND IMAGE */

.tp-school-round-image {
    position: absolute;

    left: 0;
    bottom: 5px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    overflow: hidden;

    border: 8px solid #f8f7f2;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.tp-school-round-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* BLOB */

.tp-school-blob {
    position: absolute;

    right: 5px;
    top: 15px;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #4caab7;
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
    line-height: 1.15;

    transform: rotate(8deg);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

/* ==========================================
   PICNIC JOURNEY
========================================== */

.tp-picnic-journey {
    padding: 100px 0;

    background: #edf3f0;
}

.tp-journey-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.tp-journey-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 47px;
    font-weight: 400;

    margin: 0 0 15px;
}

.tp-journey-heading p {
    color: #65716b;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* JOURNEY LINE */

.tp-journey-line {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.tp-journey-line:before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 25px;

    height: 1px;

    background: #bdd0c9;
}


/* ITEM */

.tp-journey-item {
    position: relative;
    z-index: 2;
}

.tp-journey-dot {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #12382d;
    color: #fff;

    border: 5px solid #edf3f0;

    font-size: 10px;
    font-weight: 700;

    margin-bottom: 22px;

    transition: all .3s ease;
}

.tp-journey-item:hover .tp-journey-dot {
    background: #4caab7;

    transform: scale(1.1);
}


/* CARD */

.tp-journey-card {
    padding: 25px 20px;

    background: #fff;

    min-height: 190px;

    border-radius: 6px;

    border-bottom: 3px solid transparent;

    transition: all .35s ease;
}

.tp-journey-card:hover {
    transform: translateY(-6px);

    border-bottom-color: #4caab7;

    box-shadow: 0 15px 30px rgba(18, 56, 45, .08);
}

.tp-journey-number {
    color: #bd8b2c;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 10px;
}

.tp-journey-card h3 {
    font-family: Georgia, "Times New Roman", serif;

    color: #183a2f;

    font-size: 21px;
    font-weight: 400;

    margin: 0 0 10px;
}

.tp-journey-card p {
    color: #69736e;

    font-size: 12px;
    line-height: 1.7;

    margin: 0;
}

/* ==========================================
   LEARN OUTSIDE
========================================== */

.tp-learn-outside {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    min-height: 570px;

    background: #12382d;
}

.tp-learn-image {
    overflow: hidden;
}

.tp-learn-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.tp-learn-outside:hover .tp-learn-image img {
    transform: scale(1.04);
}

.tp-learn-content {
    padding: 80px 75px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp-learn-content .tp-school-label {
    color: #d19a32;
}

.tp-learn-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #fff;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.13;

    margin: 0 0 22px;
}

.tp-learn-content>p {
    color: #d4e0db;

    font-size: 14px;
    line-height: 1.85;

    max-width: 520px;

    margin: 0 0 28px;
}

.tp-learn-list {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.tp-learn-list div {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .18);

    color: #fff;

    font-size: 12px;
}

.tp-learn-list span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4caab7;

    color: #fff;

    font-size: 15px;
}

/* ==========================================
   PLAY ZONE
========================================== */

.tp-play-zone {
    padding: 100px 0;

    background: #f8f7f2;
}

.tp-play-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.tp-play-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 46px;
    font-weight: 400;

    margin: 0;
}

.tp-play-heading>p {
    max-width: 400px;

    color: #68736d;

    font-size: 14px;
    line-height: 1.8;

    margin: 0;
}


/* GRID */

.tp-play-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* CARD */

.tp-play-card {
    background: #fff;

    border: 1px solid #e6e2d9;

    transition: all .4s ease;
}

.tp-play-card:hover {
    transform: translateY(-8px);

    border-color: #4caab7;

    box-shadow: 0 18px 40px rgba(18, 56, 45, .10);
}


/* IMAGE */

.tp-play-image {
    height: 260px;

    overflow: hidden;
}

.tp-play-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tp-play-card:hover .tp-play-image img {
    transform: scale(1.07);
}


/* CONTENT */

.tp-play-content {
    padding: 25px;
}

.tp-play-content>span {
    color: #4caab7;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.tp-play-content h3 {
    font-family: Georgia, "Times New Roman", serif;

    color: #183a2f;

    font-size: 24px;
    font-weight: 400;

    margin: 10px 0;
}

.tp-play-content p {
    color: #69736e;

    font-size: 12px;
    line-height: 1.7;

    margin: 0;
}

/* ==========================================
   SCHOOL FOOD
========================================== */

.tp-school-food {
    padding: 100px 0;

    background: #edf3f0;
}

.tp-school-food-box {
    min-height: 390px;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    position: relative;

    overflow: hidden;

    background: #fff;
}


/* CONTENT */

.tp-school-food-content {
    padding: 60px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tp-school-food-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    color: #12382d;

    font-size: 43px;
    font-weight: 400;

    line-height: 1.12;

    margin: 0 0 18px;
}

.tp-school-food-content p {
    color: #68736d;

    font-size: 13px;
    line-height: 1.8;

    max-width: 480px;

    margin: 0 0 20px;
}


/* TAGS */

.tp-food-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.tp-food-tags span {
    padding: 7px 10px;

    background: #edf2ee;

    color: #355047;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* IMAGE */

.tp-school-food-image {
    overflow: hidden;
}

.tp-school-food-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.tp-school-food-box:hover .tp-school-food-image img {
    transform: scale(1.05);
}


/* YUM CIRCLE */

.tp-food-circle {
    position: absolute;

    right: calc(50% - 35px);
    top: 50%;

    transform: translateY(-50%);

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4caab7;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    z-index: 3;

    border: 5px solid #fff;
}

/* ==========================================
   SCHOOL PICNIC RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .tp-school-intro-grid {
        gap: 45px;
    }

    .tp-school-intro-content h2 {
        font-size: 42px;
    }

    .tp-school-intro-visual {
        height: 480px;
    }

    .tp-school-main-image {
        height: 400px;
    }

    .tp-school-round-image {
        width: 145px;
        height: 145px;
    }


    /* JOURNEY */

    .tp-journey-line {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .tp-journey-line:before {
        display: none;
    }


    /* PLAY */

    .tp-play-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-play-card:last-child {
        grid-column: span 2;
    }


    /* LEARN */

    .tp-learn-outside {
        grid-template-columns: 1fr 1fr;
    }

    .tp-learn-content {
        padding: 55px 40px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .tp-school-intro,
    .tp-picnic-journey,
    .tp-play-zone,
    .tp-school-food {
        padding: 70px 0;
    }

    .tp-school-container {
        padding: 0 18px;
    }


    /* INTRO */

    .tp-school-intro-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tp-school-intro-content h2 {
        font-size: 38px;
    }

    .tp-school-intro-visual {
        height: 400px;
    }

    .tp-school-main-image {
        width: 84%;
        height: 340px;
    }

    .tp-school-round-image {
        width: 125px;
        height: 125px;

        left: 5px;
        bottom: 15px;
    }

    .tp-school-blob {
        width: 85px;
        height: 85px;

        font-size: 11px;

        right: 0;
    }


    /* JOURNEY */

    .tp-journey-heading h2 {
        font-size: 37px;
    }

    .tp-journey-line {
        grid-template-columns: 1fr;
    }

    .tp-journey-card {
        min-height: auto;
    }


    /* LEARN */

    .tp-learn-outside {
        grid-template-columns: 1fr;
    }

    .tp-learn-image {
        height: 330px;
    }

    .tp-learn-content {
        padding: 60px 25px;
    }

    .tp-learn-content h2 {
        font-size: 38px;
    }


    /* PLAY */

    .tp-play-heading {
        display: block;
    }

    .tp-play-heading h2 {
        font-size: 37px;
    }

    .tp-play-heading>p {
        margin-top: 18px;
    }

    .tp-play-grid {
        grid-template-columns: 1fr;
    }

    .tp-play-card:last-child {
        grid-column: auto;
    }


    /* FOOD */

    .tp-school-food-box {
        grid-template-columns: 1fr;
    }

    .tp-school-food-image {
        height: 300px;

        grid-row: 1;
    }

    .tp-school-food-content {
        padding: 45px 25px;
    }

    .tp-school-food-content h2 {
        font-size: 36px;
    }

    .tp-food-circle {
        top: 300px;
        right: 25px;

        transform: translateY(-50%);
    }


    /* CTA */

    .tp-school-cta {
        padding-bottom: 70px;
    }

    .tp-school-cta-box {
        min-height: 470px;

        padding: 45px 25px;

        align-items: flex-start;
    }

    .tp-school-cta-content h2 {
        font-size: 38px;
    }

    .tp-school-cta-circle {
        width: 95px;
        height: 95px;

        right: 20px;
        bottom: 20px;
        top: auto;

        transform: rotate(10deg);

        font-size: 16px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .tp-school-intro-content h2,
    .tp-journey-heading h2,
    .tp-learn-content h2,
    .tp-play-heading h2,
    .tp-school-food-content h2,
    .tp-school-cta-content h2 {
        font-size: 32px;
    }

    .tp-school-intro-visual {
        height: 330px;
    }

    .tp-school-main-image {
        height: 280px;
    }

    .tp-school-round-image {
        width: 105px;
        height: 105px;
    }

    .tp-school-stats {
        gap: 20px;
    }

    .tp-play-image {
        height: 230px;
    }

    .tp-school-cta-box {
        padding: 35px 20px;
    }

}

