/* ============================
   Custom Navigation Styles
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@400;600;700&display=swap');

:root {
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    --card-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 78vh;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item,
.hero-slider .container,
.hero-slider .row {
    height: 78vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 6s ease;
    animation: heroKenBurns 18s ease-in-out infinite;
}

.carousel-item.active .hero-slide {
    transform: scale(1.07);
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.03) translateY(0);
    }
    50% {
        transform: scale(1.07) translateY(-6px);
    }
    100% {
        transform: scale(1.03) translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        animation: none;
        transition: none;
    }
}

.hero-overlay {
    display: none;
}

.hero-section::before {
    content: none;
}

.hero-section::after {
    content: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    font-family: "Manrope", "Segoe UI", sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text-card {
    display: inline-block;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(12, 24, 36, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(1px);
    box-shadow: var(--card-shadow);
    margin: 0;
    transform: none;
    text-align: left;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.hero-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.2vw, 3.2rem);
    line-height: 1.15;
    margin: 12px 0 10px;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);

    margin: 0 auto 16px;
}

.btn-brand,
.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-brand {
    background: #ab6d17;
    color: #ffffff;
    border: 1px solid #ab6d17;
    box-shadow: 0 10px 24px rgba(171, 109, 23, 0.35);
}

.btn-brand:hover {
    background: #8f5a12;
    border-color: #8f5a12;
    color: #ffffff;
}

.btn-brand-outline {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.btn-brand-outline:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.95);
    color: #ffffff;
}

.hero-control {
    width: 56px;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 16px 16px;
    border-radius: 50%;
    background-color: rgba(10, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease;
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 70px 0;
    color: #1f1f1f;
}

.about-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}

.about-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    line-height: 1.18;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.about-text {
    color: #4a4a4a;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 540px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin-bottom: 20px;
}

.about-highlight {
    display: grid;
    gap: 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    text-align: left;
    justify-items: start;
}

.about-highlight-title {
    font-weight: 700;
    color: #1f1f1f;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.about-highlight-sub {
    font-size: 0.92rem;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
}

.about-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.06);
}

/* Packages Section */
.packages-section {
    background: #f7f1e8;
    padding: 70px 0;
}

.packages-header {
    text-align: center;
    margin-bottom: 30px;
}

.packages-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.packages-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    margin-bottom: 10px;
    color: #1f1f1f;
}

.packages-text {
    color: #5a5a5a;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.package-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.package-card:hover img {
    transform: scale(1.04);
}

.package-body {
    padding: 14px 16px 16px;
    text-align: center;
}

.package-body h3 {
    font-size: 1.05rem;
    color: #d6452c;
    margin: 0;
}

.packages-cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

@media (max-width: 768px) {
    .btn-brand-outline {
        display: none;
    }

    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item,
    .hero-slider .container,
    .hero-slider .row {
        height: 70vh;
    }

    .hero-text-card {
        padding: 14px 16px;
    }

    .hero-actions .btn {
        display: block;
        width: 100%;
        margin: 10px 0 0;
    }

    .hero-actions .btn.ms-3 {
        margin-left: 0 !important;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .hero-actions .btn-brand,
    .hero-actions .btn-brand-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .site-nav .nav-inner {
        padding: 8px 12px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid #e7e7e7;
        background: #ffffff;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        font-size: 20px;
        color: #222;
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        border-color: #ab6d17;
        box-shadow: 0 6px 16px rgba(171, 109, 23, 0.25);
        color: #ab6d17;
        outline: none;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .packages-section {
        padding: 50px 0;
    }

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

.hero-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-top: 34px;
}

.hero-stat {
    background: rgba(8, 30, 44, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    text-align: left;
}

.hero-stat h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #ffc98b;
}

.hero-stat span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

body {
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    position: relative;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* New Topbar Design */
.site-topbar {
    background: #2f233a;
    color: #fff;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    /* Ensure slant doesn't bleed */
}

.site-topbar .topbar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 16px;
    /* Adjusted padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    /* Fixed height for consistent look */
}

.site-nav .nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.topbar-right a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.contact-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 30px;
    /* Space before the red section start */
}

.social-list {
    background: #ab6d17;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px 0 40px;
    /* Left padding accommodates slant */
    position: relative;
    margin-right: -100vw;
    /* Trick to extend background right */
    padding-right: 100vw;
    clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
    /* Create the slant */
}

.social-list a {
    color: #fff;
    font-size: 15px;
    margin: 0 8px;
    transition: transform 0.2s;
}

.social-list a:hover {
    transform: translateY(-2px);
    color: #fff;
    /* Keep white on red bg */
}

.site-nav {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    height: 44px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

/* Offcanvas (Bootstrap) */
.custom-offcanvas {
    width: 280px;
    max-width: 85vw;
    background: #fff;
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: block;
    visibility: hidden;
    background-color: #fff;
    outline: 0;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.offcanvas-start {
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

.offcanvas.show {
    visibility: visible;
    transform: translateX(0);
}

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

.custom-offcanvas .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-offcanvas .offcanvas-body {
    padding: 12px 16px 20px;
}

.custom-offcanvas .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-offcanvas .mobile-menu-list>li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.custom-offcanvas .mobile-menu-list>li>a,
.custom-offcanvas .mobile-menu-list>li>button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    background: transparent;
    border: 0;
}



.custom-offcanvas .has-mega .mega-menu {
    padding: 6px 0 10px 0;
    grid-template-columns: 1fr;
}

.custom-offcanvas .has-mega .mega-menu a {
    padding: 8px 10px 8px 18px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
}

.custom-offcanvas .has-mega .mega-menu a:hover {
    color: #ab6d17;
}

.custom-offcanvas .has-mega.open .caret-toggle {
    transform: rotate(180deg);
}

.custom-offcanvas .caret-toggle {
    transition: transform 0.2s ease;
}

.custom-offcanvas .mobile-brand img {
    height: 40px;
    width: auto;
}

.custom-offcanvas .mobile-close {
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #222;
    margin-left: 12px;
}

.offcanvas-backdrop.show {
    opacity: 0.45;
}

.main-nav a,
.main-nav button {
    color: #1f1f1f;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 8px 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.main-nav .caret {
    border: solid #999;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.consult-btn {
    background: #30343f;
    color: #fff;
    border: 0;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}


.has-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 880px;
    max-width: 90vw;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 18px;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* gap: 8px 24px; */
}

.mega-menu-sm {
    width: 280px;
    grid-template-columns: 1fr;
    padding: 10px 0;
    gap: 0;
}

.mega-menu-sm a {
    padding: 6px 24px;
    font-size: 14px;
}

.has-mega:hover .mega-menu {
    display: grid;
}

.mega-menu a {
    color: #333;
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    text-decoration: none;
    display: block;
}

.mega-menu-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-category {
    font-weight: 600 !important;
    color: #ab6d17 !important;
}

.mega-menu-tour {
    padding-left: 16px !important;
    font-size: 0.9em;
}

.nav-toggle {
    display: none;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 12px;
    }

    .mega-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .topbar-left,
    .social-list {
        display: none;
    }

    .topbar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .site-topbar .topbar-inner,
    .site-nav .nav-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 4px 0;
    }

    .mobile-menu-list>li {
        width: 100%;
    }

    .mobile-menu-list>li>a,
    .mobile-menu-list>li>button {
        width: 100%;
        justify-content: space-between;
        padding: 10px 0;
    }

    .has-mega .caret {
        transform: rotate(45deg);
    }

    .has-mega.open .caret {
        transform: rotate(-135deg);
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 18px;
    }

    .consult-btn {
        display: none;
    }

    .consult-btn-mobile {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
    }

    .custom-offcanvas .has-mega .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 6px 0 0 0;
        display: none;
        grid-template-columns: 1fr;
    }

    .custom-offcanvas .has-mega.open .mega-menu {
        display: grid !important;
    }

    .has-mega .mega-menu a {
        padding: 8px 0 8px 12px;
        font-size: 14px;
    }

    .mobile-social-menu {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        padding: 16px 8px;
        margin-top: 10px;
    }

    .mobile-social-menu a {
        font-size: 20px;
        color: #444;
        transition: color 0.3s;
        text-decoration: none;
    }

    .mobile-social-menu a:hover {
        color: #ab6d17;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(180deg, #1a1520 0%, #2a2235 100%);
    color: #fff;
    font-size: 14px;
    margin-top: 0;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.05);
    border-radius: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-brand .footer-social {
    display: flex;
    gap: 10px;
}

.footer-brand .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-brand .footer-social a:hover {
    background: #ab6d17;
    color: #fff;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact-block h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.95;
}

.footer-links ul,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #ab6d17;
    padding-left: 4px;
}

.footer-contact-list a i {
    width: 18px;
    opacity: 0.9;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #ab6d17;
}

.footer-sep {
    margin: 0 10px;
    opacity: 0.5;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-brand .footer-social {
        justify-content: center;
    }

    .footer-links ul,
    .footer-contact-list {
        display: inline-block;
        text-align: left;
    }
}

/* Featured carousel */
.featured-carousel-section {
    padding: 70px 0 80px;
    background: #fff;
}

.featured-header {
    margin-bottom: 32px;
}

.featured-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.featured-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.featured-text {
    max-width: 720px;
    margin: 0 auto;
    color: #5a5a5a;
    font-size: 1rem;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tour-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.tour-card-body {
    padding: 16px 20px 18px;
}

.tour-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.tour-card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.tour-card:hover {
    transform: none;
    box-shadow: var(--card-shadow);
    border-color: rgba(0, 0, 0, 0.06);
}

.tour-card:hover img {
    transform: none;
}

.tour-link {
    font-weight: 600;
    color: #1f1f1f;
    text-decoration: none;
}

.tour-link:hover {
    color: #ab6d17;
}

/* Glide carousel controls */
.featured-glide {
    position: relative;
    margin-top: 10px;
}

.featured-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.featured-arrows .glide__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #1f1f1f;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: background 0.2s ease;
}

.featured-arrows .glide__arrow:hover {
    background: #ab6d17;
}

.featured-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.featured-bullets .glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #ab6d17;
    opacity: 0.3;
}

.featured-bullets .glide__bullet.glide__bullet--active {
    opacity: 1;
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 26px;
    }
    .tour-card img {
        height: 200px;
    }
    .featured-arrows {
        position: static;
        transform: none;
        justify-content: center;
        gap: 14px;
        margin-top: 16px;
    }
}

/* Counter section */
.counter-section {
    padding: 30px 0 30px;
    background: #f7f1e8;
}

.counter-header {
    text-align: center;
    margin-bottom: 18px;
}

.counter-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 6px;
}

.counter-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.1vw, 2.1rem);
    color: #1f1f1f;
    margin: 0;
}

.counter-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.counter-item {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.counter-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f4c27a;
    color: #2f233a;
    font-size: 18px;
}

.counter-value {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f1f;
}

.counter-label {
    font-size: 13px;
    color: #666;
}

@media (max-width: 992px) {
    .counter-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .counter-card {
        grid-template-columns: 1fr 1fr;
        padding: 20px 14px;
    }
}

/* Blog scroll section */
.blog-scroll-section {
    padding: 40px 0 70px;
    background: #f7f1e8;
}

.blog-scroll-header {
    text-align: center;
    margin-bottom: 22px;
}

.blog-scroll-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.blog-scroll-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.3vw, 2.3rem);
    margin-bottom: 8px;
    color: #1f1f1f;
}

.blog-scroll-text {
    color: #5a5a5a;
    max-width: 680px;
    margin: 0 auto;
}

.blog-scroll-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding: 10px 4px 8px;
    scroll-snap-type: x mandatory;
}

.blog-scroll-track {
    overflow: hidden;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    scroll-snap-align: start;
    min-width: 260px;
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.blog-card-tag {
    font-size: 11px;
    font-weight: 700;
    color: #ab6d17;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    background: rgba(171, 109, 23, 0.12);
    border-radius: 6px;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
    margin: 0;
}

.blog-card-body p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.blog-card-link {
    font-weight: 600;
    color: #1f1f1f;
    text-decoration: none;
}

.blog-card-link:hover {
    color: #ab6d17;
}

.blog-card-btn {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
}

.blog-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.blog-arrows .glide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #1f1f1f;
    color: #fff;
    font-size: 20px;
    box-shadow: var(--card-shadow);
    pointer-events: auto;
    transition: background 0.2s ease;
}

.blog-arrows .glide__arrow:hover {
    background: #ab6d17;
}

.blog-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.blog-bullets .glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #ab6d17;
    opacity: 0.3;
}

.blog-bullets .glide__bullet.glide__bullet--active {
    opacity: 1;
}

@media (max-width: 768px) {
    .blog-arrows {
        position: static;
        transform: none;
        justify-content: center;
        gap: 14px;
        margin-top: 12px;
    }
}

/* Contact form */
.contact-section {
    padding: 70px 0 90px;
    background: #ffffff;
}

.contact-header {
    margin-bottom: 24px;
}

.contact-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

.contact-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.3vw, 2.4rem);
    color: #1f1f1f;
    margin-bottom: 8px;
}

.contact-text {
    color: #5a5a5a;
    max-width: 680px;
    margin: 0 auto;
}

.contact-card {
    margin-top: 28px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 24px;
    box-shadow: var(--card-shadow);
}

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

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    color: #2f233a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ab6d17;
    box-shadow: 0 0 0 3px rgba(171, 109, 23, 0.15);
}

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

.contact-submit {
    margin-top: 16px;
}

.contact-info {
    background: #fff6eb;
    border-radius: 16px;
    padding: 20px;
    display: grid;
    gap: 14px;
    color: #2f233a;
}

.contact-info h3 {
    margin: 0;
    font-size: 18px;
}

.contact-info p {
    margin: 0;
    color: #5a5a5a;
    font-size: 14px;
}

.contact-info-item {
    display: grid;
    gap: 4px;
}

.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ab6d17;
    font-weight: 700;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #2f233a;
}

@media (max-width: 992px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 22px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Category page */
.category-hero {
    padding: 80px 0 50px;
    background: #ffffff;
}

.category-kicker {
    display: inline-block;
    font-weight: 700;
    color: #ab6d17;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.category-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #1f1f1f;
    margin-bottom: 12px;
}

.category-text {
    max-width: 720px;
    color: #5a5a5a;
}

.category-packages {
    padding: 10px 0 60px;
    background: #f7f1e8;
}

.category-header {
    text-align: center;
    margin-bottom: 28px;
}

.category-section-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    color: #1f1f1f;
}

.category-section-text {
    color: #5a5a5a;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.category-card-horizontal {
    display: flex;
    align-items: stretch;
}

.category-card-horizontal img {
    width: 260px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

.category-card-horizontal .category-card-body {
    flex: 1;
}

.category-card-body {
    padding: 18px 20px 22px;
    font-family: "Manrope", "Segoe UI", sans-serif;
}

.category-card-body h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.category-card-body p,
.category-card-body span,
.category-card-body a {
    font-family: "Manrope", "Segoe UI", sans-serif;
}

.category-route {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.category-meta {
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: #444;
    margin-bottom: 12px;
}

.category-price {
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.category-btn {
    display: inline-block;
}

.tour-list {
    margin-bottom: 24px;
}

.tour-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tour-list-card {
    display: block;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.tour-list-card:hover {
    border-color: #ab6d17;
    box-shadow: 0 4px 16px rgba(171, 109, 23, 0.15);
}

.tour-list-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.tour-list-card:hover h3 {
    color: #ab6d17;
}

.tour-list-card p {
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.tour-block {
    margin-bottom: 24px;
}

.tour-block h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.tour-block p {
    color: #5a5a5a;
    margin-bottom: 14px;
}

.category-enquiry {
    padding: 60px 0 90px;
    background: #ffffff;
}

.category-enquiry .row {
    align-items: stretch;
}

.category-enquiry .col-lg-4 {
    position: relative;
    display: flex;
    flex-direction: column;
}

.category-enquiry .col-lg-8 {
    position: relative;
}

.category-enquiry .enquiry-form-card {
    width: 100%;
}

.category-backdrop {
    padding: 70px 0;
    background: url("../images/banner-kashmir.webp") center/cover no-repeat;
    position: relative;
    color: #ffffff;
}

.category-backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0,0.75);
}

.category-backdrop-card {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.category-backdrop-card h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    margin-bottom: 8px;
}

.category-backdrop-card p {
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.category-gallery {
    padding: 30px 0 50px;
    background: #ffffff;
}

.category-gallery-glide .glide__slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.category-gallery-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.category-gallery-arrows .glide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #1f1f1f;
    color: #fff;
    font-size: 20px;
    box-shadow: var(--card-shadow);
    pointer-events: auto;
    transition: background 0.2s ease;
}

.category-gallery-arrows .glide__arrow:hover {
    background: #ab6d17;
}

@media (max-width: 768px) {
    .category-gallery-glide .glide__slide img {
        height: 200px;
    }
    .category-gallery-arrows {
        position: static;
        transform: none;
        justify-content: center;
        gap: 14px;
        margin-top: 14px;
    }
}

.enquiry-form-card,
.enquiry-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.enquiry-form-card {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.enquiry-form-sticky,
.package-detail-section .enquiry-form-card,
.category-enquiry .enquiry-form-card,
.packages-all-section .enquiry-form-card,
.blog-detail .enquiry-form-card {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
}

/* Package detail */
.package-detail-hero {
    padding: 50px 0 20px;
    background: #ffffff;
}

.package-detail-header h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    margin-bottom: 6px;
    color: #1f1f1f;
}

.package-detail-header p {
    color: #666;
}

.package-detail-section {
    padding: 20px 0 80px;
    background: #ffffff;
}

.package-detail-section .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.package-detail-section .col-lg-4 .enquiry-form-card {
    flex: 1;
    min-width: 0;
}

.package-detail-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.package-detail-glide .glide__slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
}

.package-detail-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.package-detail-arrows .glide__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: #1f1f1f;
    color: #fff;
    font-size: 20px;
    box-shadow: var(--card-shadow);
    pointer-events: auto;
    transition: background 0.2s ease;
}

.package-detail-arrows .glide__arrow:hover {
    background: #ab6d17;
}

@media (max-width: 768px) {
    .package-detail-glide .glide__slide img {
        height: 220px;
    }
}

.package-detail-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 10px;
    margin-bottom: 18px;
}

.package-detail-tabs .nav-link {
    border: 0;
    background: transparent;
    color: #1f1f1f;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
}

.package-detail-tabs .nav-link.active {
    background: #ab6d17;
    color: #ffffff;
}

.package-detail-content .detail-block {
    /* background: #fff6eb; */
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 16px;
}

.package-detail-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.page-content {
    padding: 50px 0 90px;
    background: #ffffff;
}

.page-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    color: #5a5a5a;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f5efe6 50%, #f0e9df 100%);
    padding: 70px 0;
    overflow: hidden;
}

.founder-section .container {
    overflow: hidden;
}

.founder-section .founder-image-col {
    min-width: 0;
}

.founder-section .row {
    --bs-gutter-x: 1.5rem;
}

.founder-section .founder-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(171, 109, 23, 0.15);
    width: 100%;
    max-width: 380px;
    position: relative;
}


.founder-section .founder-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    transition: transform 0.6s ease;
}

.founder-section .founder-image:hover img {
    transform: scale(1.05);
}

.founder-role {
    font-size: 14px;
    font-weight: 700;
    color: #ab6d17;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.founder-bio {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .founder-section .col-lg-6 {
        min-width: 0;
    }
    .founder-section .founder-image {
        max-width: 340px;
        margin: 0 auto;
    }
}

.about-page-section {
    background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
}

.about-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-page-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-page-card-wide {
    grid-column: 1 / -1;
}

.about-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ab6d17 0%, #c97d1a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-icon i {
    font-size: 22px;
    color: #fff;
}

.about-page-card h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.about-page-card p {
    color: #5a5a5a;
    line-height: 1.75;
    margin-bottom: 14px;
}

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

.about-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    color: #5a5a5a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.about-list li i {
    color: #ab6d17;
    font-size: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .about-page-card-wide {
        grid-column: 1;
    }
}

.blog-page {
    padding: 60px 0 90px;
    background: #ffffff;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.blog-detail {
    padding: 60px 0 90px;
    background: #ffffff;
}

.packages-all-section {
    padding: 60px 0 90px;
    background: #ffffff;
}

.packages-all-section .row {
    align-items: stretch;
}

.packages-all-section .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.packages-category-block {
    margin-bottom: 48px;
}

.packages-category-block:last-child {
    margin-bottom: 0;
}

.packages-category-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ab6d17;
}

.packages-category-desc {
    color: #5a5a5a;
    margin-bottom: 20px;
    font-size: 15px;
}

.packages-tour-grid .packages-tour-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.packages-tour-grid .packages-tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.packages-tour-grid .packages-tour-card .packages-tour-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.packages-tour-grid .packages-tour-card .packages-tour-card-body p {
    flex: 1;
}

.blog-detail .row {
    align-items: stretch;
}

.blog-detail .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.blog-detail .blog-enquiry-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 100%;
}

.blog-detail-wrapper {
    max-width: 100%;
}

.blog-detail-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    /* box-shadow: var(--card-shadow); */
}

.blog-detail-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 18px;
}

.blog-detail-content h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.blog-detail-content p,
.blog-detail-content li {
    color: #5a5a5a;
}

/* Blog related slider */
.blog-related-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.blog-related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f1f1f;
}

.blog-related-glide {
    position: relative;
}

.blog-related-glide .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ab6d17;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.blog-related-glide .glide__arrow:hover {
    opacity: 0.9;
}

.blog-related-glide .glide__arrow--left {
    left: -20px;
}

.blog-related-glide .glide__arrow--right {
    right: -20px;
}

@media (max-width: 576px) {
    .blog-related-glide .glide__arrow--left {
        left: 0;
    }
    .blog-related-glide .glide__arrow--right {
        right: 0;
    }
}

.blog-related-glide .blog-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-related-glide .blog-card:hover h3 {
    color: #ab6d17;
}

@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

.contact-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.contact-page-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--card-shadow);
}

.contact-page-card h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 26px;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.contact-page-info {
    display: grid;
    gap: 14px;
}

.contact-page-info .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff6eb 100%);
    border-radius: 14px;
    border: 1px solid rgba(171, 109, 23, 0.12);
    transition: all 0.25s ease;
}

.contact-page-info a.contact-info-item {
    text-decoration: none;
    color: inherit;
}

.contact-page-info a.contact-info-item:hover {
    background: linear-gradient(135deg, #fff6eb 0%, #ffeed9 100%);
    border-color: rgba(171, 109, 23, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(171, 109, 23, 0.12);
}

.contact-page-info .contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(171, 109, 23, 0.15);
    color: #ab6d17;
    border-radius: 12px;
    font-size: 16px;
}

.contact-page-info .contact-info-item > div {
    display: grid;
    gap: 4px;
}

.contact-page-info .contact-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ab6d17;
    font-weight: 700;
}

.contact-page-info .contact-info-value {
    font-size: 15px;
    font-weight: 600;
    color: #2f233a;
    line-height: 1.4;
}

.contact-page-info .contact-info-item-address {
    cursor: default;
}

.contact-page-card p {
    color: #5a5a5a;
    margin-bottom: 16px;
    font-size: 15px;
}

.contact-page-form {
    display: grid;
    gap: 12px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-page-grid .form-group {
    display: grid;
    gap: 6px;
}

.contact-page-grid input,
.contact-page-grid textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.contact-page-grid input:focus,
.contact-page-grid textarea:focus {
    border-color: #ab6d17;
    box-shadow: 0 0 0 3px rgba(171, 109, 23, 0.15);
}

@media (max-width: 992px) {
    .contact-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

.enquiry-form-card h2,
.enquiry-content-card h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.enquiry-content-card p {
    color: #5a5a5a;
    margin-bottom: 14px;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.enquiry-grid .form-group {
    display: grid;
    gap: 6px;
}

.enquiry-grid input,
.enquiry-grid textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.enquiry-grid textarea {
    resize: none;
    height: 120px;
    overflow: hidden;
}

.enquiry-grid input:focus,
.enquiry-grid textarea:focus {
    border-color: #ab6d17;
    box-shadow: 0 0 0 3px rgba(171, 109, 23, 0.15);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card-horizontal {
        flex-direction: column;
    }
    .category-card-horizontal img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
}

/* Call to action */
.cta-section {
    padding: 70px 0;
    background: #2f233a url("../images/banner-kashmir.webp") center/cover no-repeat fixed;
   
}



.cta-card {
    background: #2f233a;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-kicker {
    display: inline-block;
    font-weight: 700;
    color: #f4c27a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.cta-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-actions .btn-brand {
    background: #f4c27a;
    border-color: #f4c27a;
    color: #2f233a;
}

.cta-actions .btn-brand:hover {
    background: #e5b465;
    border-color: #e5b465;
}

.cta-actions .btn-brand-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    background: transparent;
}

.cta-actions .btn-brand-outline:hover {
    color: #2f233a;
    background: #ffffff;
    border-color: #ffffff;
}

.cta-meta {
    background: rgba(255, 246, 235, 0.92);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    gap: 16px;
    box-shadow: var(--card-shadow);
    
}

.cta-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.cta-meta-item {
    display: grid;
    gap: 4px;
}

.cta-meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2f233a;
    font-weight: 700;
}

.cta-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #2f233a;
}

@media (max-width: 992px) {
    .cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cta-card {
        padding: 28px 24px;
    }
}

/* ============================
   Consult Now Modal
   ============================ */
.consult-modal-dialog {
    max-width: 900px;
    margin: 1rem auto;
}

.consult-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.consult-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.consult-modal-image {
    background: #f5f3ef;
    min-height: 320px;
}

.consult-modal-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.consult-modal-form {
    padding: 32px 28px;
    overflow-y: auto;
    max-height: 85vh;
}

.consult-modal-form .enquiry-form-card {
    box-shadow: none;
    padding: 0;
}

.consult-modal-form h2 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.consult-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.consult-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

#consultModal .modal-content {
    position: relative;
}

@media (max-width: 768px) {
    .consult-modal-body {
        grid-template-columns: 1fr;
    }

    .consult-modal-image {
        min-height: 200px;
    }

    .consult-modal-image img {
        min-height: 200px;
    }

    .consult-modal-form {
        padding: 24px 20px;
    }
}

/* ============================
   Floating Contact (WhatsApp & Call)
   ============================ */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-contact-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.floating-contact .floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.floating-contact .floating-btn:first-child {
    color: #25D366;
}

.floating-contact .floating-btn:first-child:hover {
    background: rgba(37, 211, 102, 0.1);
}

.floating-contact .floating-btn:last-child {
    color: #ab6d17;
}

.floating-contact .floating-btn:last-child:hover {
    background: rgba(171, 109, 23, 0.08);
}

.floating-contact .floating-btn i {
    font-size: 20px;
}

.floating-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
    .floating-contact {
        bottom: 16px;
        right: 16px;
    }

    .floating-contact .floating-btn span {
        display: none;
    }

    .floating-contact .floating-btn {
        padding: 12px 14px;
        gap: 0;
    }

    .floating-contact .floating-btn i {
        font-size: 22px;
    }

    .floating-divider {
        height: 22px;
    }
}
