/* ===================================================================
   BBOASIS HOMEPAGE REVAMP — Peerspace / Swimply inspired
   Modern, clean, trust-building design for backyard event spaces
   =================================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- Root Overrides ---- */
:root {
    --hp-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hp-dark: #1a1a2e;
    --hp-text: #374151;
    --hp-muted: #6b7280;
    --hp-light: #f8fafc;
    --hp-border: #e5e7eb;
    --hp-accent: #FF385C;
    --hp-accent-dark: #e31c5f;
    --hp-success: #10b981;
    --hp-warm: #f59e0b;
    --hp-radius-sm: 12px;
    --hp-radius-md: 16px;
    --hp-radius-lg: 24px;
    --hp-radius-xl: 32px;
    --hp-shadow-subtle: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --hp-shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    --hp-shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
    --hp-shadow-hero: 0 25px 60px rgba(0,0,0,0.15);
    --hp-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
   1. HERO / BANNER SECTION
   =================================================================== */

.banner-section-one.banner-section {
    padding: 0 !important;
}

.banner-section-one .banner-one-container {
    position: relative;
    padding: 0 !important;
    border-radius: 0 !important;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-section-one .bg-shape-layer {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
    transition: transform 8s ease;
}

.banner-section-one .bg-shape-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.50) 100%
    ) !important;
}

.banner-section-one .banner-content-box {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px !important;
    margin: 0 auto;
    padding: 0 24px;
    animation: heroFadeIn 1s var(--hp-transition) both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.banner-section-one .banner-content-box h2 {
    font-family: var(--hp-font) !important;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

.banner-section-one .banner-content-box h2 span {
    background: linear-gradient(135deg, var(--hp-accent) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitle — add via blade */
.hero-subtitle {
    font-family: var(--hp-font);
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

/* Banner CTA button */
.banner-section-one .banner-btn .btn-2 {
    border-radius: 999px !important;
    padding: 16px 36px !important;
    font-family: var(--hp-font) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: -0.01em !important;
    box-shadow: var(--hp-shadow-hero) !important;
    transition: all 0.3s var(--hp-transition) !important;
}

.banner-section-one .banner-btn .btn-2:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25) !important;
}

/* ---- Search Bar (Peerspace-style floating) ---- */
.banner-section-one .destination-search {
    position: relative;
    max-width: 860px !important;
    margin: 40px auto 0 !important;
    border-radius: var(--hp-radius-xl) !important;
    background: rgba(255, 255, 255, 1) !important;
    border: none !important;
    box-shadow: var(--hp-shadow-hero) !important;
    padding: 8px !important;
    animation: searchSlideUp 1s 0.3s var(--hp-transition) both;
}

@keyframes searchSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.banner-section-one .destination-search-inner {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
}

.banner-section-one .destination-search .select-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--hp-radius-md);
    transition: background 0.2s ease;
    cursor: pointer;
    flex: 1;
}

.banner-section-one .destination-search .select-option:hover {
    background: var(--hp-light);
}

.banner-section-one .destination-search .select-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #fef3f2 0%, #fde8e8 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-section-one .destination-search .select-icon i {
    font-size: 18px !important;
    color: var(--hp-accent) !important;
}

.banner-section-one .destination-search .select-option-title {
    font-family: var(--hp-font) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--hp-muted) !important;
    margin-bottom: 2px !important;
}

.banner-section-one .destination-search .select-option-content input,
.banner-section-one .destination-search .select-option-content .count-input {
    font-family: var(--hp-font) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--hp-dark) !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.banner-section-one .destination-search .hr-line {
    width: 1px !important;
    height: 40px !important;
    background: var(--hp-border) !important;
    flex-shrink: 0;
}

.banner-section-one .destination-search .btn-1 {
    border-radius: 999px !important;
    padding: 16px 28px !important;
    font-family: var(--hp-font) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.3) !important;
    transition: all 0.3s var(--hp-transition) !important;
}

.banner-section-one .destination-search .btn-1:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 12px 32px rgba(255, 56, 92, 0.4) !important;
}

/* Scroll arrow */
.banner-section-one .arrow-btn {
    bottom: -28px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    transition: all 0.3s ease !important;
    animation: bounceArrow 2s infinite 2s;
}

.banner-section-one .arrow-btn::after {
    display: none !important;
}

.banner-section-one .arrow-btn:hover {
    transform: translateX(-50%) translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Trust badges row below search */
.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    animation: heroFadeIn 1s 0.6s var(--hp-transition) both;
}

.hero-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-family: var(--hp-font);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust-badges .trust-badge i {
    font-size: 16px;
    color: var(--hp-warm);
}

/* ===================================================================
   2. CATEGORY SECTION
   =================================================================== */

.category-section {
    padding: 80px 0 !important;
    background: #fff !important;
}

.category-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px !important;
    gap: 24px;
}

.category-section .section-title {
    font-family: var(--hp-font) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    margin-bottom: 0 !important;
}

.category-section .right-side {
    font-family: var(--hp-font) !important;
    font-size: 1rem !important;
    color: var(--hp-muted) !important;
    max-width: 400px;
    line-height: 1.6 !important;
}

.category-section .category-box {
    position: relative;
    border-radius: var(--hp-radius-lg) !important;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s var(--hp-transition) !important;
    box-shadow: var(--hp-shadow-card) !important;
    border: 1px solid var(--hp-border) !important;
}

.category-section .category-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--hp-shadow-hover) !important;
    border-color: transparent !important;
}

.category-section .category-box .img-box {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.category-section .category-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hp-transition);
}

.category-section .category-box:hover .img-box img {
    transform: scale(1.08);
}

.category-section .category-box .text-box {
    padding: 20px !important;
}

.category-section .category-box .title {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--hp-dark) !important;
    margin-bottom: 8px !important;
}

.category-section .category-box .btn-4 {
    font-family: var(--hp-font) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--hp-accent) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.category-section .category-box:hover .btn-4 {
    gap: 10px;
}

/* ===================================================================
   3. POPULAR DESTINATIONS SECTION
   =================================================================== */

.popular-destination-section {
    padding: 80px 0 !important;
    background: var(--hp-light) !important;
}

.popular-destination-grid-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 20px !important;
}

.destination-box2 {
    position: relative;
    border-radius: var(--hp-radius-lg) !important;
    overflow: hidden;
    transition: all 0.4s var(--hp-transition);
}

.destination-box2:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.destination-box2.large {
    grid-row: span 2 !important;
}

.destination-box2 .img-box {
    height: 100% !important;
    overflow: hidden;
    border-radius: var(--hp-radius-lg) !important;
}

.destination-box2 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hp-transition);
}

.destination-box2:hover .img-box img {
    transform: scale(1.06);
}

.destination-box2 .text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px !important;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%) !important;
}

.destination-box2 .title {
    font-family: var(--hp-font) !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: -0.02em !important;
}

.destination-box2 .arrow-btn2 {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.95) !important;
    color: var(--hp-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.destination-box2:hover .arrow-btn2 {
    background: var(--hp-accent) !important;
    color: #fff !important;
    transform: scale(1.1) rotate(-5deg);
}

/* ===================================================================
   4. POPULAR SLIDER SECTION
   =================================================================== */

.popular {
    padding: 80px 0 !important;
    background: #fff !important;
}

.popular .common-title h3 {
    font-family: var(--hp-font) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 40px !important;
}

.popular-single {
    border-radius: var(--hp-radius-lg) !important;
    overflow: hidden;
    position: relative;
    box-shadow: var(--hp-shadow-card);
    transition: all 0.4s var(--hp-transition);
}

.popular-single:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-hover);
}

.popular-single .popular-image {
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.popular-single .popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hp-transition);
}

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

.popular-single-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95) !important;
    color: var(--hp-dark) !important;
    font-family: var(--hp-font) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.popular-content {
    padding: 16px 4px !important;
}

.popular-content-title {
    font-family: var(--hp-font) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.01em !important;
}

.popular-content-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-light);
    color: var(--hp-dark);
    transition: all 0.3s ease;
}

.popular-single:hover .popular-content-btn {
    background: var(--hp-accent);
    color: #fff;
}

/* ===================================================================
   5. FEATURE SECTION (Swimply-style)
   =================================================================== */

.feature-section--backyard {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, var(--hp-light) 0%, #fff 100%) !important;
}

.feature-section--swimply {
    background: linear-gradient(180deg, var(--hp-light) 0%, #fff 50%, var(--hp-light) 100%) !important;
}

.feature-section--backyard .feature-aurora,
.feature-section--backyard .feature-splash {
    display: none !important;
}

.feature-section--backyard .feature-intro {
    text-align: center !important;
    max-width: 680px !important;
    margin: 0 auto 56px !important;
}

.feature-section--backyard .feature-kicker {
    font-family: var(--hp-font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em !important;
    color: var(--hp-accent) !important;
    background: rgba(255, 56, 92, 0.08) !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    display: inline-flex;
    margin-bottom: 20px;
}

.feature-section--backyard .feature-title {
    font-family: var(--hp-font) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    margin: 0 0 16px !important;
}

.feature-section--backyard .feature-subtitle {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    color: var(--hp-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.feature-section--backyard .feature-card {
    background: #fff !important;
    border-radius: var(--hp-radius-lg) !important;
    padding: 32px 28px !important;
    box-shadow: var(--hp-shadow-card) !important;
    border: 1px solid var(--hp-border) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--hp-transition) !important;
    position: relative;
    overflow: hidden;
}

.feature-section--backyard .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hp-accent), #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-section--backyard .feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--hp-shadow-hover) !important;
    border-color: transparent !important;
}

.feature-section--backyard .feature-card:hover::before {
    opacity: 1;
}

.feature-section--backyard .feature-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: var(--hp-radius-sm) !important;
    background: linear-gradient(135deg, #fef3f2 0%, #fde8e8 100%) !important;
    border: 1px solid rgba(255, 56, 92, 0.12) !important;
}

.feature-section--backyard .feature-icon img {
    width: 28px !important;
    height: 28px !important;
}

.feature-section--backyard .feature-number {
    font-family: var(--hp-font) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--hp-accent) !important;
    background: rgba(255, 56, 92, 0.08) !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
}

.feature-section--backyard .feature-card-title {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--hp-dark) !important;
    margin-bottom: 10px !important;
}

.feature-section--backyard .feature-card-text {
    font-family: var(--hp-font) !important;
    font-size: 0.925rem !important;
    color: var(--hp-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ===================================================================
   6. HOW IT WORKS / GUIDE SECTION
   =================================================================== */

.guide-section {
    padding: 100px 0 !important;
    background: #fff !important;
    overflow: hidden;
}

.guide-section .container {
    max-width: 1000px !important;
}

.guide-section h2.display-5 {
    font-family: var(--hp-font) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
}

.guide-section .lead {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    color: var(--hp-muted) !important;
    line-height: 1.6 !important;
}

.guide-section .step-content {
    position: relative;
}

.guide-section .step-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 20px !important;
    font-size: 32px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.guide-section .step-icon-1 {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
}

.guide-section .step-icon-2 {
    background: linear-gradient(135deg, #ffedd5, #fed7aa) !important;
}

.guide-section .step-icon-3 {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8) !important;
}

.guide-section .step-icon-4 {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
}

.guide-section h4 {
    font-family: var(--hp-font) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.02em !important;
}

.guide-section h6.text-primary {
    font-family: var(--hp-font) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--hp-accent) !important;
    opacity: 1 !important;
}

.guide-section p.text-muted {
    font-family: var(--hp-font) !important;
    font-size: 0.95rem !important;
    color: var(--hp-muted) !important;
    line-height: 1.7 !important;
}

.guide-section .step-image-wrapper img {
    border-radius: var(--hp-radius-lg) !important;
    box-shadow: var(--hp-shadow-card) !important;
    transition: all 0.5s var(--hp-transition) !important;
}

.guide-section .step-image-wrapper:hover img {
    transform: translateY(-10px) !important;
    box-shadow: var(--hp-shadow-hover) !important;
}

.guide-section .btn.btn-primary.btn-lg {
    font-family: var(--hp-font) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    padding: 16px 40px !important;
    border-radius: var(--hp-radius-sm) !important;
    background: var(--hp-dark) !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(26,26,46,0.2) !important;
    transition: all 0.3s var(--hp-transition) !important;
}

.guide-section .btn.btn-primary.btn-lg:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 40px rgba(26,26,46,0.3) !important;
    background: #111827 !important;
}

/* ===================================================================
   7. TESTIMONIAL SECTION
   =================================================================== */

.testimonial {
    padding: 100px 0 !important;
    background: var(--hp-light) !important;
}

.testimonial .common-title h3 {
    font-family: var(--hp-font) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
    text-align: center !important;
    margin-bottom: 48px !important;
}

.testimonial-single {
    background: #fff !important;
    border-radius: var(--hp-radius-lg) !important;
    padding: 36px 32px !important;
    box-shadow: var(--hp-shadow-card) !important;
    border: 1px solid var(--hp-border) !important;
    transition: all 0.4s var(--hp-transition) !important;
    height: 100%;
    position: relative;
}

.testimonial-single:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--hp-shadow-hover) !important;
    border-color: transparent !important;
}

.testimonial-single > i.fa-quote-left {
    font-size: 28px !important;
    color: var(--hp-accent) !important;
    opacity: 0.3 !important;
    margin-bottom: 16px !important;
}

.testimonial-description p {
    font-family: var(--hp-font) !important;
    font-size: 1rem !important;
    color: var(--hp-text) !important;
    line-height: 1.7 !important;
    font-style: italic;
}

.testimonial-shape {
    display: none !important;
}

.testimonial-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--hp-border);
}

.testimonial-cloent-image img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid var(--hp-border);
}

.testimonial-info h6 {
    font-family: var(--hp-font) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--hp-dark) !important;
    margin-bottom: 2px !important;
}

.testimonial-info p {
    font-family: var(--hp-font) !important;
    font-size: 0.85rem !important;
    color: var(--hp-muted) !important;
    margin: 0 !important;
}

/* ===================================================================
   8. CTA SECTION
   =================================================================== */

.cta-section {
    padding: 80px 0 !important;
    background: #fff !important;
}

.cta-section-inner {
    border-radius: var(--hp-radius-xl) !important;
    overflow: hidden;
    position: relative;
    padding: 80px 60px !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-section-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 100%);
    z-index: 1;
}

.cta-section-inner .text-box {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.cta-section-inner .section-title {
    font-family: var(--hp-font) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
}

.cta-section-inner .section-title .highlight {
    background: linear-gradient(135deg, var(--hp-accent), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section-inner .description {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
}

.cta-section-inner .btn-1 {
    border-radius: var(--hp-radius-sm) !important;
    padding: 16px 36px !important;
    font-family: var(--hp-font) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 8px 30px rgba(255, 56, 92, 0.3) !important;
    transition: all 0.3s var(--hp-transition) !important;
}

.cta-section-inner .btn-1:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 14px 40px rgba(255, 56, 92, 0.4) !important;
}

/* ===================================================================
   9. PROPERTY / HOST CTA SECTION
   =================================================================== */

.property {
    padding: 0 0 80px !important;
}

.property-container {
    border-radius: var(--hp-radius-xl) !important;
    overflow: hidden;
    position: relative;
    padding: 72px 48px !important;
    text-align: center;
}

.property-container .bg-layer {
    border-radius: var(--hp-radius-xl) !important;
}

.property-content h3 {
    font-family: var(--hp-font) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}

.property-content p {
    font-family: var(--hp-font) !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* ===================================================================
   10. TRENDING SECTION
   =================================================================== */

.trending {
    padding: 80px 0 !important;
    background: var(--hp-light) !important;
}

.trending .common-title h3 {
    font-family: var(--hp-font) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--hp-dark) !important;
    letter-spacing: -0.03em !important;
}

.trending-tab-btn {
    font-family: var(--hp-font) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    transition: all 0.25s ease !important;
}

.trending-tab-btn.active {
    background: var(--hp-dark) !important;
    color: #fff !important;
    border-color: var(--hp-dark) !important;
}

/* ===================================================================
   11. STAYS / CATEGORIES SWIPER
   =================================================================== */

.categories.newCategory {
    padding: 80px 0 !important;
    background: #fff !important;
}

.categories.newCategory .section-title {
    font-family: var(--hp-font) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}

.categories.newCategory .section-title a {
    font-family: var(--hp-font) !important;
    color: var(--hp-dark) !important;
    transition: color 0.2s ease;
}

.categories.newCategory .section-title a:hover {
    color: var(--hp-accent) !important;
}

.categories.newCategory .categories-single {
    border-radius: var(--hp-radius-md) !important;
    overflow: hidden;
    box-shadow: var(--hp-shadow-subtle) !important;
    border: 1px solid var(--hp-border);
    transition: all 0.4s var(--hp-transition) !important;
}

.categories.newCategory .categories-single:hover {
    box-shadow: var(--hp-shadow-hover) !important;
    transform: translateY(-6px) !important;
    border-color: transparent;
}

/* ===================================================================
   12. GLOBAL SECTION TITLES
   =================================================================== */

.common-title h3 {
    font-family: var(--hp-font) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
}

.section-header .section-title {
    font-family: var(--hp-font) !important;
}

/* ===================================================================
   13. SWIPER NAV BUTTONS (global)
   =================================================================== */

.swiper-button-next,
.swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid var(--hp-border) !important;
    box-shadow: var(--hp-shadow-subtle) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--hp-dark) !important;
    border-color: var(--hp-dark) !important;
    box-shadow: var(--hp-shadow-card) !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--hp-dark) !important;
}

/* ===================================================================
   14. COUNT / GUEST DROPDOWN
   =================================================================== */

.count-container {
    border-radius: var(--hp-radius-md) !important;
    box-shadow: var(--hp-shadow-hover) !important;
    border: 1px solid var(--hp-border) !important;
    background: #fff !important;
    padding: 16px 20px !important;
}

.count-single {
    padding: 14px 0 !important;
}

.count-single h6 {
    font-family: var(--hp-font) !important;
    font-weight: 600 !important;
}

.count-single p {
    font-family: var(--hp-font) !important;
    color: var(--hp-muted) !important;
}

.count-single-inner button {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1.5px solid var(--hp-border) !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
}

.count-single-inner button:hover {
    border-color: var(--hp-dark) !important;
    background: var(--hp-light) !important;
}

/* ===================================================================
   15. LOCATION SEARCH DROPDOWN
   =================================================================== */

.location-search-dropdown {
    border-radius: var(--hp-radius-md) !important;
    box-shadow: var(--hp-shadow-hover) !important;
    border: 1px solid var(--hp-border) !important;
    background: #fff !important;
}

.search-item {
    padding: 12px 16px !important;
    border-radius: var(--hp-radius-sm) !important;
    transition: background 0.2s ease !important;
}

.search-item:hover {
    background: var(--hp-light) !important;
}

.search-item .country {
    font-family: var(--hp-font) !important;
    font-weight: 600 !important;
}

/* ===================================================================
   16. RESPONSIVE ADJUSTMENTS
   =================================================================== */

@media (max-width: 991px) {
    .banner-section-one .banner-one-container {
        min-height: 80vh;
    }

    .banner-section-one .banner-content-box h2 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .banner-section-one .destination-search {
        margin: 32px 16px 0 !important;
        border-radius: var(--hp-radius-lg) !important;
    }

    .hero-trust-badges {
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature-section--backyard .feature-title {
        font-size: 2rem !important;
    }

    .cta-section-inner {
        padding: 56px 36px !important;
    }

    .cta-section-inner .section-title {
        font-size: 2rem !important;
    }

    .guide-section h2.display-5 {
        font-size: 2rem !important;
    }

    .category-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .banner-section-one .banner-one-container {
        min-height: 85vh;
    }

    .banner-section-one .destination-search-inner {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 8px !important;
    }

    .banner-section-one .destination-search .hr-line {
        width: 100% !important;
        height: 1px !important;
    }

    .banner-section-one .destination-search .btn-1 {
        width: 100% !important;
        justify-content: center;
        margin-top: 8px;
    }

    .hero-trust-badges .trust-badge {
        font-size: 0.8rem;
    }

    .popular-destination-grid-container {
        grid-template-columns: 1fr !important;
    }

    .destination-box2.large {
        grid-row: span 1 !important;
    }

    .cta-section-inner {
        padding: 48px 24px !important;
        text-align: center;
    }

    .cta-section-inner .text-box {
        max-width: 100%;
    }

    .cta-section-inner .section-title {
        font-size: 1.75rem !important;
    }

    .testimonial-single {
        padding: 28px 24px !important;
    }
}

@media (max-width: 576px) {
    .banner-section-one .banner-content-box h2 {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-trust-badges {
        gap: 16px;
    }

    .feature-section--backyard .feature-title {
        font-size: 1.75rem !important;
    }

    .guide-section h2.display-5 {
        font-size: 1.75rem !important;
    }

    .guide-section .step-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 26px !important;
        border-radius: 16px !important;
    }

    .category-section .section-title {
        font-size: 1.75rem !important;
    }

    .popular .common-title h3,
    .trending .common-title h3 {
        font-size: 1.75rem !important;
    }

    .testimonial .common-title h3 {
        font-size: 1.75rem !important;
    }
}
