/* ====== ROOT ===== */
:root {
    /* COLORS */
    --primary: #cf5500;
    --primary-dark: #a94700;
    --dark: #3b3027;
    --dark-light: #4b3d32;
    --white: #ffffff;
    --light: #f7f4f0;
    --text: #222222;
    --border: #e8e1da;
    /* FONTS */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;
    /* FONT SIZES */
    --fs-sm: 13px;
    --fs-base: 16px;
    --fs-md: 18px;
    --fs-lg: 25px;
    --fs-xl: 35px;
    --fs-2xl: 45px;
    --fs-hero: 75px;
    /* TRANSITION */
    --transition: all 0.3s ease;
    /* SHADOW */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    /* BORDER RADIUS */
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 25px;
}

/* ==== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* BUTTON */
.web-btn {
    min-height: 56px;
    padding: 0 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.web-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.dark-btn {
    background: var(--dark);
    color: var(--white);
}

.dark-btn:hover {
    background: var(--dark-light);
    color: var(--white);
}

.web-btn-outline {
    min-height: 56px;
    padding: 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.web-btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.bgAbstract {
    background: url('../img/bg-abstract.png');
}

/* ======= CUSTOM CONTAINER ====== */
.custom-container {
    max-width: 1800px;
    padding-left: 35px;
    padding-right: 35px;
}

/* =========================================
COMMON SECTION STYLES
========================================= */
.sub-heading {
    display: inline-block;
    color: var(--primary);
    font-size: var(--fs-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: var(--fs-2xl);
    line-height: 1.2;
    color: #1d1d1d;
    margin-bottom: 0;
}

.section-text {
    font-size: var(--fs-base);
    line-height: 1.9;
    color: #666;
    max-width: 900px;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px) {
    .section-title {
        font-size: var(--fs-xl);
    }

    .section-text {
        font-size: var(--fs-md);
        line-height: 1.8;
    }
}

@media(max-width:767px) {
    .sub-heading {
        font-size: var(--fs-base);
    }

    .section-title {
        font-size: var(--fs-xl);
        line-height: 1.3;
    }

    .section-text {
        font-size: var(--fs-md);
        line-height: 1.8;
    }
}

/* ========= HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    transition: all 0.4s ease;
    background: linear-gradient(to right,
            rgba(43, 36, 29, 0.78),
            rgba(43, 36, 29, 0.55),
            rgba(43, 36, 29, 0.78));
}

.header.sticky {
    padding: 6px 0;
    background: rgba(30, 25, 20, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* LOGO TRANSITION */
.logo-block img {
    max-height: 105px;
    transition: all 0.4s ease;
}

/* SMALLER LOGO ON SCROLL */
.header.sticky .logo-block img {
    max-height: 85px;
}

.header.sticky .ResponsiveNav ul li a {
    font-size: var(--fs-sm);
}

.header-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* ===== LOGO ====== */
.logo-block img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* =========================================
HERO SLIDER
========================================= */
.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* OVERLAY */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.20));
    z-index: 1;
}

/* CAPTION */
.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
    padding-top: 120px;
}

/* HERO CONTENT */
.hero-content {
    max-width: 850px;
    margin: 0 auto;
    animation: heroFadeUp 1.2s ease;
}

/* SUB TITLE */
.hero-sub {
    color: var(--white);
    font-size: var(--fs-md);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HEADING */
.hero-content h2 {
    font-family: var(--heading-font);
    color: var(--white);
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 25px;
}

/* DESCRIPTION */
.hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--fs-md);
    line-height: 1.8;
    max-width: 850px;
    margin-bottom: 35px;
    margin: 0 auto 35px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* PRIMARY BUTTON */
.hero-btn-primary {
    min-height: 60px;
    padding: 0 34px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* OUTLINE BUTTON */
.hero-btn-outline {
    min-height: 60px;
    padding: 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* HERO ANIMATION */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

/* RESPONSIVE */
@media(max-width:1199px) {
    .hero-content h2 {
        font-size: var(--fs-2xl);
    }
}

@media(max-width:991px) {
    .carousel-item img {
        height: 90vh;
    }

    .carousel-caption {
        bottom: 45%;
    }

    .hero-content h2 {
        font-size: var(--fs-xl);
    }

    .hero-desc {
        font-size: var(--fs-base);
    }
}

@media(max-width:767px) {
    .carousel-item img {
        height: 85vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        font-size: var(--fs-base);
    }

    .hero-content h2 {
        font-size: var(--fs-xl);
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
    }
}

/* =========================================
BOOKING STRIP
========================================= */
.booking-strip {
    position: relative;
    z-index: 5;
}

/* LEFT */
.booking-strip-left {
    background: #efd0b6;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.booking-strip-left h3 {
    margin: 0;
    color: var(--primary);
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

/* RIGHT */
.booking-strip-right {
    background: #e7c58a;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding: 15px;
}

.booking-strip-right a {
    color: #000;
    font-size: var(--fs-xl);
    font-weight: 800;
}

/* RESPONSIVE */
@media(max-width:1399px) {
    .booking-strip-left h3 {
        font-size: var(--fs-lg);
    }

    .booking-strip-right a {
        font-size: var(--fs-lg);
    }
}

@media(max-width:991px) {
    .booking-strip-right {
        flex-direction: column;
        gap: 15px;
    }
}

@media(max-width:767px) {
    .booking-strip-left h3 {
        font-size: var(--fs-lg);
        text-align: center;
    }

    .booking-strip-right a {
        font-size: var(--fs-lg);
    }

    .booking-strip-right {
        height: auto;
    }
}

/* =========================================
WELCOME SECTION
========================================= */
.welcome-section {
    background: var(--dark);
}

/* IMAGE */
.welcome-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.welcome-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.welcome-image:hover img {
    transform: scale(1.03);
}

/* CONTENT */
.welcome-content {
    color: var(--white);
}

.welcome-content h2 {
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* SUB HEADING */
.welcome-content h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
}

/* TEXT */
.welcome-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 22px;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:1199px) {
    .welcome-content h2 {
        font-size: var(--fs-xl);
    }
}

@media(max-width:991px) {
    .welcome-section {
        padding: 80px 0;
    }

    .welcome-content {
        text-align: center;
    }
}

@media(max-width:767px) {
    .welcome-content h2 {
        font-size: var(--fs-lg);
    }

    .welcome-content h3 {
        font-size: var(--fs-md);
    }

    .welcome-content p {
        line-height: 1.8;
    }
}

/* ======= SECTION TITLE ============= */
.section-title h2 {
    color: var(--primary);
    font-size: var(--fs-xl);
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title p {
    font-size: var(--fs-md);
    line-height: 1.8;
    color: var(--text);
}

/* =========================================
OFFER CARDS
========================================= */
.offer-card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.offer-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: var(--transition);
}

/* HOVER */
.offer-card:hover img {
    transform: scale(1.05);
}

.offer-card:hover .offer-content {
    background: rgba(30, 24, 19, 0.92);
}

/* CONTENT */
.offer-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(40, 32, 26, 0.82);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 24px;
}

/* TOP AREA */
.offer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

/* TITLE */
.offer-top h3 {
    color: var(--white);
    font-size: var(--fs-lg);
    font-weight: 700;
    margin: 0;
}

/* ICON */
.offer-top span {
    color: var(--primary);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.offer-card:hover .offer-top span {
    transform: translateX(5px);
}

/* TEXT */
.offer-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:1399px) {
    .offer-card img {
        height: 580px;
    }
}

@media(max-width:991px) {
    .section-title h2 {
        font-size: var(--fs-2xl);
    }

    .section-title p {
        font-size: var(--fs-md);
    }

    .offer-card img {
        height: 500px;
    }
}

@media(max-width:767px) {
    .section-title h2 {
        font-size: var(--fs-xl);
    }

    .section-title p {
        font-size: var(--fs-base);
        line-height: 1.8;
    }

    .offer-card img {
        height: 420px;
    }

    .offer-top h3 {
        font-size: var(--fs-md);
    }
}

/* =========================================
WHY SECTION
========================================= */
.why-section {
    background: var(--dark);
    overflow: hidden;
}

/* LEFT WRAPPER */
.why-content-wrapper {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

/* TITLE */
.why-heading span {
    display: block;
    color: var(--primary);
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: 15px;
}

.why-heading h2 {
    color: var(--white);
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */
.why-content>p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* FEATURES */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FEATURE ITEM */
.why-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

/* ITEM TITLE */
.why-item h3 {
    color: var(--white);
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: 8px;
}

/* ITEM TEXT */
.why-item p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    margin: 0;
}

/* VIDEO */
.why-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.why-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:1399px) {
    .why-heading h2 {
        font-size: var(--fs-2xl);
    }
}

@media(max-width:1199px) {
    .why-content-wrapper {
        padding: 70px 40px;
    }
}

@media(max-width:991px) {
    .why-content-wrapper {
        padding: 60px 25px;
    }

    .why-content {
        text-align: center;
    }

    .why-heading h2 {
        font-size: var(--fs-xl);
    }
}

@media(max-width:767px) {
    .why-heading span {
        font-size: var(--fs-md);
    }

    .why-heading h2 {
        font-size: var(--fs-lg);
    }

    .why-item h3 {
        font-size: var(--fs-md);
    }
}

/* =========================================
TESTIMONIAL SECTION
========================================= */
.testimonial-section {
    background: #f7f7f7;
    overflow: hidden;
}

/* CARD */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 50px 35px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* NAME */
.testimonial-card h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 8px;
}

/* ROLE */
.testimonial-card span {
    display: block;
    color: var(--primary);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* TEXT */
.testimonial-card p {
    font-size: var(--fs-base);
    line-height: 1.7;
    font-style: italic;
    color: #444;
    margin: 0;
}

/* NAVIGATION */
.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--fs-lg);
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
}

.testimonial-prev {
    left: 0px;
}

.testimonial-next {
    right: 0px;
}

/* =========================================
FAQ SECTION
========================================= */
.custom-faq .accordion-item {
    border: none;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* BUTTON */
.custom-faq .accordion-button {
    background: #fff;
    color: #111;
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: 1.5;
    padding: 20px 24px;
    box-shadow: none !important;
}

/* REMOVE BOOTSTRAP ACTIVE BG */
.custom-faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary);
}

/* REMOVE DEFAULT ICON */
.custom-faq .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: var(--fs-lg);
    font-weight: 700;
    color: #111;
    transform: none;
    width: auto;
    height: auto;
}

/* OPEN STATE */
.custom-faq .accordion-button:not(.collapsed)::after {
    content: "–";
    color: var(--primary);
}

/* REMOVE EXTRA GAP */
.custom-faq .accordion-collapse {
    border: none;
}

/* BODY */
.custom-faq .accordion-body {
    padding: 0 24px 20px;
    color: #555;
    font-size: var(--fs-base);
    line-height: 1.7;
}

/* REMOVE FOCUS SHADOW */
.custom-faq .accordion-button:focus {
    box-shadow: none;
}

/* =========================================
TABLET
========================================= */
@media(max-width:991px) {
    .custom-faq .accordion-button {
        font-size: var(--fs-base);
        padding: 18px 22px;
    }

    .custom-faq .accordion-body {
        padding: 0 22px 18px;
        font-size: var(--fs-base);
    }
}

/* =========================================
MOBILE
========================================= */
@media(max-width:767px) {
    .custom-faq .accordion-item {
        border-radius: var(--radius-sm) !important;
        margin-bottom: 12px;
    }

    .custom-faq .accordion-button {
        font-size: var(--fs-base);
        line-height: 1.5;
        padding: 16px 18px;
    }

    .custom-faq .accordion-button::after {
        font-size: var(--fs-lg);
        margin-left: 15px;
    }

    .custom-faq .accordion-body {
        padding: 0 18px 16px;
        font-size: var(--fs-base);
        line-height: 1.7;
    }
}

/* =========== FOOTER CTA ========== */
.footer-cta-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: -105px;
}

.footer-cta {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: #fff;
}

.footer-cta span {
    display: block;
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-cta h2 {
    font-size: var(--fs-lg);
    line-height: 1.3;
    margin-bottom: 35px;
}

/* CTA BUTTONS */
.footer-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CALL BUTTON */
.cta-call-btn {
    background: #fff;
    color: #000;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    font-weight: 700;
    text-decoration: none;
}

/* ===== FOOTER ============= */
.main-footer {
    background: var(--dark);
    color: #fff;
    padding-top: 150px !important;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    background: var(--primary);
}

/* TITLES */
.footer-info h3 {
    font-size: var(--fs-lg);
    margin-bottom: 30px;
}

/* TEXT */
.footer-info p,
.footer-info a {
    color: #fff;
    font-size: var(--fs-base);
    line-height: 1.8;
    text-decoration: none;
}

.footer-info strong {
    color: var(--primary);
}

/* SOCIAL */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-social a {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--fs-lg);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* COPYRIGHT */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ========= RESPONSIVE =========== */
@media(max-width:991px) {
    .footer-cta {
        padding: 40px;
    }

    .footer-cta h2 {
        font-size: var(--fs-xl);
    }

    .footer-social {
        flex-direction: row;
    }
}

@media(max-width:767px) {
    .footer-cta {
        padding: 30px 24px;
        border-radius: var(--radius-md);
    }

    .footer-cta h2 {
        font-size: var(--fs-lg);
    }

    .cta-call-btn {
        width: 100%;
        text-align: center;
        font-size: var(--fs-base);
    }

    .footer-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-info h3 {
        font-size: var(--fs-lg);
    }
}

/* ======= INNER HERO ========= */
.inner-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* BG */
.inner-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.inner-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

/* OVERLAY */
.inner-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 35%,
            rgba(0, 0, 0, 0.35) 65%,
            rgba(0, 0, 0, 0.15) 100%);
}

/* CONTENT */
.inner-hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    color: #fff;
    padding-top: 120px;
}

/* SUBTITLE */
.inner-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: var(--fs-md);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* TITLE */
.inner-hero-content h1 {
    font-family: var(--heading-font);
    font-size: var(--fs-hero);
    line-height: 1;
    margin-bottom: 25px;
}

/* DESCRIPTION */
.inner-hero-content p {
    font-size: var(--fs-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px) {
    .inner-hero {
        height: 70vh;
    }

    .inner-hero-content {
        padding-top: 100px;
    }

    .inner-hero-content h1 {
        font-size: 64px;
    }

    .inner-hero-content p {
        font-size: var(--fs-base);
    }
}

@media(max-width:767px) {
    .inner-hero {
        min-height: 420px;
    }

    .inner-hero-content {
        text-align: center;
        margin: auto;
    }

    .inner-hero-content h1 {
        font-size: var(--fs-xl);
    }

    .inner-hero-content p {
        font-size: var(--fs-base);
        line-height: 1.7;
    }

    .inner-breadcrumb {
        justify-content: center;
    }
}

/* =========================================
ABOUT PAGE CONTENT
========================================= */
.about-page-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-page-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.about-page-image:hover img {
    transform: scale(1.03);
}

/* TEXT */
.about-page-text h2 {
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-page-text p {
    font-size: var(--fs-base);
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:991px) {
    .about-page-text {
        text-align: center;
    }
}

@media(max-width:767px) {
    .about-page-text h2 {
        font-size: var(--fs-lg);
    }
}

/* =========================================
GUIDE SERVICES
========================================= */
.guide-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* TITLE */
.guide-card h3 {
    font-size: var(--fs-lg);
    font-weight: 800;
    margin-bottom: 20px;
}

/* TEXT */
.guide-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* LIST */
.guide-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guide-card ul li {
    position: relative;
    padding-left: 28px;
    line-height: 1.7;
}

/* BULLET */
.guide-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:767px) {
    .guide-card {
        padding: 30px 24px;
    }

    .guide-card h3 {
        font-size: var(--fs-md);
    }
}

/* =========================================
CONTACT PAGE
========================================= */
.contact-form-wrapper {
    border-radius: var(--radius-lg);
}

.contact-info-card {
    background: var(--dark);
    color: #fff;
}

/* FORM */
.contact-section .form-control,
.contact-section .form-select {
    height: 58px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: none;
    padding: 15px 18px;
    font-size: var(--fs-base);
}

.contact-section textarea.form-control {
    height: auto;
    resize: none;
    padding-top: 18px;
}

/* FOCUS */
.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* RIGHT CARD */
.contact-info-card h3 {
    font-size: var(--fs-lg);
}

.contact-info-card p,
.contact-info-item p {
    color: #d5d5d5;
    line-height: 1.8;
}

/* INFO */
.contact-info-item h4 {
    font-size: var(--fs-md);
    margin-bottom: 12px;
}

.contact-info-item a {
    display: block;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* =========================================
ACCOMMODATION PAGE
========================================= */
.accommodation-feature {
    padding: 40px 25px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(194, 87, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 42px;
    color: var(--primary);
}

.accommodation-feature h4 {
    font-size: 28px;
    margin-bottom: 18px;
}

.accommodation-feature p {
    margin-bottom: 0;
}

/* AMENITIES */
.amenity-box {
    background: #fff;
    border-radius: 18px;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.amenity-box i {
    font-size: 26px;
    color: var(--primary);
}

.amenity-box span {
    font-size: 18px;
    font-weight: 500;
}

/* MEALS */
.meal-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.meal-item i {
    font-size: 24px;
    color: var(--primary);
}

.meal-item h5 {
    margin-bottom: 6px;
    font-size: 22px;
}

.meal-item p {
    margin-bottom: 0;
}

.meal-image img {
    width: 100%;
    object-fit: cover;
}

/* =========================================
GALLERY HERO
========================================= */
.gallery-hero {
    padding: 150px 0 50px;
    background:
        linear-gradient(to right,
            rgba(28, 23, 18, 0.92),
            rgba(28, 23, 18, 0.78)),
        url('../img/gallery-hero.jpg') center/cover no-repeat;
}

.gallery-hero .section-title {
    color: var(--white);
}

.gallery-hero .section-text {
    color: rgba(255, 255, 255, 0.82);
}

/* =========================================
MASONRY GALLERY
========================================= */
.gallery-masonry {
    column-count: 6;
    column-gap: 20px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius-md);
    break-inside: avoid;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

/* =========================================
RESPONSIVE
========================================= */
@media(max-width:1199px) {
    .gallery-masonry {
        column-count: 4;
    }
}

@media(max-width:991px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media(max-width:767px) {
    .gallery-masonry {
        column-count: 2;
        column-gap: 15px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }
}

@media(max-width:575px) {
    .gallery-masonry {
        column-count: 1;
    }
}


/* =========================================
HUNT FEATURE BOX
========================================= */

.hunt-feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.hunt-feature-box i {
    color: var(--primary);
    font-size: 24px;
}

.hunt-feature-box span {
    font-weight: 600;
    color: #222;
}


/* =========================================
SECTION SMALL TEXT
========================================= */

.section-text-sm {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* =========================================
ICON CIRCLE
========================================= */

.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(217, 95, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 34px;
    color: var(--primary);
}


/* =========================================
CUSTOM CARD
========================================= */

.custom-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 35px 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}


/* =========================================
SEASON CARD
========================================= */

.season-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.season-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.season-date {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}


/* =========================================
PACKAGE CARD
========================================= */

.package-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-top {
    background: linear-gradient(135deg, var(--primary), #ff7a00);
    color: #fff;
    padding: 30px;
}

.package-top h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    background: rgba(127, 63, 28, 0.8);
    display: inline-block;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.package-body {
    padding-inline: 20px;
    padding-top: 25px;
    flex: 1;
}

.package-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.package-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #555;
}

.package-list li i {
    color: var(--primary);
}

.package-footer {
    padding-left: 20px;
    padding-bottom: 20px;
}


/* =========================================
TIMELINE CARD
========================================= */

.timeline-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.timeline-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* =========================================
HUNT TIMELINE
========================================= */

.hunt-timeline {
    position: relative;
    padding-left: 40px;
}

.hunt-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.08);
}


/* ITEM */

.hunt-timeline-item {
    position: relative;
    padding-bottom: 50px;
}

.hunt-timeline-item:last-child {
    padding-bottom: 0;
}


/* BADGE */

.timeline-badge {
    position: absolute;
    left: -40px;
    top: 0;

    background: var(--primary);
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    padding: 10px 16px;
    border-radius: 50px;
}


/* CONTENT */

.timeline-content {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.9;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:767px) {

    .hunt-timeline {
        padding-left: 0;
    }

    .hunt-timeline::before {
        display: none;
    }

    .timeline-badge {
        position: relative;
        left: 0;
        margin-bottom: 20px;
        display: inline-block;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h4 {
        font-size: 24px;
    }

}

/* Home Cards for stats */
.stats-card {
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.statistics-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.statistics-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* WhatsApp Contact Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: .3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-with-text {
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
    gap: 10px;
    font-size: 18px;
}

.whatsapp-with-text span {
    font-size: 15px;
    font-weight: 600;
}
