:root{--page-title-display:none;}/* Start custom CSS *//* =========================================================
   BHUTAN FIRST TOUCH TOURS — CLEAN LANDING PAGE CSS
   Cleaned version: duplicate overrides consolidated.
   Keep this stylesheet as the single source of truth.
   ========================================================= */


/* =========================================================
   BHUTAN FIRST TOUCH TOURS
   LANDING PAGE — GLOBAL CSS
   ========================================================= */

.bhutan-page {
    --bt-green: #173A3A;
    --bt-dark: #071F1F;
    --bt-gold: #C6A15B;
    --bt-orange: #D69A3A;
    --bt-cream: #F7F4ED;
    --bt-light: #FAFAF7;
    --bt-text: #263238;
    --bt-muted: #687477;
    --bt-white: #FFFFFF;

    width: 100%;
    overflow: hidden;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--bt-text);
}

.bhutan-page *,
.bhutan-page *::before,
.bhutan-page *::after {
    box-sizing: border-box;
}

.bt-container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.bt-header {
    width: 100%;
    position: relative;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid rgba(23,58,58,.10);
}

.bt-header-inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bt-logo,
.bt-footer-logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--bt-green) !important;
    text-decoration: none !important;
    line-height: 1.1;
}


.bt-logo span,
.bt-footer-logo span {
    color: var(--bt-gold);
}

.bt-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bt-head-link {
    color: var(--bt-green) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 14px;
}

.bt-whatsapp,
.bt-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 19px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
}

.bt-whatsapp {
    color: var(--bt-green) !important;
    border: 1px solid var(--bt-green);
    background: #fff;
}

.bt-quote-btn {
    color: #fff !important;
    background: var(--bt-green);
}

.bt-whatsapp:hover,
.bt-quote-btn:hover {
    transform: translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */

.bt-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(4,27,27,.90) 0%,
            rgba(4,27,27,.73) 45%,
            rgba(4,27,27,.48) 100%
        ),
        linear-gradient(135deg, #183d3b, #526e65);

    background-size: cover;
    background-position: center;
}

.bt-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr);
    gap: 70px;
    align-items: center;
    padding: 75px 0;
}

.bt-hero-content {
    color: #fff;
}

.bt-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;

    color: var(--bt-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bt-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--bt-gold);
}

.bt-hero h1 {
    max-width: 780px;
    margin: 0 0 22px;

    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 5.2vw, 70px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -1.7px;
}

.bt-hero h1 span {
    color: var(--bt-gold);
}

.bt-hero-text {
    max-width: 640px;
    margin: 0 0 30px;

    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.75;
}

.bt-hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.bt-btn {
    min-height: 52px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;
    text-decoration: none !important;

    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}

.bt-btn-gold {
    background: var(--bt-orange);
    color: #fff !important;
}

.bt-btn-gold:hover {
    background: #e5a947;
    color: #fff !important;
    transform: translateY(-2px);
}

.bt-btn-outline {
    border: 1px solid rgba(255,255,255,.60);
    background: rgba(255,255,255,.06);
    color: #fff !important;
}

.bt-btn-outline:hover {
    background: rgba(255,255,255,.14);
    color: #fff !important;
}

.bt-btn-dark {
    background: var(--bt-green);
    color: #fff !important;
}

.bt-btn-dark:hover {
    background: #0d2c2c;
    color: #fff !important;
    transform: translateY(-2px);
}

.bt-trust-points {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 13px 28px;
}

.bt-trust-points div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255,255,255,.90);
    font-size: 12px;
}

.bt-trust-points b {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(198,161,91,.7);
    border-radius: 50%;

    color: var(--bt-gold);
    font-size: 11px;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.bt-form-card {
    padding: 34px;
    background: rgba(255,255,255,.97);
    border-radius: 10px;
    box-shadow: 0 25px 70px rgba(0,0,0,.30);
}

.bt-form-heading {
    margin-bottom: 23px;
}

.bt-form-heading small {
    display: block;
    margin-bottom: 7px;

    color: var(--bt-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bt-form-heading h2 {
    margin: 0 0 8px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
}

.bt-form-heading p {
    margin: 0;
    color: var(--bt-muted);
    font-size: 12px;
    line-height: 1.6;
}

.bt-form {
    display: grid;
    gap: 13px;
}

.bt-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bt-field label {
    display: block;
    margin-bottom: 6px;

    color: #344144;
    font-size: 10px;
    font-weight: 800;
}

.bt-field input,
.bt-field select {
    width: 100%;
    height: 45px;

    padding: 0 12px;

    border: 1px solid #dfe4e3;
    border-radius: 4px;
    outline: none;

    background: #fff;
    color: var(--bt-text);

    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
}

.bt-field input:focus,
.bt-field select:focus {
    border-color: var(--bt-gold);
    box-shadow: 0 0 0 3px rgba(198,161,91,.12);
}

.bt-submit {
    width: 100%;
    height: 51px;
    margin-top: 3px;

    border: 0;
    border-radius: 4px;

    background: var(--bt-green);
    color: #fff;

    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;

    cursor: pointer;
}

.bt-submit:hover {
    background: #0d2c2c;
}

.bt-form-note {
    text-align: center;
    color: #92999a;
    font-size: 9px;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.bt-trust-bar {
    background: var(--bt-green);
    color: #fff;
}

.bt-trust-grid {
    min-height: 115px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.bt-trust-grid > div {
    padding: 0 27px;
    border-right: 1px solid rgba(255,255,255,.13);
}

.bt-trust-grid > div:first-child {
    padding-left: 0;
}

.bt-trust-grid > div:last-child {
    border-right: 0;
}

.bt-trust-grid strong {
    display: block;
    margin-bottom: 6px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
}

.bt-trust-grid span {
    display: block;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.bt-section {
    padding: 100px 0;
    background: #fff;
}

.bt-light {
    background: var(--bt-light);
}

.bt-cream {
    background: var(--bt-cream);
}

.bt-section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
}

.bt-section-heading > span,
.bt-inclusion-intro > span,
.bt-cost-box > div > span,
.bt-final-cta > div > span {
    display: block;
    margin-bottom: 10px;

    color: var(--bt-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.bt-section-heading h2 {
    margin: 0 0 15px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 49px);
    font-weight: 600;
    line-height: 1.12;
}

.bt-section-heading p {
    max-width: 650px;
    margin: 0;

    color: var(--bt-muted);
    font-size: 14px;
    line-height: 1.75;
}

.bt-heading-row {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bt-heading-row > div {
    max-width: 650px;
}

.bt-heading-row > p {
    max-width: 370px;
}


/* =========================================================
   DESTINATION CARDS
   ========================================================= */

.bt-destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bt-place-card {
    min-height: 390px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: end;

    padding: 24px;

    border-radius: 7px;

    background:
        linear-gradient(
            0deg,
            rgba(5,24,24,.88),
            rgba(5,24,24,.05) 65%
        ),
        linear-gradient(135deg,#466d65,#172f2e);

    transition: .4s ease;
}

.bt-place-card:hover {
    transform: translateY(-5px);
}

.bt-place-card > div {
    color: #fff;
}

.bt-place-card small {
    color: var(--bt-gold);
    font-size: 10px;
    font-weight: 800;
}

.bt-place-card h3 {
    margin: 8px 0 7px;

    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
}

.bt-place-card p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   PACKAGES
   ========================================================= */


/* =========================================================
   INCLUSIONS
   ========================================================= */

.bt-inclusion-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.bt-inclusion-intro h2 {
    margin: 0 0 17px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 43px;
    line-height: 1.13;
}

.bt-inclusion-intro > p {
    max-width: 430px;
    margin: 0 0 25px;

    color: var(--bt-muted);
    font-size: 13px;
    line-height: 1.7;
}

.bt-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bt-inclusions > div {
    padding: 25px 25px 25px 0;
    border-bottom: 1px solid #deddd6;
}

.bt-inclusions > div:nth-child(odd) {
    margin-right: 25px;
    padding-right: 25px;
    border-right: 1px solid #deddd6;
}

.bt-inclusions b {
    color: var(--bt-gold);
    font-size: 10px;
}

.bt-inclusions h3 {
    margin: 7px 0;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.bt-inclusions p {
    margin: 0;
    color: var(--bt-muted);
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   COST
   ========================================================= */

.bt-cost {
    padding: 90px 0;
    background: var(--bt-green);
}

.bt-cost-box {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 70px;
    align-items: center;
}

.bt-cost-box > div > span {
    color: var(--bt-gold);
}

.bt-cost-box h2 {
    margin: 0 0 17px;

    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 45px;
    line-height: 1.12;
}

.bt-cost-box p {
    max-width: 680px;
    margin: 0 0 12px;

    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.7;
}

.bt-sdf {
    margin-top: 24px;
    padding: 17px;

    border-left: 2px solid var(--bt-gold);
    background: rgba(255,255,255,.05);
}

.bt-sdf strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 11px;
}

.bt-sdf span {
    color: rgba(255,255,255,.58);
    font-size: 10px;
    line-height: 1.5;
}

.bt-cost-cta {
    padding: 30px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px;
    text-align: center;
}

.bt-cost-cta strong {
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.bt-benefits {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.bt-benefits > div {
    padding: 10px 30px;
    border-right: 1px solid #e4e5e1;
}

.bt-benefits > div:first-child {
    padding-left: 0;
}

.bt-benefits > div:last-child {
    border-right: 0;
}

.bt-benefits span {
    color: var(--bt-gold);
    font-size: 10px;
    font-weight: 800;
}

.bt-benefits h3 {
    margin: 12px 0 8px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.bt-benefits p {
    margin: 0;

    color: var(--bt-muted);
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.bt-gallery-section {
    padding: 100px 0;
    background: #fff;
}

.bt-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
}

.bt-gallery-item {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: end;
    padding: 20px;

    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;

    border-radius: 6px;

    background:
        linear-gradient(0deg,rgba(0,0,0,.55),transparent),
        linear-gradient(135deg,#54766d,#203e3d);
}

.bt-gallery-item:nth-child(1) {
    grid-row: span 2;
}

.bt-gallery-item:nth-child(4) {
    grid-column: span 2;
}


/* =========================================================
   PROCESS
   ========================================================= */

.bt-process {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}

.bt-process > div {
    position: relative;
    padding: 20px 28px;
    border-right: 1px solid #dddcd5;
}

.bt-process > div:first-child {
    padding-left: 0;
}

.bt-process > div:last-child {
    border-right: 0;
}

.bt-process span {
    color: var(--bt-gold);
    font-size: 11px;
    font-weight: 800;
}

.bt-process h3 {
    margin: 12px 0 8px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
}

.bt-process p {
    margin: 0;
    color: var(--bt-muted);
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   FAQ
   ========================================================= */

.bt-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.bt-faq-intro > span {
    color: var(--bt-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bt-faq-intro h2 {
    margin: 10px 0 15px;

    color: var(--bt-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 43px;
    line-height: 1.13;
}

.bt-faq-intro p {
    max-width: 400px;
    margin: 0 0 25px;

    color: var(--bt-muted);
    font-size: 12px;
    line-height: 1.7;
}

.bt-faq {
    border-top: 1px solid #deded9;
}

.bt-faq details {
    border-bottom: 1px solid #deded9;
}

.bt-faq summary {
    position: relative;
    padding: 19px 40px 19px 0;

    color: var(--bt-green);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    list-style: none;
}

.bt-faq summary::-webkit-details-marker {
    display: none;
}

.bt-faq summary::after {
    content: "+";

    position: absolute;
    right: 2px;
    top: 16px;

    color: var(--bt-gold);
    font-size: 20px;
    font-weight: 400;
}

.bt-faq details[open] summary::after {
    content: "−";
}

.bt-faq details p {
    margin: -3px 40px 19px 0;

    color: var(--bt-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.bt-final-cta {
    padding: 110px 0;
    text-align: center;

    background:
        linear-gradient(
            rgba(7,31,31,.91),
            rgba(7,31,31,.91)
        ),
        linear-gradient(135deg,#50746b,#1c3c3b);
}

.bt-final-cta > div {
    max-width: 750px;
}

.bt-final-cta > div > span {
    color: var(--bt-gold);
}

.bt-final-cta h2 {
    margin: 0 0 13px;

    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px,5vw,58px);
}

.bt-final-cta p {
    margin: 0 auto 27px;

    color: rgba(255,255,255,.70);
    font-size: 14px;
}

.bt-final-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.bt-footer {
    background: #061818;
    color: #fff;
}

.bt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 80px;
    padding: 70px 0;
}

.bt-footer-logo {
    margin-bottom: 15px;
    color: #fff !important;
}

.bt-footer-grid p {
    max-width: 390px;
    margin: 0;

    color: rgba(255,255,255,.54);
    font-size: 11px;
    line-height: 1.7;
}

.bt-footer-grid h4 {
    margin: 0 0 17px;

    color: var(--bt-gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bt-footer-grid a {
    display: block;
    margin-bottom: 10px;

    color: rgba(255,255,255,.62) !important;
    text-decoration: none !important;

    font-size: 11px;
}

.bt-footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.38);
    font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */


/* =========================================================
   ELEMENTOR / FULL WIDTH RESET
   ========================================================= */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

body.elementor-page,
body.elementor-page #page,
body.elementor-page .site,
body.elementor-page .site-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.elementor,
.elementor .e-con,
.elementor .e-con-inner {
    margin-top: 0 !important;
}

.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

.bhutan-page {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.bhutan-page .bt-header,
.bhutan-page .bt-hero,
.bhutan-page .bt-trust-bar,
.bhutan-page .bt-section,
.bhutan-page .bt-explore,
.bhutan-page .bt-cost,
.bhutan-page .bt-reviews,
.bhutan-page .bt-gallery-section,
.bhutan-page .bt-final-cta,
.bhutan-page .bt-footer {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Header / logo sizing */
.bt-header {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.bt-header-inner {
    min-height: 70px !important;
    height: 70px !important;
}

.bt-logo {
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    height: 100% !important;
    overflow: visible !important;
}

.bt-logo img {
    display: block !important;
    width: auto !important;
    height: 50px !important;
    max-width: 170px !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bt-header-actions {
    display: flex !important;
    align-items: center !important;
}


/* =========================================================
   CONTENT IMAGES
   Replace temporary URLs here when final client images are ready.
   ========================================================= */

.bt-hero {
    background-image:
        linear-gradient(90deg, rgba(4,27,27,.88) 0%, rgba(4,27,27,.68) 45%, rgba(4,27,27,.38) 100%),
        url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/LachlanGardiner_WorldExpeditions_Bhutan_Punakha-Area_2025-1195225-8140187-1920px.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-place-1 {
    background-image:
        linear-gradient(0deg,rgba(5,24,24,.82),rgba(5,24,24,.08)),
        url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images.jpeg") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-place-2 {
    background-image:
        linear-gradient(0deg,rgba(5,24,24,.82),rgba(5,24,24,.08)),
        url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/1751106323790-best-time-to-visit-punakha-dzong-bhutan.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-place-3 {
    background-image:
        linear-gradient(0deg,rgba(5,24,24,.82),rgba(5,24,24,.08)),
        url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-6.jpeg") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-place-4 {
    background-image:
        linear-gradient(0deg,rgba(5,24,24,.82),rgba(5,24,24,.08)),
        url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-7.jpeg") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-img-a {
    background-image:
        linear-gradient(0deg,rgba(0,0,0,.40),transparent),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-img-b {
    background-image:
        linear-gradient(0deg,rgba(0,0,0,.40),transparent),
        url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1200&q=80") !important;
    background-size: cover !important;
    background-position: center !important;
}

.bt-img-c {
    background-image:
        linear-gradient(0deg,rgba(0,0,0,.40),transparent),
        url("https://images.unsplash.com/photo-1483347756197-71ef80e95f73?auto=format&fit=crop&w=1200&q=80") !important;
    background-size: cover !important;
    background-position: center !important;
}





.bt-gallery-item {
    background-size: cover !important;
    background-position: center !important;
}

.bt-g1 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=1200&q=80") !important; }
.bt-g2 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images.jpeg") !important; }
.bt-g3 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-10.jpeg") !important; }
.bt-g4 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-9.jpeg") !important; }
.bt-g5 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-11.jpeg") !important; }
.bt-g6 { background-image: linear-gradient(0deg,rgba(0,0,0,.48),transparent), url("https://bhutanfirsttours.com/wp-content/uploads/2026/09/images-12.jpeg") !important; }


.bt-explore {
    position: relative;
    width: 100%;
    padding: 110px 0;
    background: #0b302f;
    overflow: hidden;
}

.bt-explore .bt-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}


/* ---------- Heading ---------- */

.bt-white-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.bt-white-heading > span {
    display: block;
    margin-bottom: 14px;
    color: #d6a243;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.bt-white-heading h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 500;
}

.bt-white-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}


/* ---------- Grid ---------- */

.bt-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* ---------- Destination Card ---------- */

.bt-destination-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.bt-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0,0,0,.25);
}


/* ---------- Image ---------- */

.bt-destination-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: #173f3d;
}

.bt-destination-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.bt-destination-card:hover .bt-destination-image img {
    transform: scale(1.06);
}


/* ---------- Number ---------- */

.bt-destination-number {
    position: absolute;
    top: 18px;
    left: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #d6a243;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ---------- Content ---------- */

.bt-destination-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 30px 32px;
}

.bt-destination-label {
    display: block;
    margin-bottom: 8px;

    color: #c49338;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bt-destination-content h3 {
    margin: 0 0 12px;

    color: #103b3a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
}

.bt-destination-content p {
    margin: 0 0 25px;

    color: #667b7a;

    font-size: 14px;
    line-height: 1.75;
}


/* ---------- CTA ---------- */

.bt-destination-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;
    margin-top: auto;

    color: #103b3a;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: color .25s ease, gap .25s ease;
}

.bt-destination-content a span {
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease;
}

.bt-destination-content a:hover {
    color: #c49338;
}

.bt-destination-content a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   4th & 5th CARD
   Center them nicely on desktop
   ========================================================= */

.bt-explore-grid .bt-destination-card:nth-child(4) {
    grid-column: 1 / 2;
}

.bt-explore-grid .bt-destination-card:nth-child(5) {
    grid-column: 2 / 3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .bt-explore {
        padding: 90px 0;
    }

    .bt-explore .bt-container {
        width: min(100% - 50px, 760px);
    }

    .bt-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bt-explore-grid .bt-destination-card:nth-child(4),
    .bt-explore-grid .bt-destination-card:nth-child(5) {
        grid-column: auto;
    }

    .bt-destination-image {
        height: 250px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bt-explore {
        padding: 75px 0;
    }

    .bt-explore .bt-container {
        width: calc(100% - 32px);
    }

    .bt-white-heading {
        margin-bottom: 38px;
    }

    .bt-white-heading > span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .bt-white-heading h2 {
        font-size: 36px;
        line-height: 1.12;
    }

    .bt-white-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .bt-explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bt-explore-grid .bt-destination-card:nth-child(4),
    .bt-explore-grid .bt-destination-card:nth-child(5) {
        grid-column: auto;
    }

    .bt-destination-image {
        height: 235px;
    }

    .bt-destination-content {
        padding: 26px 24px 28px;
    }

    .bt-destination-content h3 {
        font-size: 27px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .bt-explore .bt-container {
        width: calc(100% - 24px);
    }

    .bt-destination-image {
        height: 215px;
    }

    .bt-destination-content {
        padding: 23px 20px 25px;
    }

    .bt-destination-content h3 {
        font-size: 25px;
    }

}
/* =========================================================
   BHUTAN PACKAGES
   ========================================================= */

.bt-packages-section {
    background: #ffffff;
}

.bt-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* ---------- PACKAGE CARD ---------- */

.bt-package {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4e8e7;
    border-radius: 4px;
    overflow: hidden;
    transition: .35s ease;
}

.bt-package:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12, 48, 47, .12);
}

.bt-package-featured {
    border: 1.5px solid #e0a33a;
}


/* ---------- IMAGE ---------- */

.bt-package-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.bt-package-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.bt-package:hover .bt-package-image img {
    transform: scale(1.05);
}


/* ---------- MOST BOOKED ---------- */

.bt-most-booked {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 7px 13px;

    border-radius: 20px;

    background: #f58220;
    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}


/* ---------- BODY ---------- */

.bt-package-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px 24px 20px;
}

.bt-package-duration {
    margin-bottom: 9px;

    color: #777f80;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bt-package-body h3 {
    margin: 0 0 8px;

    color: #103b3a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bt-package-route {
    min-height: 35px;
    margin-bottom: 14px;

    color: #55a7d2;

    font-size: 9px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.bt-package-body p {
    margin: 0 0 14px;

    color: #687b7b;

    font-size: 13px;
    line-height: 1.55;
}

.bt-package-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bt-package-body li {
    position: relative;

    margin: 0 0 9px;
    padding-left: 18px;

    color: #657777;

    font-size: 12px;
}

.bt-package-body li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #62b8df;

    font-weight: 700;
}


/* ---------- BUTTONS ---------- */

.bt-package-actions {
    display: flex;
    gap: 10px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid #e5e9e8;
}

.bt-view-btn,
.bt-enquire-btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    border-radius: 22px;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.bt-view-btn {
    border: 1px solid #dce2e1;
    color: #385756;
    background: #ffffff;
}

.bt-view-btn:hover {
    border-color: #103b3a;
    color: #103b3a;
}

.bt-enquire-btn {
    border: 1px solid #3ca6d5;
    background: #3ca6d5;
    color: #ffffff;
}

.bt-enquire-btn:hover {
    background: #238bb9;
    border-color: #238bb9;
}


/* =========================================================
   EXPERIENCE CARDS
   ========================================================= */

.bt-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 55px;
}

.bt-experience-card {
    position: relative;

    height: 330px;

    overflow: hidden;
    border-radius: 6px;

    background: #103b3a;
}

.bt-experience-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.bt-experience-card:hover img {
    transform: scale(1.07);
}

.bt-experience-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.05) 100%
        );

    color: #ffffff;
}

.bt-experience-overlay > span {
    margin-bottom: 8px;

    color: #d9a444;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bt-experience-overlay h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
}

.bt-experience-overlay p {
    max-width: 330px;

    margin: 0 0 17px;

    color: rgba(255,255,255,.82);

    font-size: 12px;
    line-height: 1.6;
}

.bt-experience-overlay a {
    width: fit-content;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.bt-experience-overlay a:hover {
    color: #d9a444;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .bt-packages-grid,
    .bt-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bt-package:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bt-packages-grid,
    .bt-experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bt-package:last-child {
        grid-column: auto;
        max-width: none;
    }

    .bt-package-image {
        height: 230px;
    }

    .bt-package-body {
        padding: 22px 20px 19px;
    }

    .bt-package-body h3 {
        font-size: 25px;
    }

    .bt-package-actions {
        margin-top: 17px;
    }

    .bt-experience-grid {
        margin-top: 35px;
    }

    .bt-experience-card {
        height: 300px;
    }

    .bt-experience-overlay {
        padding: 24px;
    }

}
/* =========================================================
   REAL TRAVELLER REVIEWS
   ========================================================= */

.bt-reviews {
    width: 100%;
    padding: 110px 0;
    background: #eef3f5;
}

.bt-reviews .bt-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

.bt-review-platforms {
    display: flex;
    flex-direction: column;
    gap: 28px;
}


/* ---------- PLATFORM ---------- */

.bt-review-platform {
    display: grid;
    grid-template-columns: 180px 1fr;

    background: #ffffff;

    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 8px 25px rgba(15, 55, 54, .07);
}


/* ---------- SUMMARY ---------- */

.bt-platform-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px 18px;

    text-align: center;

    border-right: 1px solid #e3e9e8;
}

.bt-platform-summary strong {
    margin-top: 15px;

    color: #193f3e;

    font-size: 14px;
    letter-spacing: 1px;
}

.bt-platform-summary > span {
    margin-top: 7px;

    color: #829090;

    font-size: 10px;
}


/* ---------- LOGOS ---------- */

.bt-platform-logo {
    font-weight: 800;
    font-size: 19px;
}

.bt-google-logo {
    color: #4285f4;
}

.bt-trip-logo {
    color: #00a680;
}


/* ---------- STARS ---------- */

.bt-stars {
    margin-top: 5px;

    color: #f4b400;

    font-size: 17px;
    letter-spacing: 1px;
}

.bt-trip-stars {
    margin-top: 5px;

    color: #00a680;

    font-size: 15px;
    letter-spacing: 2px;
}


/* ---------- REVIEW CARDS ---------- */

.bt-review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bt-review-card {
    min-width: 0;

    padding: 24px 22px;

    border-right: 1px solid #e7eceb;
}

.bt-review-card:last-child {
    border-right: 0;
}


/* ---------- REVIEW TOP ---------- */

.bt-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-review-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #e7eeee;

    color: #365d5b;

    font-size: 13px;
    font-weight: 700;
}

.bt-review-top > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.bt-review-top strong {
    display: block;

    color: #263d3c;

    font-size: 11px;
    line-height: 1.3;
}

.bt-review-top small {
    display: block;

    margin-top: 2px;

    color: #8b9797;

    font-size: 9px;
}

.bt-google-mark,
.bt-trip-mark {
    font-size: 14px;
    font-weight: 800;
}

.bt-google-mark {
    color: #4285f4;
}

.bt-trip-mark {
    color: #00a680;
}


/* ---------- REVIEW TEXT ---------- */

.bt-review-card .bt-review-stars {
    margin: 11px 0 9px;

    color: #f4b400;

    font-size: 12px;
    letter-spacing: 1px;
}

.bt-review-card .bt-trip-stars {
    margin: 11px 0 9px;

    font-size: 11px;
}

.bt-review-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;

    margin: 0;

    color: #596d6c;

    font-size: 11px;
    line-height: 1.6;
}

.bt-read-more {
    display: block;

    margin-top: 8px;

    color: #758383;

    font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .bt-review-platform {
        grid-template-columns: 150px 1fr;
    }

    .bt-review-cards {
        grid-template-columns: 1fr;
    }

    .bt-review-card {
        border-right: 0;
        border-bottom: 1px solid #e7eceb;
    }

    .bt-review-card:last-child {
        border-bottom: 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .bt-reviews {
        padding: 75px 0;
    }

    .bt-reviews .bt-container {
        width: calc(100% - 32px);
    }

    .bt-review-platform {
        display: block;
    }

    .bt-platform-summary {
        border-right: 0;
        border-bottom: 1px solid #e3e9e8;

        padding: 25px 15px;
    }

    .bt-review-card {
        padding: 21px 18px;
    }

}

/* =========================================================
   RESPONSIVE — SHARED / CORE SECTIONS
   ========================================================= */

@media (max-width: 1024px) {
    .bt-container {
        width: min(100% - 40px, 900px);
    }

    .bt-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bt-form-card {
        width: min(100%, 600px);
        margin: auto;
    }

    .bt-trust-grid {
        grid-template-columns: 1fr 1fr;
        padding: 25px 0;
    }

    .bt-trust-grid > div {
        padding: 15px 20px;
    }

    .bt-destination-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bt-inclusion-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bt-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .bt-benefits > div {
        margin-bottom: 30px;
    }

    .bt-cost-box {
        grid-template-columns: 1fr;
    }

    .bt-faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .bt-container {
        width: calc(100% - 34px);
    }

    .bt-header-inner {
        min-height: 76px !important;
        height: 76px !important;
    }

    .bt-logo {
        font-size: 20px;
    }

    .bt-logo img {
        height: 58px !important;
        max-height: 58px !important;
        max-width: 130px !important;
    }

    .bt-head-link {
        display: none;
    }

    .bt-header-actions {
        gap: 7px;
    }

    .bt-whatsapp,
    .bt-quote-btn {
        min-height: 38px;
        padding: 0 9px !important;
        font-size: 10px;
    }

    .bt-hero {
        min-height: auto;
    }

    .bt-hero-grid {
        padding: 55px 0 45px;
        gap: 35px;
    }

    .bt-eyebrow {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .bt-eyebrow::before {
        width: 25px;
    }

    .bt-hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .bt-hero-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .bt-hero-buttons {
        flex-direction: column;
    }

    .bt-btn {
        width: 100%;
    }

    .bt-trust-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bt-form-card {
        padding: 25px 20px;
    }

    .bt-form-two {
        grid-template-columns: 1fr;
    }

    .bt-trust-grid {
        grid-template-columns: 1fr;
        padding: 18px 0;
    }

    .bt-trust-grid > div,
    .bt-trust-grid > div:first-child {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .bt-trust-grid > div:last-child {
        border-bottom: 0;
    }

    .bt-section,
    .bt-gallery-section {
        padding: 70px 0;
    }

    .bt-section-heading {
        margin-bottom: 32px;
    }

    .bt-section-heading h2 {
        font-size: 35px;
    }

    .bt-heading-row {
        display: block;
    }

    .bt-heading-row > p {
        margin-top: 15px;
    }

    .bt-destination-grid {
        grid-template-columns: 1fr;
    }

    .bt-place-card {
        min-height: 350px;
    }

    .bt-inclusion-intro h2,
    .bt-faq-intro h2 {
        font-size: 35px;
    }

    .bt-inclusions {
        grid-template-columns: 1fr;
    }

    .bt-inclusions > div,
    .bt-inclusions > div:nth-child(odd) {
        margin-right: 0;
        padding-right: 0;
        border-right: 0;
    }

    .bt-cost {
        padding: 70px 0;
    }

    .bt-cost-box h2 {
        font-size: 35px;
    }

    .bt-benefits {
        grid-template-columns: 1fr;
    }

    .bt-benefits > div,
    .bt-benefits > div:first-child {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid #e4e5e1;
    }

    .bt-benefits > div:last-child {
        border-bottom: 0;
    }

    .bt-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .bt-gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .bt-gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .bt-process {
        grid-template-columns: 1fr;
    }

    .bt-process > div,
    .bt-process > div:first-child {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid #dddcd5;
    }

    .bt-process > div:last-child {
        border-bottom: 0;
    }

    .bt-faq-layout {
        gap: 35px;
    }

    .bt-final-cta {
        padding: 80px 0;
    }

    .bt-final-buttons {
        flex-direction: column;
    }

    .bt-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 55px 0;
    }
}
/* =========================================================
   BHUTAN FIRST TOUCH — CLEAN HEADER LOGO
   ========================================================= */

.bt-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
}

.bt-logo img {
    display: block !important;
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bt-logo-text {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.bt-logo-text strong {
    display: block !important;
    color: #d6a243 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.bt-logo-text small {
    display: block !important;
    margin-top: 5px !important;
    color: #d6a243 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    white-space: nowrap !important;
}


/* ---------- MOBILE LOGO ---------- */

@media (max-width: 650px) {

    .bt-logo {
        gap: 7px !important;
    }

    .bt-logo img {
        width: 55px !important;
        height: 55px !important;
    }

    .bt-logo-text strong {
        font-size: 12px !important;
        letter-spacing: .7px !important;
    }

    .bt-logo-text small {
        margin-top: 5px !important;
        font-size: 7px !important;
        letter-spacing: 1.2px !important;
    }

}

/* =========================================================
   HOME HEADER - FINAL SPACING FIX
   Match the clean spacing of Thank You header
   ========================================================= */

.bhutan-page .bt-header {
    width: 100% !important;
    background: #fff !important;
}

.bhutan-page .bt-header-inner {
    width: calc(100% - 54px) !important;
    max-width: none !important;

    min-height: 86px !important;
    height: 86px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 30px !important;
}


/* ---------- LOGO ---------- */

.bhutan-page .bt-logo {
    display: flex !important;
    align-items: center !important;

    flex-shrink: 0 !important;
}

.bhutan-page .bt-logo img {
    height: 52px !important;
    width: 52px !important;

    max-width: 180px !important;
    max-height: 58px !important;

    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ---------- RIGHT ACTIONS ---------- */

.bhutan-page .bt-header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 14px !important;
    flex-shrink: 0 !important;
}


/* Call Us */

.bhutan-page .bt-head-link {
    padding: 11px 12px !important;
    white-space: nowrap !important;
}


/* WhatsApp + Quote */

.bhutan-page .bt-whatsapp,
.bhutan-page .bt-quote-btn {
    min-height: 46px !important;
    padding: 0 20px !important;

    white-space: nowrap !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .bhutan-page .bt-header-inner {
        width: calc(100% - 28px) !important;
        min-height: 70px !important;
        height: 70px !important;

        gap: 10px !important;
    }

    .bhutan-page .bt-logo img {
        height: 45px !important;
        max-width: 155px !important;
    }

    .bhutan-page .bt-header-actions {
        gap: 6px !important;
    }

    .bhutan-page .bt-head-link {
        padding: 8px 5px !important;
        font-size: 11px !important;
    }

    .bhutan-page .bt-whatsapp,
    .bhutan-page .bt-quote-btn {
        min-height: 38px !important;
        padding: 0 9px !important;
        font-size: 10px !important;
    }
}
/* =========================================================
   HOME FOOTER - MATCH THANK YOU PAGE
   ========================================================= */

.bhutan-page .bt-footer {
    width: 100% !important;
    background: #061817 !important;
    color: rgba(255,255,255,.72) !important;
}

.bhutan-page .bt-footer-grid {
    width: min(1200px, calc(100% - 80px)) !important;
    margin: 0 auto !important;

    padding: 65px 0 !important;

    display: grid !important;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr !important;

    gap: 45px !important;
}


/* ---------- COMPANY ---------- */

.bhutan-page .bt-footer-logo {
    margin-bottom: 18px !important;

    color: #ffffff !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 25px !important;
    font-weight: 600 !important;
}

.bhutan-page .bt-footer-logo span {
    color: #d6a243 !important;
}

.bhutan-page .bt-footer-brand p {
    max-width: 440px !important;

    margin: 0 !important;

    color: rgba(255,255,255,.62) !important;

    font-size: 14px !important;
    line-height: 1.8 !important;
}


/* ---------- HEADINGS ---------- */

.bhutan-page .bt-footer-links h4,
.bhutan-page .bt-footer-contact h4 {
    margin: 0 0 22px !important;

    color: #d6a243 !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}


/* ---------- LINKS ---------- */

.bhutan-page .bt-footer-links a {
    display: block !important;

    width: fit-content !important;

    margin-bottom: 13px !important;

    color: rgba(255,255,255,.68) !important;

    text-decoration: none !important;

    font-size: 14px !important;
    line-height: 1.6 !important;

    transition: color .25s ease !important;
}

.bhutan-page .bt-footer-links a:hover {
    color: #d6a243 !important;
}


/* ---------- CONTACT ---------- */

.bhutan-page .bt-footer-contact p {
    margin: 0 0 16px !important;

    color: rgba(255,255,255,.68) !important;

    font-size: 14px !important;
    line-height: 1.7 !important;
}

.bhutan-page .bt-footer-contact p strong {
    color: #ffffff !important;
}

.bhutan-page .bt-footer-contact a {
    color: rgba(255,255,255,.68) !important;
    text-decoration: none !important;
    font-size: 13px;
}

.bhutan-page .bt-footer-contact a:hover {
    color: #d6a243 !important;
}


/* ---------- BOTTOM ---------- */

.bhutan-page .bt-footer-bottom {
    width: 100% !important;

    border-top: 1px solid rgba(255,255,255,.08) !important;
}

.bhutan-page .bt-footer-bottom .bt-container {
    width: min(1200px, calc(100% - 80px)) !important;
    margin: 0 auto !important;

    padding: 20px 0 !important;

    color: rgba(255,255,255,.45) !important;

    font-size: 12px !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .bhutan-page .bt-footer-grid {
        width: calc(100% - 40px) !important;

        grid-template-columns: 1fr !important;

        gap: 35px !important;

        padding: 50px 0 !important;
    }

    .bhutan-page .bt-footer-brand p {
        max-width: 100% !important;
    }

    .bhutan-page .bt-footer-links a {
        margin-bottom: 10px !important;
    }

    .bhutan-page .bt-footer-bottom .bt-container {
        width: calc(100% - 40px) !important;

        padding: 18px 0 !important;
    }

}/* End custom CSS */