/* Custom typography and brand style override */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #bfa37b;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #a3875e;
}

.cursive-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 42px;
    color: #bfa37b;
    line-height: 1.2;
}

/* Hero slide layering — the poster image (.image-12) is a screenshot that has
   a video player's control bar baked in, and is meant to sit BEHIND an
   autoplaying background video. layout.css hides .background-video-3, which
   exposes that baked-in control bar. Re-enable the video and stack it over the
   poster so the hero matches the live site. */
.custom-slide .image-12 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.custom-slide .background-video-3 {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.custom-slide .video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Hero Slider with opacity cross-fade transition */
.custom-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.custom-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Slider Controls (Play overlay & custom arrows/dots) */
.slider-arrow-left, .slider-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-arrow-left:hover, .slider-arrow-right:hover {
    background-color: rgba(191, 163, 123, 0.8);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-nav-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slider-dot.active {
    background-color: #bfa37b;
    transform: scale(1.3);
}

/* Featured Logo Marquee animation */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
}

.marquee-grid {
    display: grid !important;
    flex: 0 0 auto;
    animation: marquee-grid-loop 35s linear infinite;
}

@keyframes marquee-grid-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-grid .marquee-logos {
    transition: transform 0.3s;
    justify-self: center;
    align-self: center;
}

.marquee-grid .marquee-logos:hover {
    transform: scale(1.05);
}

/* Pinterest Grid Styling */
.section-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 50px;
    padding-bottom: 100px;
    overflow: hidden;
}

.pinterestgrid {
    column-count: 2;
    column-gap: 8px;
}

.imagegrid {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: inline-block;
    break-inside: avoid;
    margin-bottom: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}


.imagegrid:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion block style */
.faq-item {
    border-bottom: 1px solid rgba(191, 163, 123, 0.25);
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-toggle:hover .faq-question {
    color: #bfa37b;
}

.faq-arrow {
    font-size: 10px;
    color: #999;
    transform: rotate(0deg);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #bfa37b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    padding-top: 12px;
    margin: 0;
    color: #5a5a5a;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* Background floating heart animations */
.background-heart-image {
    animation: float-heart 4s ease-in-out infinite;
}

.heart-2 {
    animation-delay: 2s;
}

@keyframes float-heart {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-12px) rotate(6deg) scale(1.04);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* CTA section — the couple cutout is a square (810x810) image. The grid row
   stretches the image column to match the taller text column, and the img's
   default object-fit (fill) then squishes the couple. Center the two columns
   and preserve the image's aspect ratio so it stays undistorted. */
.section-cta .grid-3 {
    align-items: center;
}

.section-cta .image-17 {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Social link hover effects */
.cta-social-media-wrapper {
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-social-media-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(191, 163, 123, 0.15);
}

/* Section 12 horizontal gallery rows — Webflow filmstrip parallax.
   The row is wider than the viewport and clipped; index.js drifts it
   horizontally (translateX) as the page scrolls, in alternating directions.
   Under reduced-motion this falls back to a manual horizontal scroll. */
.section-12 {
    background-color: #fdf8ed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.div-block-18, .div-block-20 {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;
    width: max-content;
    /* Don't let section-12's flex layout shrink the row to viewport width —
       keep its full content width so the JS translateX parallax can travel. */
    flex: 0 0 auto;
    height: 250px;
}

.div-block-18 {
    padding: 0 20px;
}

/* Every tile in a row — photos and the video tile — share one height */
.div-block-18 .image-6,
.div-block-20 .image-6,
.div-block-20 .lift-image,
.div-block-20 .lift-image .image-19 {
    max-height: 220px;
    height: 220px;
    width: auto;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Neutralize the video tile's Webflow parallax transform/positioning */
.div-block-20 .lift-image {
    position: relative;
    transform: none;
    display: block;
    overflow: hidden;
}

.div-block-18 .image-6:hover,
.div-block-20 .image-6:hover,
.div-block-20 .lift-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Custom Lightbox modal framework */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.custom-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 880px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2001;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.custom-lightbox.open .lightbox-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    transition: color 0.3s;
}

@media (max-width: 767px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        color: #fff;
        background: rgba(0,0,0,0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.lightbox-close:hover {
    color: #bfa37b;
}

.lightbox-content {
    width: 100%;
    height: 100%;
}

.lightbox-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Resources dropdown — Webflow normally hides this list and reveals it via its
   own JS (.w--open). That JS isn't loaded here, so without a base rule the links
   render inline. Hide by default and reveal on hover at desktop widths. */
@media (min-width: 992px) {
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-toggle {
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .nav-dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        padding: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        z-index: 50;
    }

    .nav-dropdown:hover .nav-dropdown-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ============================================================
   NAV DROPDOWNS — Refined, compact, per-item
   ============================================================ */
.mega-nav-item { position: relative; }

.mega-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.mega-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.4;
    margin-top: 1px;
}

.mega-nav-item.open .mega-chevron {
    transform: rotate(180deg);
    opacity: 0.65;
}

/* Per-item dropdown panel */
.mega-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.97);
    min-width: 200px;
    background: #ffffff;
    border: 1px solid rgba(191,163,123,0.15);
    border-top: 2px solid #bfa37b;
    box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 14px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1),
                transform 0.25s cubic-bezier(0.4,0,0.2,1),
                visibility 0s linear 0.25s;
    z-index: 999;
    pointer-events: none;
    overflow: hidden;
}

.mega-nav-item.open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1),
                transform 0.25s cubic-bezier(0.4,0,0.2,1);
    pointer-events: auto;
}

/* Multi-column panels */
.mega-panel-inner {
    padding: 18px 20px 16px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0 24px;
    white-space: nowrap;
}

/* ── Sub-menu: inline accordion under Pre-Wedding Photography ── */
.sub-nav-item { display: contents; }

/* The trigger link shows a rotating chevron */
.sub-has-menu {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    cursor: pointer;
}

.sub-has-menu svg {
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.25s ease, opacity 0.25s;
}

/* Destinations grid — hidden by default, expands on hover */
.sub-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity 0.25s ease,
                padding 0.25s ease;
    padding: 0 0 0 2px;
    border-left: 2px solid rgba(191,163,123,0.2);
    margin: 2px 0 4px 0;
}

.sub-panel .mega-col-label {
    grid-column: 1 / -1;
    font-size: 8px;
    margin-bottom: 6px;
    padding-bottom: 6px;
}

.sub-nav-item:hover .sub-panel,
.sub-nav-item:focus-within .sub-panel {
    max-height: 300px;
    opacity: 1;
    padding: 6px 0 6px 8px;
}

.sub-nav-item:hover .sub-has-menu svg,
.sub-nav-item:focus-within .sub-has-menu svg {
    transform: rotate(90deg);
    opacity: 0.7;
}

.sub-nav-item:hover .sub-has-menu,
.sub-nav-item:focus-within .sub-has-menu {
    color: #bfa37b !important;
}

/* Single-item sub-panel (e.g. International with just Dubai) */
.sub-panel-single {
    grid-template-columns: 1fr;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col + .mega-col {
    border-left: 1px solid rgba(191,163,123,0.12);
    padding-left: 20px;
}

.mega-col-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bfa37b !important;
    margin-bottom: 8px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(191,163,123,0.18);
}

.mega-link {
    font-family: 'Roboto', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #3a3a3a !important;
    text-decoration: none;
    padding: 4px 0;
    display: block;
    transition: color 0.15s;
    white-space: nowrap;
}

.mega-link:hover { color: #bfa37b !important; }

.mega-link-featured { font-weight: 500; }

.mega-link-all {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(191,163,123,0.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bfa37b !important;
    text-decoration: none;
}

.mega-link-all:hover { opacity: 0.7; }

/* Highlight column */
.mega-col-highlight {
    background: rgba(191,163,123,0.06);
    border-radius: 6px;
    padding: 10px 12px;
    border-left: none !important;
    margin-left: 4px;
}

/* No overlay needed for per-item dropdowns */
.mega-overlay { display: none !important; }

/* Active nav link */
.nav-link-active { color: #bfa37b !important; }

/* ============================================================
   ACCESSIBILITY — visible keyboard focus (WCAG 2.4.7)
   Mouse clicks stay clean (:focus-visible only fires for
   keyboard/AT navigation). Brand-gold ring for consistency.
   ============================================================ */
a:focus-visible,
button:focus-visible,
.location-chip:focus-visible,
.portfolio-item:focus-visible,
.faq-toggle:focus-visible,
.slider-dot:focus-visible,
.lightbox-trigger:focus-visible {
    outline: 3px solid #bfa37b;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   HOMEPAGE RESTRUCTURE — shared section scaffolding
   Brand palette: gold #bfa37b / #a3875e, ink #1a1a1a,
   muted #5a5a5a, cream #faf7f2
   ============================================================ */
.home-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-soft {
    max-width: none;
    background: #faf7f2;
}

.section-soft > .section-head,
.section-soft > .portfolio-grid,
.section-soft > .about-grid,
.section-soft > .locations-grid,
.section-soft > .section-cta-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #bfa37b;
    margin-bottom: 14px;
}

.section-eyebrow.light { color: #e7d4b5; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.section-title-left { text-align: left; }
.section-title-light { color: #fff; }

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.section-cta-row {
    text-align: center;
    margin-top: 48px;
}

.btn-outline-gold {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #a3875e;
    border: 2px solid #bfa37b;
    border-radius: 14px;
    padding: 14px 38px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline-gold:hover {
    background: #bfa37b;
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- 2. Trust Bar ---------- */
.trust-bar {
    background: #ffffff;
    border-top: 1px solid rgba(191, 163, 123, 0.18);
    border-bottom: 1px solid rgba(191, 163, 123, 0.18);
    padding: 64px 24px;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trust-stat {
    flex: 1;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 16px 8px;
    border-radius: 12px;
}

.trust-stat:hover {
    background-color: rgba(191, 163, 123, 0.08);
}

.trust-icon-wrapper {
    color: #bfa37b;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.trust-stat:hover .trust-icon-wrapper {
    transform: scale(1.15);
}

.trust-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: #bfa37b;
    line-height: 1;
}

.trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cfcfcf;
    margin-top: 10px;
}

.trust-divider {
    width: 1px;
    height: 46px;
    background: rgba(191, 163, 123, 0.35);
    flex: 0 0 auto;
}

/* ---------- 3. Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(191, 163, 123, 0.18);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #bfa37b;
}

.service-icon {
    font-size: 34px;
    margin-bottom: 18px;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.service-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

/* ---------- 4. Portfolio Preview ---------- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.portfolio-item img {
    width: 100%;
    /* Overfill vertically (container is overflow:hidden) so the scroll-parallax
       `translate` drift never exposes the container edge. ~±26px of drift, so
       52px of headroom split top/bottom. */
    height: calc(100% + 52px);
    margin-top: -26px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);
}

/* ---------- 5. Case Studies ---------- */
.case-study-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.case-study-reverse .case-study-media { order: 2; }

.case-study-media {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.case-study-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #bfa37b;
    border-radius: 20px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.case-study-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.case-study-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #5a5a5a;
    margin: 0 0 22px;
}

.case-study-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a3875e;
    text-decoration: none;
    transition: letter-spacing 0.3s;
}

.case-study-link:hover { letter-spacing: 0.5px; }

/* ---------- 6. About Snippet ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #5a5a5a;
    margin: 0 0 18px;
}

.about-content .btn-outline-gold { margin-top: 8px; }

/* ---------- 7. Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    text-align: center;
    padding: 24px 18px;
}

.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.why-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #5a5a5a;
    margin: 0;
}

/* ---------- 8. Locations ---------- */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.location-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(191, 163, 123, 0.3);
    border-radius: 12px;
    padding: 22px 34px;
    min-width: 150px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.location-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(191, 163, 123, 0.18);
    border-color: #bfa37b;
}

.location-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a1a1a;
}

.location-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bfa37b;
    margin-top: 6px;
}

.location-featured {
    background: #bfa37b;
    border-color: #bfa37b;
}
.location-featured .location-name { color: #fff; }
.location-featured .location-tag { color: rgba(255,255,255,0.85); }

.location-all .location-name { color: #a3875e; }

/* ---------- 9. Social Proof ---------- */
.rating-summary {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-stars { color: #e0b54a; font-size: 22px; letter-spacing: 3px; }

.rating-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #5a5a5a;
}
.rating-text strong { color: #1a1a1a; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #faf7f2;
    border-radius: 14px;
    padding: 30px 28px;
    border: 1px solid rgba(191, 163, 123, 0.15);
}

.review-stars { color: #e0b54a; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }

.review-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
    margin: 0 0 18px;
}

.review-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a3875e;
}

/* ---------- 10. Featured Video ---------- */
.featured-video-section {
    background: #1a1a1a;
    padding: 80px 24px;
    text-align: center;
}

.featured-video {
    position: relative;
    display: block;
    max-width: 880px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.featured-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-video:hover .featured-video-thumb { transform: scale(1.04); }

.featured-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.featured-video:hover .featured-video-play { background: rgba(0, 0, 0, 0.32); }

.featured-video-play img {
    width: 76px;
    height: auto;
    transition: transform 0.3s;
}

.featured-video:hover .featured-video-play img { transform: scale(1.1); }

/* ---------- 11. Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.blog-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.06); }

.blog-body { padding: 24px; }

.blog-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bfa37b;
    margin-bottom: 10px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.blog-title a:hover { color: #a3875e; }

.blog-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #141414;
    color: #cfcfcf;
    padding: 64px 24px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col { display: flex; flex-direction: column; }

.footer-brand .logo-text { margin-bottom: 16px; }

.footer-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #9a9a9a;
    margin: 0 0 18px;
    max-width: 320px;
}

.footer-contact a,
.footer-col > a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #cfcfcf;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-contact a:hover,
.footer-col > a:hover { color: #bfa37b; }

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #7d7d7d;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .services-grid,
    .portfolio-grid,
    .why-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar-inner { flex-wrap: wrap; gap: 24px; }
    .trust-stat { flex: 0 0 28%; }
    .trust-divider { display: none; }

    .case-study,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .case-study-reverse .case-study-media { order: 0; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
    .home-section,
    .trust-bar,
    .featured-video-section { padding-left: 18px; padding-right: 18px; }

    .home-section { padding-top: 56px; padding-bottom: 56px; }

    .section-title { font-size: 28px; }

    .services-grid,
    .portfolio-grid,
    .why-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .trust-stat { flex: 0 0 44%; }
    .trust-number { font-size: 32px; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Nav Menu responsive behavior overrides */
@media (max-width: 991px) {
    .w-nav-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 25px;
        z-index: 100;
        gap: 15px;
    }
    
    .w-nav-menu.open {
        display: flex !important;
    }

    .section-3 {
        grid-template-columns: 1fr;
        padding: 40px 8px;
        gap: 8px;
    }
    .pinterestgrid {
        column-count: 2;
        column-gap: 8px;
    }
}

/* ============================================================
   MOTION — scroll reveals, hero entrance, gallery parallax
   Adopted from the Webflow reference, tuned subtle & elegant.
   Guardrails (ui-ux-pro-max): ease-out entrances, transform +
   opacity only, ~600ms reveals, prefers-reduced-motion honored.
   ============================================================ */

/* Smooth anchor scrolling + sticky-nav offset so section tops
   aren't hidden behind the fixed navbar when nav links jump. */
html { scroll-behavior: smooth; }

#services, #portfolio, #case-studies, #about, #why-us,
#locations, #reviews, #blog, #book, #faqs {
    scroll-margin-top: 90px;
}

/* Scroll-reveal: hidden initial state only when JS is present
   (html.js-anim is set pre-paint). No JS → content stays visible. */
html.js-anim .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

html.js-anim .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Drop will-change once settled to free the compositor */
html.js-anim .reveal.is-visible {
    will-change: auto;
}

/* Hero overlay entrance — fade-up the lines + CTA in sequence on load */
@keyframes hero-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.div-block-25 > * {
    animation: hero-rise 0.8s ease-out both;
}
.div-block-25 > *:nth-child(1) { animation-delay: 0.15s; }
.div-block-25 > *:nth-child(2) { animation-delay: 0.30s; }
.div-block-25 > *:nth-child(3) { animation-delay: 0.50s; }

/* Section-12 filmstrip rows — base state for JS horizontal parallax.
   transform (translateX) is set inline by index.js; this hints the compositor. */
.section-12 .parallax-track {
    will-change: transform;
}

/* ---------- Capture-your-dream-moments (section-13) ---------- */
/* Restore layout.css absolute horizontal fan-out behavior on desktop (> 767px) */
@media (min-width: 768px) {
    .section-13 {
        height: 100vh;
        margin-top: 0;
        margin-bottom: 80px;
        position: relative;
    }
    .div-block-33 {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        position: relative;
    }
    .div-block-35 {
        height: 275px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        margin-top: 40px;
    }
    .div-block-35 .lift-image {
        position: absolute;
        width: 30vw;
        height: 275px;
        display: block;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: none; /* Clear legacy layout.css transforms on desktop */
        transition: scale 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    rotate 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    translate 0.1s ease-out,
                    box-shadow 0.4s ease,
                    z-index 0.4s ease;
    }
    .div-block-35 .lift-image .image-19 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    /* Default collapsed state for initial paint and JS-disabled environments */
    .div-block-35 .lift-image-1 {
        translate: 0% 0px;
        rotate: -15deg;
        transform: none;
    }
    .div-block-35 .lift-image-2 {
        translate: 0px 0px;
        rotate: 0deg;
        transform: none;
    }
    .div-block-35 .lift-image-3 {
        translate: 0% 0px;
        rotate: 20deg;
        transform: none;
    }
    /* Hover effects using !important to override inline JS styles */
    .div-block-35 .lift-image:hover {
        scale: 1.03 !important;
        rotate: 0deg !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        z-index: 5 !important;
    }
    .div-block-35 .div-block-46 {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .div-block-35 .image-20 {
        width: 60px;
        height: auto;
    }
}
@media (max-width: 767px) {
    /* Section 12 mobile overrides */
    .section-12 {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .div-block-18, .div-block-20 {
        grid-column-gap: 10px;
        column-gap: 10px;
        height: 130px;
    }
    .div-block-18 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .div-block-18 .image-6,
    .div-block-20 .image-6,
    .div-block-20 .lift-image,
    .div-block-20 .lift-image .image-19 {
        max-height: 110px;
        height: 110px;
    }
}

/* Hover polish — align CTA micro-interactions to the reference "lift" */
.button-1,
.btn-outline-gold {
    transition: transform 0.25s ease, background-color 0.3s ease,
                color 0.3s ease, box-shadow 0.3s ease;
}
.button-1:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ---------- Accessibility — respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    html.js-anim .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .div-block-25 > * {
        animation: none !important;
    }

    .section-12 .parallax-track {
        transform: none !important;
    }
    /* Let the (now-static) wide rows be reachable by manual scroll */
    .section-12 {
        overflow-x: auto;
    }

    .marquee-grid,
    .background-heart-image {
        animation: none !important;
    }
}

/* ============================================================
   UNIFIED SPACING & TYPOGRAPHY Polish — UI Consistency
   ============================================================ */
/* Unify all homepage sections top/bottom padding and margins (excluding curved sections) */
.home-section,
.section-3,
.section-16 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box;
    position: relative;
}

@media (max-width: 767px) {
    .home-section,
    .section-3,
    .section-16 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* Specific styling for curved decorative sections to prevent overflows and unify spacing */
.section-15,
.section-8,
.section-cta {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box;
    position: relative;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .section-15,
    .section-8,
    .section-cta {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* Force body copy in legacy sections to match brand body standard */
.text-block-3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #5a5a5a !important;
    font-weight: 300 !important;
    max-width: 800px;
    margin: 0 auto !important;
    text-align: center;
}

/* Trust bar padding unification */
.trust-bar {
    padding: 40px 24px !important;
}

@media (max-width: 767px) {
    .trust-bar {
        padding: 30px 18px !important;
    }
}

/* Section 12 (filmstrip gallery rows) seamless stacking (removing white gaps) */
.section-12 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background-color: #fdf8ed !important;
}
/* Margins around the entire 3-row filmstrip block */
.section-15 + .section-12 {
    margin-top: 40px !important;
}
.section-12 + .section-8 {
    margin-top: 40px !important;
}

/* Featured Logo Marquee Section Custom Styling to match the design */
.logo-marquee {
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
    padding: 25px 0 !important;
}

.logo-marquee .div-block-39 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: 10;
    background-color: #faf6ee !important; /* Elegant light cream background */
    border-top-right-radius: 9999px !important; /* Perfect capsule right side */
    border-bottom-right-radius: 9999px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 32px !important;
    padding-right: 48px !important;
    box-shadow: 8px 0 20px rgba(0, 0, 0, 0.02);
}

.logo-marquee .div-block-39 .cursive-text {
    font-family: 'Playfair Display', serif !important;
    font-style: normal !important; /* Clear upright serif, not italic */
    font-size: 26px !important;
    font-weight: 500 !important;
    color: #2b2b2b !important; /* Charcoal black */
    line-height: 1 !important;
    letter-spacing: 0.3px !important;
}

@media (max-width: 767px) {
    .logo-marquee {
        padding: 15px 0 !important;
    }
    .logo-marquee .div-block-39 {
        padding-left: 20px !important;
        padding-right: 28px !important;
    }
    .logo-marquee .div-block-39 .cursive-text {
        font-size: 20px !important;
    }
}

@media (max-width: 479px) {
    .logo-marquee {
        padding: 10px 0 !important;
    }
    .logo-marquee .div-block-39 {
        padding-left: 14px !important;
        padding-right: 20px !important;
    }
    .logo-marquee .div-block-39 .cursive-text {
        font-size: 16px !important;
    }
}

/* --- Brand Font Declarations --- */
@font-face {
    font-family: 'Castle Display';
    src: url('fonts/castle-display/CastleDisplay.otf') format('opentype'),
         url('fonts/castle-display/CastleDisplay.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mote Cainge';
    src: url('fonts/mote-cainge/MOTE CAINGE.otf') format('opentype'),
         url('fonts/mote-cainge/MOTE CAINGE.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* 1. Global Backgrounds Override (Only sections originally having backgrounds) */
.section-soft, 
.section-12, 
.div-block-45, 
.div-block-37, 
.background-desgin {
    background-color: #FDF8ED !important;
}

/* 2. Global Headline & Paragraph Colors Override */
h1, h2, h3, h4, h5, h6, 
.section-title, 
.case-study-title, 
.service-name, 
.blog-title, 
.blog-title a,
.faq-question,
.cta-left-heading,
.logo-text,
.cursive-text,
p, 
.section-subtitle, 
.service-desc, 
.case-study-text, 
.review-text, 
.review-author, 
.blog-excerpt, 
.blog-meta, 
.footer-link, 
.footer-text, 
.faq-answer, 
.nav-link,
.text-block-3,
.trust-label {
    color: #333333 !important;
}

/* Restore text colors for dark sections */
.trust-bar,
.trust-bar * {
    color: inherit !important;
}
.trust-bar .trust-number {
    color: #bfa37b !important;
}
.trust-bar .trust-icon-wrapper {
    color: #bfa37b !important;
}
.trust-bar .trust-label {
    color: #555555 !important;
}
.section-title-light {
    color: #ffffff !important;
}
.section-subtitle-light {
    color: #cfcfcf !important;
}
.text-block-2 {
    color: #bfa37b !important;
}


/* 3. Headline Fonts Override */
h1, h2, h3, h4, h5, h6, 
.section-title, 
.case-study-title, 
.service-name, 
.blog-title, 
.blog-title a,
.cta-left-heading,
.logo-text,
.heading {
    font-family: 'Castle Display', 'Castledisplay', Arial, sans-serif !important;
    font-weight: 700 !important;
}

/* 4. Paragraph/Body Fonts Override */
p, 
.section-subtitle, 
.service-desc, 
.case-study-text, 
.blog-excerpt, 
.blog-meta, 
.footer-text, 
.faq-answer, 
.nav-link,
.text-block-3,
.logo-marquee .cursive-text,
.trust-label {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* 5. Quotes Font Override */
.cta-quote, 
.review-text, 
blockquote, 
q {
    font-family: 'Mote Cainge', 'MoteCainge', Arial, sans-serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
}

/* 6. Buttons Font Override */
.button, 
.btn, 
.button-primary, 
.btn-outline-gold, 
.button-1, 
.button-2, 
.location-chip, 
.case-study-link,
.cta-social-media-wrapper,
.cta-social-site,
.submit-button,
.nav-link-accent,
.trust-number {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

/* 7. Call Now Button Background Override */
a[href^="tel:"].button-primary,
a[href^="tel:"].btn-outline-gold,
a[href^="tel:"].button-1,
a[href^="tel:"].cta-social-media-wrapper,
a[href^="tel:"].cta-social-media-wrapper .div-block-41 {
    background-color: #FF9144 !important;
    border-color: #FF9144 !important;
    color: #ffffff !important;
}
a[href^="tel:"].cta-social-media-wrapper .cta-social-site {
    color: #ffffff !important;
}

/* --- Category Tabs --- */
.locations-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    z-index: 20;
    position: relative;
}

.tab-btn {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    color: #333333 !important;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.tab-btn:hover {
    color: #FF9144 !important;
}

.tab-btn.active {
    color: #FF9144 !important;
    border-bottom-color: #FF9144;
}

/* --- Card Fan Carousel --- */
.fan-carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 3rem 0 4rem 0;
    overflow: visible;
}

.fan-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 28rem;
    max-width: 80rem;
}

.fan-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15rem;      /* 240px */
    height: 22rem;     /* 352px */
    margin-left: -7.5rem;
    margin-top: -11rem;
    border-radius: 2.2rem; /* Clean rounded corners, matching the image */
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
    background: #fff;
    transform-origin: center center;
    will-change: transform, opacity;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.fan-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.fan-card-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fan-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fan-card:hover .fan-card-image-wrap img {
    transform: scale(1.08);
}

.fan-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2.5rem 1.5rem;
    z-index: 15;
}

.fan-card-title {
    color: #ffffff !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    font-size: 1.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    margin: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.fan-card:hover .fan-card-title {
    transform: translateY(-8px);
    color: #FF9144 !important;
}

/* Pagination Controls */
.fan-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    z-index: 30;
    position: relative;
}

.fan-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid rgba(51, 51, 51, 0.15);
    background: rgba(253, 248, 237, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #333333;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fan-arrow:hover {
    border-color: rgba(51, 51, 51, 0.3);
    background: rgba(253, 248, 237, 0.9);
    transform: scale(1.05);
}

.fan-arrow:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.fan-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
}

.fan-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fan-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(51, 51, 51, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fan-dot.active {
    background: #FF9144;
    transform: scale(1.3);
}

@media (max-width: 1023px) {
    .fan-layout {
        height: 22rem;
    }
    .fan-card {
        width: 12rem;
        height: 18rem;
        margin-left: -6rem;
        margin-top: -9rem;
        border-radius: 1.8rem;
    }
    .fan-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .fan-carousel-container {
        padding: 2rem 0 3rem 0;
    }
    .fan-layout {
        height: 18rem;
    }
    .fan-card {
        width: 10rem;
        height: 15rem;
        margin-left: -5rem;
        margin-top: -7.5rem;
        border-radius: 1.5rem;
    }
    .fan-card-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .fan-pagination {
        margin-top: 2rem;
    }
}

@media (max-width: 479px) {
    .fan-carousel-container {
        padding: 1rem 0 2rem 0;
    }
    .fan-layout {
        height: 15rem;
    }
    .fan-card {
        width: 8rem;
        height: 12rem;
        margin-left: -4rem;
        margin-top: -6rem;
        border-radius: 1.2rem;
    }
    .fan-card-title {
        font-size: 0.95rem;
        padding-bottom: 0.5rem;
    }
    .fan-pagination {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    .fan-arrow {
    }
}

/* Custom Styles for Jaipur Location Landing Page */

/* ============================================================
   JAIPUR HERO — Cinematic Full-Viewport Banner
   ============================================================ */
.jaipur-hero-section {
    background-color: #0d0d0d;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Full-bleed background image at full opacity — overlays handle darkening */
.jaipur-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jaipur-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: jaipur-hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes jaipur-hero-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.12); }
}

/* Cinematic vignette: darkens edges, lightens center slightly */
.jaipur-hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.72) 100%);
}

/* Strong bottom gradient to white for seamless page flow */
.jaipur-hero-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}


/* Content stack */
.jaipur-hero-content {
    z-index: 3;
    position: relative;
    text-align: center;
    max-width: 920px;
    padding: 0 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: hero-rise 0.9s ease-out both;
}

/* Badge / eyebrow pill */
.jaipur-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191, 163, 123, 0.15);
    border: 1px solid rgba(191, 163, 123, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e7d4b5;
    margin-bottom: 28px;
    animation: hero-rise 0.9s ease-out 0.1s both;
}

.jaipur-badge-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #bfa37b;
    flex-shrink: 0;
}

/* Main headline */
.jaipur-hero-title {
    font-family: 'Castle Display', 'Playfair Display', serif;
    font-size: clamp(42px, 6.5vw, 80px);
    line-height: 1.08;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 24px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    animation: hero-rise 0.9s ease-out 0.2s both;
}

.jaipur-hero-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #e7d4b5;
}

/* Subtitle */
.jaipur-hero-subtitle {
    font-family: 'Roboto', sans-serif;
    color: rgba(255,255,255,0.82);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 36px;
    animation: hero-rise 0.9s ease-out 0.3s both;
}

/* Mini trust stats row */
.jaipur-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 16px 32px;
    animation: hero-rise 0.9s ease-out 0.4s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #e7d4b5;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* CTA buttons row */
.jaipur-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: hero-rise 0.9s ease-out 0.5s both;
}

.jaipur-hero-btn-primary {
    display: inline-block;
    background: #bfa37b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid #bfa37b;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 28px rgba(191, 163, 123, 0.4);
}

.jaipur-hero-btn-primary:hover {
    background: #a3875e;
    border-color: #a3875e;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(191, 163, 123, 0.5);
}

.jaipur-hero-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.45);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.jaipur-hero-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-3px);
}

/* Scroll indicator */
.jaipur-scroll-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hero-rise 1s ease-out 0.8s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #bfa37b;
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* Override global color !important rules for hero — must be more specific */
.jaipur-hero-section .jaipur-hero-title,
.jaipur-hero-section h1.jaipur-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 1px 8px rgba(0,0,0,0.4) !important;
}

.jaipur-hero-section .jaipur-hero-title em {
    color: #e7d4b5 !important;
}

.jaipur-hero-section .jaipur-hero-subtitle {
    color: rgba(255,255,255,0.88) !important;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5) !important;
}

.jaipur-hero-section .jaipur-hero-badge {
    color: #e7d4b5 !important;
}

.jaipur-hero-section .hero-stat-num {
    color: #e7d4b5 !important;
}

.jaipur-hero-section .hero-stat-label {
    color: rgba(255,255,255,0.55) !important;
}

/* Mobile hero */
@media (max-width: 767px) {
    .jaipur-hero-section { height: 100svh; min-height: 600px; }
    .jaipur-hero-content { padding: 0 18px 100px; gap: 0; }
    .jaipur-hero-badge { font-size: 9px; padding: 6px 14px; margin-bottom: 20px; }
    .jaipur-hero-title { font-size: clamp(36px, 10vw, 52px); margin-bottom: 18px; }
    .jaipur-hero-subtitle { font-size: 15px; margin-bottom: 28px; }
    .jaipur-hero-stats { padding: 12px 16px; gap: 0; }
    .hero-stat-item { padding: 0 14px; }
    .hero-stat-num { font-size: 20px; }
    .hero-stat-label { font-size: 9px; }
    .jaipur-hero-cta-row { flex-direction: column; gap: 12px; width: 100%; }
    .jaipur-hero-btn-primary,
    .jaipur-hero-btn-ghost { width: 100%; text-align: center; }
    .jaipur-scroll-indicator { display: none; }
}

/* 1. Masonry Portfolio Gallery */
.portfolio-masonry {
    column-count: 3;
    column-gap: 20px;
    width: 100%;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(191, 163, 123, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.masonry-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(191, 163, 123, 0.18);
}

.masonry-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.masonry-item:hover .masonry-img {
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .portfolio-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .portfolio-masonry {
        column-count: 1;
        column-gap: 0;
    }
}

/* 2. USP Grid (Why Choose OMP) */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(191, 163, 123, 0.18);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.usp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(191, 163, 123, 0.18);
    border-color: #bfa37b;
}

.usp-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.usp-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.usp-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 3. Pricing & Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(191, 163, 123, 0.18);
    padding: 30px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(191, 163, 123, 0.18);
}

.package-card.package-highlight {
    border: 2px solid #bfa37b;
    box-shadow: 0 8px 24px rgba(191, 163, 123, 0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #bfa37b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(191, 163, 123, 0.2);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    text-align: center;
}

.package-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #bfa37b;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex-grow: 1;
}

.package-features li {
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5a5a5a;
    padding: 8px 0 8px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #bfa37b;
    font-weight: bold;
}

.btn-package-cta {
    display: block;
    text-align: center;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.package-card:hover .btn-package-cta {
    background: #bfa37b;
    color: #ffffff;
    border-color: #bfa37b;
}

.package-highlight .btn-package-cta {
    background: #1a1a1a;
    color: #ffffff;
}

.package-highlight:hover .btn-package-cta {
    background: #bfa37b;
    border-color: #bfa37b;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 4. Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #bfa37b;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(191, 163, 123, 0.3);
    position: relative;
    z-index: 2;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.process-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

/* Timeline connecting line */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 1px dashed rgba(191, 163, 123, 0.4);
    z-index: 1;
}

@media (max-width: 991px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-timeline::before {
        display: none;
    }
    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 20px;
        align-items: start;
    }
    .process-num {
        margin: 0;
    }
}

/* 5. Sticky CTA */
.sticky-cta-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(191, 163, 123, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(191, 163, 123, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s;
}

.sticky-cta-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn:hover {
    background: rgba(163, 135, 94, 0.98);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .sticky-cta-btn {
        left: 20px;
        right: 20px;
        bottom: 20px;
        text-align: center;
        border-radius: 8px;
        padding: 16px;
        font-size: 12px;
    }
}

/* ============================================================
   JAIPUR FAQ — Two-column redesign (dark section)
   ============================================================ */
.jaipur-faq-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 100px 24px;
}

.jaipur-faq-bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(191, 163, 123, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.jaipur-faq-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.jaipur-faq-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #bfa37b !important;
    margin-bottom: 18px;
}

.jaipur-faq-title {
    font-family: 'Castle Display', 'Playfair Display', serif !important;
    font-size: clamp(36px, 4vw, 52px) !important;
    line-height: 1.1 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    margin: 0 0 20px !important;
}

.jaipur-faq-subtitle {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #6b6b6b !important;
    margin: 0 0 32px !important;
}

.jaipur-faq-cta {
    display: inline-block;
    background: #bfa37b;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    margin-bottom: 28px;
}

.jaipur-faq-cta:hover {
    background: #a3875e;
    transform: translateY(-2px);
}

.jaipur-faq-trust {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-trust-stars {
    color: #e0b54a !important;
    font-size: 16px;
    letter-spacing: 2px;
}

.faq-trust-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #9a9a9a !important;
    letter-spacing: 0.5px;
}

/* Right column — accordion */
.jaipur-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jaipur-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.jaipur-faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.jaipur-faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
    text-align: left;
}

.jaipur-faq-q {
    font-family: 'Playfair Display', serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.4;
    transition: color 0.3s;
}

.jaipur-faq-toggle:hover .jaipur-faq-q,
.jaipur-faq-item.active .jaipur-faq-q {
    color: #bfa37b !important;
}

.jaipur-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.35);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s;
}

.jaipur-faq-item.active .jaipur-faq-icon {
    background: #bfa37b;
    border-color: #bfa37b;
    color: #ffffff;
    transform: rotate(180deg);
}

.jaipur-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.jaipur-faq-answer p {
    padding: 0 0 20px;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #5a5a5a !important;
}

.jaipur-faq-item.active .jaipur-faq-answer {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 900px) {
    .jaipur-faq-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .jaipur-faq-section { padding: 70px 18px; }
}

/* Focus styles for Form Inputs */
.booking-form-element input:focus,
.booking-form-element select:focus,
.booking-form-element textarea:focus {
    outline: 2px solid #bfa37b;
    outline-offset: 1px;
    border-color: #bfa37b !important;
}

.active-location-menu {
    color: #bfa37b;
    font-weight: 600;
}

/* Love Story Media responsiveness */
@media (max-width: 991px) {
    .love-story-block {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .love-story-media {
        height: 280px !important;
    }
}

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

@media (max-width: 767px) {
    .seo-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: 120px 24px 80px;
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(191,163,123,0.15);
}

.about-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    line-height: 1.15 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    margin: 16px auto 20px !important;
    max-width: 800px;
}

.about-hero-title em { color: #bfa37b !important; font-style: italic; }

.about-hero-sub {
    font-family: 'Roboto', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #6b6b6b !important;
    max-width: 640px;
    margin: 0 auto 56px !important;
}

.about-hero-stat-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #faf8f5;
    border: 1px solid rgba(191,163,123,0.18);
    border-radius: 16px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    gap: 4px;
}

.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #bfa37b !important;
    line-height: 1;
}

.about-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888 !important;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(191,163,123,0.25);
}

/* Founder */
.about-founder-section { background: #ffffff; }

.about-founder-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.about-founder-image-wrap {
    position: relative;
}

.about-founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-founder-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: #bfa37b;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
}

.about-founder-bio {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #555555 !important;
    margin: 0 0 18px !important;
}

.about-founder-bio em { color: #bfa37b !important; font-style: italic; }

.about-founder-awards {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founder-award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #444444 !important;
}

.founder-award-icon { font-size: 18px; flex-shrink: 0; }

/* Values */
.about-values-section { background: #faf8f5 !important; }

.about-values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-value-card {
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(191,163,123,0.12);
    transition: box-shadow 0.3s, transform 0.3s;
}

.about-value-card:hover {
    box-shadow: 0 16px 48px rgba(191,163,123,0.12);
    transform: translateY(-4px);
}

.about-value-icon {
    font-size: 22px;
    color: #bfa37b;
    margin-bottom: 16px;
    display: block;
}

.about-value-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 10px !important;
}

.about-value-desc {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #666666 !important;
    margin: 0 !important;
}

/* Team */
.about-team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-team-card {
    text-align: center;
    padding: 36px 20px 28px;
    border: 1px solid rgba(191,163,123,0.1);
    border-radius: 16px;
    background: #ffffff;
    transition: box-shadow 0.3s;
}

.about-team-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); }

.about-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.about-team-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 0 4px !important;
}

.about-team-role {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bfa37b !important;
    margin-bottom: 12px;
}

.about-team-desc {
    font-family: 'Roboto', sans-serif !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #777777 !important;
    margin: 0 !important;
}

/* CTA */
.about-cta-section {
    background: #1a1a1a;
    padding: 100px 24px;
    text-align: center;
}

.about-cta-inner { max-width: 700px; margin: 0 auto; }

.about-cta-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 12px 0 16px !important;
    line-height: 1.2 !important;
}

.about-cta-sub {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.6) !important;
    margin: 0 0 36px !important;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.wd-footer {
    background: #111111;
    padding: 40px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.wd-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.wd-footer-copy {
    font-family: 'Roboto', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.35) !important;
    margin: 0 !important;
}

.wd-footer-links {
    display: flex;
    gap: 24px;
}

.wd-footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.wd-footer-links a:hover { color: #bfa37b !important; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-hero {
    padding: 120px 24px 60px;
    background: #ffffff;
    text-align: center;
}

.reviews-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191,163,123,0.1);
    border: 1px solid rgba(191,163,123,0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
}

.reviews-badge-stars {
    color: #e0b54a !important;
    font-size: 14px;
    letter-spacing: 2px;
}

.reviews-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bfa37b !important;
}

.reviews-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(36px, 5vw, 62px) !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto 20px !important;
    line-height: 1.15 !important;
    max-width: 700px;
}

.reviews-hero-sub {
    font-family: 'Roboto', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #6b6b6b !important;
    max-width: 580px;
    margin: 0 auto 56px !important;
}

.reviews-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 840px;
    margin: 0 auto;
    background: #faf8f5;
    border: 1px solid rgba(191,163,123,0.18);
    border-radius: 14px;
    padding: 28px 0;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 44px;
    gap: 4px;
}

.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #bfa37b !important;
    line-height: 1;
}

.trust-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888 !important;
}

.trust-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(191,163,123,0.22);
    flex-shrink: 0;
}

/* Platform badges */
.reviews-platforms {
    background: #f9f9f9;
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.reviews-platforms-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-platforms-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999999 !important;
    margin-right: 8px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333333 !important;
}

.platform-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #bfa37b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Featured review */
.reviews-featured-section { background: #faf8f5 !important; }

.reviews-featured-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.reviews-featured-quote {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    line-height: 0.5;
    color: rgba(191,163,123,0.25);
    margin-bottom: 16px;
    font-weight: 700;
}

.reviews-featured-text {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(18px, 2.2vw, 24px) !important;
    line-height: 1.65 !important;
    color: #2a2a2a !important;
    font-style: italic;
    margin: 0 0 36px !important;
    border: none;
    padding: 0;
}

.reviews-featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews-featured-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.reviews-featured-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a !important;
}

.reviews-featured-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999999 !important;
    margin-top: 2px;
}

/* Masonry review cards */
.reviews-masonry {
    max-width: 1100px;
    margin: 0 auto;
    columns: 3;
    column-gap: 24px;
}

.rv-card {
    break-inside: avoid;
    margin-bottom: 24px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(191,163,123,0.1);
    border-radius: 14px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.rv-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.rv-card-accent {
    background: linear-gradient(135deg, rgba(191,163,123,0.08), rgba(191,163,123,0.03));
    border-color: rgba(191,163,123,0.25);
}

.rv-stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #cccccc !important;
    margin-bottom: 14px;
}

.rv-stars-gold { color: #e0b54a !important; }

.rv-text {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #444444 !important;
    margin: 0 0 20px !important;
    font-style: italic;
}

.rv-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.rv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.rv-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a !important;
}

.rv-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #999999 !important;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.rv-source {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bfa37b !important;
    border-top: 1px solid rgba(191,163,123,0.15);
    padding-top: 12px;
}

/* Video testimonials */
.reviews-video-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rv-video-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(191,163,123,0.12);
    background: #ffffff;
    transition: box-shadow 0.3s;
}

.rv-video-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.rv-video-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.rv-video-thumb:hover { opacity: 0.85; }

.rv-video-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(191,163,123,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    padding-left: 4px;
}

.rv-video-info { padding: 16px 20px; }

.rv-video-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a !important;
}

.rv-video-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #999999 !important;
    margin-top: 4px;
}

/* Responsive about + reviews */
@media (max-width: 1024px) {
    .about-values-grid,
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-founder-badge { right: 20px; }
    .reviews-masonry { columns: 2; }
    .reviews-video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .about-values-grid,
    .about-team-grid,
    .reviews-video-grid { grid-template-columns: 1fr; }
    .reviews-masonry { columns: 1; }
    .about-hero-stat-row, .reviews-trust-bar { flex-direction: column; gap: 24px; }
    .about-stat-divider, .trust-bar-divider { width: 40px; height: 1px; }
    .about-cta-btns { flex-direction: column; align-items: center; }
    .wd-footer-inner { flex-direction: column; text-align: center; }
}

/* ========== BLOG PAGE ========== */
.blog-hero {
    padding: 120px 5vw 60px;
    background: #faf9f7;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.blog-hero-content { margin-bottom: 36px; }
.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: #1a1a1a !important;
    margin: 12px 0 16px;
    line-height: 1.15;
}
.blog-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b6b6b !important;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}
.blog-filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(191,163,123,0.35);
    background: transparent;
    color: #6b6b6b !important;
    cursor: pointer;
    transition: all 0.2s ease;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #bfa37b;
    border-color: #bfa37b;
    color: #fff !important;
}
.blog-featured-section { padding: 64px 5vw 40px; }
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    max-width: 1100px;
    margin: 0 auto;
}
.blog-featured-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}
.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #bfa37b;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}
.blog-featured-body {
    padding: 44px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.blog-cat-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bfa37b !important;
}
.blog-read-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #aaa !important;
}
.blog-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    color: #1a1a1a !important;
    line-height: 1.35;
    margin: 0 0 14px;
}
.blog-featured-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6b6b6b !important;
    line-height: 1.75;
    margin: 0 0 28px;
}
.blog-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fff !important;
    flex-shrink: 0;
}
.blog-author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a !important;
}
.blog-author-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #aaa !important;
    margin-top: 2px;
}
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #bfa37b !important;
    text-decoration: none;
    gap: 4px;
    transition: gap 0.2s ease;
}
.blog-read-btn:hover { gap: 8px; }
.blog-grid-section { padding: 20px 5vw 80px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.blog-card-img-wrap {
    height: 220px;
    overflow: hidden;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 24px 24px 28px; }
.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a !important;
    line-height: 1.4;
    margin: 10px 0 10px;
}
.blog-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #6b6b6b !important;
    line-height: 1.7;
    margin: 0 0 18px;
}
.blog-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #bfa37b !important;
    text-decoration: none;
    transition: letter-spacing 0.2s ease;
}
.blog-card-link:hover { letter-spacing: 1px; }
@media (max-width: 1024px) {
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 300px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-body { padding: 28px 24px; }
    .blog-filters { gap: 8px; }
}

/* Blog — card image wrap as link */
.blog-card-img-wrap {
    display: block;
    text-decoration: none;
}

/* Blog inline CTA banner */
.blog-inline-cta {
    margin: 0 5vw 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2418 60%, #3a2d1a 100%);
    border: 1px solid rgba(191,163,123,0.2);
    overflow: hidden;
}
.blog-inline-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 52px;
}
.blog-inline-cta-text { flex: 1; }
.blog-inline-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    color: #ffffff !important;
    margin: 8px 0 14px;
    line-height: 1.3;
}
.blog-inline-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.blog-ghost-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.blog-ghost-btn:hover {
    border-color: #bfa37b;
    background: rgba(191,163,123,0.1);
}

/* Destination cards grid */
.blog-destinations-section { padding: 20px 5vw 80px; }
.blog-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 40px auto 0;
}
.blog-dest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-dest-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.blog-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    transition: background 0.3s ease;
}
.blog-dest-card:hover .blog-dest-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.blog-dest-name {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
    padding: 0 16px 4px;
    line-height: 1.2;
}
.blog-dest-count {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bfa37b !important;
    padding: 0 16px 14px;
}

@media (max-width: 1024px) {
    .blog-dest-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-inline-cta-inner { flex-direction: column; gap: 28px; }
    .blog-inline-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
    .blog-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .blog-dest-card { height: 150px; }
    .blog-inline-cta-inner { padding: 32px 24px; }
    .blog-inline-cta-actions { flex-direction: column; width: 100%; }
    .blog-ghost-btn { text-align: center; }
}

/* ========== BLOG POST ARTICLE PAGE ========== */
.bp-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #1a1a1a;
}
.bp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
}
.bp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.bp-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 8vw 52px;
    max-width: 860px;
}
.bp-cat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.bp-cat-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #bfa37b !important;
    background: rgba(191,163,123,0.15);
    border: 1px solid rgba(191,163,123,0.4);
    padding: 4px 12px;
    border-radius: 100px;
}
.bp-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6) !important;
}
.bp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 600;
    color: #ffffff !important;
    line-height: 1.2;
    margin: 0 0 16px;
}
.bp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.7;
    max-width: 640px;
}

/* Article body */
.bp-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 5vw 80px;
}
.bp-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #1a1a1a !important;
    margin: 48px 0 16px;
    line-height: 1.3;
    border-left: 3px solid #bfa37b;
    padding-left: 16px;
}
.bp-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: #1a1a1a !important;
    margin: 32px 0 10px;
    line-height: 1.35;
}
.bp-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #bfa37b !important;
    margin: 28px 0 8px;
}
.bp-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #444 !important;
    line-height: 1.85;
    margin: 0 0 18px;
}
.bp-body ul, .bp-body ol {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #444 !important;
    line-height: 1.8;
    margin: 0 0 18px;
    padding-left: 24px;
}
.bp-body li { margin-bottom: 6px; }
.bp-body img {
    width: 100%;
    border-radius: 12px;
    margin: 28px 0;
    display: block;
}
.bp-intro-box {
    background: #faf9f7;
    border: 1px solid rgba(191,163,123,0.2);
    border-left: 4px solid #bfa37b;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 0 0 36px;
}
.bp-intro-box p {
    font-size: 16px !important;
    color: #333 !important;
    font-style: italic;
    margin: 0 !important;
}

/* Location cards */
.bp-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 36px;
}
.bp-location-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 20px 22px;
    transition: box-shadow 0.2s ease;
}
.bp-location-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.bp-loc-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #bfa37b !important;
    line-height: 1;
    margin-bottom: 8px;
}
.bp-loc-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 6px;
}
.bp-loc-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.bp-loc-badge.free { background: rgba(76,175,80,0.1); color: #2e7d32 !important; }
.bp-loc-badge.paid { background: rgba(191,163,123,0.12); color: #8a6c4e !important; }
.bp-loc-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #666 !important;
    line-height: 1.65;
}

/* FAQ section */
.bp-faq { margin: 48px 0 0; }
.bp-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 18px 0;
}
.bp-faq-q {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a !important;
    margin: 0 0 8px;
}
.bp-faq-a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555 !important;
    line-height: 1.7;
    margin: 0;
}

/* Inline CTA inside article */
.bp-cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2418 100%);
    border-radius: 16px;
    padding: 40px 44px;
    margin: 48px 0;
    text-align: center;
}
.bp-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2vw, 26px);
    color: #fff !important;
    margin: 8px 0 12px;
    border: none;
    padding: 0;
}
.bp-cta-box p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    margin: 0 0 24px;
}
.bp-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar-style info strip */
.bp-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(191,163,123,0.2);
    border-radius: 12px;
    overflow: hidden;
    margin: 36px 0;
}
.bp-info-cell {
    padding: 18px 20px;
    text-align: center;
    border-right: 1px solid rgba(191,163,123,0.2);
    background: #faf9f7;
}
.bp-info-cell:last-child { border-right: none; }
.bp-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bfa37b !important;
    margin-bottom: 4px;
}
.bp-info-value {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a !important;
}

@media (max-width: 768px) {
    .bp-hero { height: 380px; }
    .bp-hero-content { padding: 32px 5vw 36px; }
    .bp-location-grid { grid-template-columns: 1fr; }
    .bp-info-strip { grid-template-columns: 1fr; }
    .bp-info-cell { border-right: none; border-bottom: 1px solid rgba(191,163,123,0.2); }
    .bp-cta-box { padding: 28px 24px; }
    .bp-cta-btns { flex-direction: column; align-items: center; }
}

