/* ============================================================
   DEL PACIFICO ESTATE — Custom Styles
   ============================================================ */

:root {
    --teal: #4a9b8c;
    --teal-dark: #357a6d;
    --teal-light: #6bbdae;
    --white: #ffffff;
    --off-white: #f8f5f0;
    --cream: #f2ede6;
    --cream-dk: #e8e0d4;
    --brown: #3d2b1a;
    --brown-mid: #6b4c30;
    --gold: #c9a058;
    --text-dark: #2c2016;
    --text-mid: #5a4535;
    --text-light: rgba(255, 255, 255, 0.85);
    --nav-h: 70px;
}

/* ── HERO SECTION ── */
.hero-section {
    height: 465px !important;
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 500px;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #000;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 465px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-logo-img {
    height: 140px;
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
}

.btn-hero {
    border: 1.5px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
    background: transparent;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* ── PROPERTY HEADER SECTION ── */
.property-title-top {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.property-stats-top {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.btn-header-action {
    background: transparent;
    border: 1px solid var(--text-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    color: var(--text-dark);
}

.btn-header-action:hover {
    background: var(--cream);
}

/* ── GALLERY GRID ── */
.gallery-grid-section {
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 10px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.85);
}

.btn-show-all {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
}

/* ── PROPERTY CONTENT ── */
/* ── PROPERTY DETAILS TABS ── */
.property-details-navtab {
    border-bottom: 2px solid var(--cream-dk);
    margin-bottom: 40px;
    gap: 8px;
    /* flex-wrap: nowrap; */
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.property-details-navtab::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.property-details-navtab .nav-item {
    margin-bottom: -2px;
}

.property-details-navtab .nav-link {
    border: 1px solid var(--cream-dk) !important;
    border-radius: 6px 6px 0 0;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 15px;
    white-space: nowrap;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    background: transparent;
}

/* Bootstrap's .active class — neutralize it, we use .tab-active only */
.property-details-navtab .nav-link.active {
    background: transparent !important;
    border-color: var(--cream-dk) !important;
    color: var(--text-mid) !important;
}

/* Our custom active class — this is what we toggle via JS */
.property-details-navtab .nav-link.tab-active {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: #fff !important;
}

.property-details-navtab .nav-link:hover:not(.tab-active) {
    border-color: var(--gold-dark) !important;
    color: var(--gold-dark);
}

.tab-pane {
    padding-top: 10px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.btn-show-more {
    background: transparent;
    border: none;
    font-weight: 600;
    text-decoration: underline;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--teal-dark);
}

.aminities-img {
    width: 32px;
    height: 32px;
}

/* ── BOOKING CARD ── */
.sticky-booking {
    position: sticky;
    top: 110px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--cream-dk) !important;
    transition: box-shadow 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

.sidebar-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 2.2rem;
}

.sidebar-sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.6rem;
}

.input-wrap {
    background-color: var(--white);
    border: 1px solid #ddd !important;
    transition: border-color 0.2s;
}

.input-wrap:focus-within {
    border-color: var(--gold) !important;
}

.icon-gold {
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.small-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0;
    line-height: 1;
}

.small-input {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.small-input::placeholder {
    color: #ccc;
    font-weight: 400;
}

.separator {
    position: relative;
    font-size: 0.9rem;
    color: #888;
}

.separator::before,
.separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #eee;
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.contact-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--gold-dark);
}

.contact-link i {
    font-size: 1.1rem;
    color: var(--gold-dark);
}

.btn-reserve-airbnb {
    background: linear-gradient(to right, var(--teal) 0%, var(--teal-dark) 100%);
    border: none;
    color: var(--white);
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-reserve-airbnb:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: var(--white);
}

/* ── AVATAR ── */
.avatar-circle {
    width: 48px;
    height: 48px;
    background: #484848;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ── VILLA CARDS SECTION ── */
.villas-section {
    background-color: var(--cream);
    padding: 80px 0;
}

.villa-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--cream-dk);
    height: 100%;
    text-align: center;
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.villa-card-img-wrap {
    height: 250px;
    overflow: hidden;
}

.villa-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-card:hover .villa-card-img-wrap img {
    transform: scale(1.1);
}

.villa-card-body {
    padding: 25px;
}

.villa-card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brown);
}

.villa-card-link {
    display: inline-block;
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background-size: 200% auto;
    border-radius: 6px;
    padding: 16px;
    margin-top: 10px;
    background: linear-gradient(90deg, #0fa892 0%, #12b8a0 50%, #0fa892 100%);
    transition: color 0.2s;
}

.villa-card-link:hover {
    background: var(--teal-light);
}



/* ═══════════════════════════════════════════════
   LIGHTBOX MODAL
═══════════════════════════════════════════════ */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999999;
}

.modal-top-bar {
    height: 60px;
    width: 100%;
    color: #fff;
    font-size: 1.1rem;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
}

.modal-counter {
    font-weight: 600;
    color: #fff;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.modal-actions i {
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    color: #fff;
}

.modal-actions i:hover {
    opacity: 1;
}

.modal-content-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.gallery-carousel {
    width: 80%;
    height: 80%;
    overflow: hidden;
    position: relative;
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-out;
    margin: 0;
    padding: 0;
    list-style: none;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 34, 34, 0.6);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 20;
    cursor: pointer;
    transition: 0.2s;
}

.modal-nav-btn:hover {
    background: rgba(34, 34, 34, 0.9);
}

.modal-nav-btn--left {
    left: 40px;
}

.modal-nav-btn--right {
    right: 40px;
}

/* ═══════════════════════════════════════════════
   AMENITIES MODAL
═══════════════════════════════════════════════ */
.amenities-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000000000;
    width: 100%;
    height: 100%;
}

.amenities-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.amenities-content-wrap {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    background: #fff;
    margin: 7vh auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.amenities-header {
    padding: 18px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.close-icon {
    font-size: 22px;
    cursor: pointer;
    color: #222;
    transition: opacity 0.2s;
}

.close-icon:hover {
    opacity: 0.6;
}

.amenities-body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.amenities-body::-webkit-scrollbar {
    width: 6px;
}

.amenities-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.extra-small {
    font-size: 0.75rem;
    font-style: italic;
}

/* ── SERVICE AMENITIES SECTION ── */
.service-amenities-section {
    background: var(--white);
}

.service-amenities-title {
    font-family: 'Georgia', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-aminities-img {
    width: 100px;
    height: 100px;
}

.service-icon {
    font-size: 3rem;
    color: var(--teal);
    opacity: 0.85;
}

.service-sub-title {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.service-text {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-mid);
}

.service-link {
    color: var(--teal-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--teal-light);
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--teal);
}

.service-img-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: auto;
}

.service-img-card.tall {
    height: 280px;
}

.service-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

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

.btn-service-cta {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s, transform 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-service-cta:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── START PLANNING BANNER ── */
.start-planning-banner {
    background: var(--off-white);
    border-top: 1px solid var(--cream-dk);
    border-bottom: 1px solid var(--cream-dk);
}

.start-planning-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.start-planning-btn {
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-width: 1.5px;
    transition: background 0.2s, color 0.2s;
}

.start-planning-btn:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ── GROUP PLANNING SECTION ── */
.group-planning-section {
    position: relative;
    background-image: url('https://www.puravidacasas.com/uploads/2/8/7/1/28712979/background-images/1584227782.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.group-planning-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 30, 20, 0.78);
    z-index: 1;
}

.group-planning-title {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.group-planning-sub {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.group-planning-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 620px;
}

/* 3×2 Grid */
.group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.group-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.group-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.group-grid-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.group-grid-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 20px 14px 12px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.group-grid-item:hover .group-grid-label {
    transform: translateY(0);
}

.btn-group-cta {
    background: var(--gold);
    color: var(--brown);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 16px rgba(201, 160, 88, 0.35);
}

.btn-group-cta:hover {
    background: #b8893f;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 160, 88, 0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-side {
        display: none;
    }

    .hero-section {
        height: 380px !important;
    }

    .gallery-carousel {
        width: 95%;
        height: 70%;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-nav-btn--left {
        left: 10px;
    }

    .modal-nav-btn--right {
        right: 10px;
    }

    .amenities-content-wrap {
        width: 95%;
        margin: 3vh auto;
        height: 90vh;
    }

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

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

    .service-img-card {
        height: 180px;
    }

    .service-img-card.tall {
        height: 220px;
    }
}









/* ── STICKY BOOKING BAR ── */
.booking-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(15, 168, 146, 0.2);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    z-index: 9999;
    /* Ensure it's above everything */
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
}

.booking-sticky-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5rem;
    gap: 20px;
}

.sticky-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.sticky-subtitle {
    font-size: 0.82rem;
    color: #666;
    margin: 2px 0 0;
}

.sticky-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-sticky-primary {
    background: linear-gradient(90deg, #0fa892 0%, #12b8a0 50%, #0fa892 100%);
    background-size: 200% auto;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    border: none;
}

.btn-sticky-primary:hover {
    background-position: right center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(15, 168, 146, 0.3);
}

.btn-sticky-outline {
    border: 1.5px solid var(--teal);
    color: var(--teal);
    background: transparent;
    padding: 9px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-sticky-outline:hover {
    background: rgba(15, 168, 146, 0.05);
    color: var(--teal-dark);
    border-color: var(--teal-dark);
}

@media (max-width: 991px) {
    .sticky-info {
        display: none;
        /* Hide text on mobile to save space */
    }

    .sticky-bar-content {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .sticky-actions {
        width: 100%;
        justify-content: space-around;
    }

    .btn-sticky-primary {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .btn-sticky-outline {
        padding: 9px 12px;
        font-size: 0.8rem;
    }
}


.jficc .embedded-agent-container.align-left:not([data-selected-position*=right-sidebar]),
.jficc .embedded-agent-container[data-selected-position*=left-sidebar] {
    /* bottom: 70px; */
    left: 0;
    right: initial;
    z-index: 9999 !important;
}

.chTSxy * {
    box-sizing: border-box;
    /* bottom: 55px; */
}












.tour-planning-section {
    padding: 70px 0;
    background-color: var(--off-white);
}

.featured-categories h3 {
    font-size: 42px;
    font-weight: 700;
}

.featured-categories {
    background: white;
}

.planning-badge {
    display: inline-block;
    background: rgba(74, 155, 140, 0.1);
    color: var(--teal-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.planning-title {

    font-size: 2.5rem;
    color: var(--brown);
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 700;
}

.planning-title span {

    color: var(--teal-dark);
}

.planning-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}

.planning-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planning-checks li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-mid);
}

.planning-checks li i {
    color: var(--teal-dark);
    font-size: 1.4rem;
}

.planning-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.planning-info-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    text-align: left;
}

.planning-info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.card-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0;
}

.planning-footer-cta {
    text-align: center;
}

.planning-footer-cta p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 15px;
}

.btn-planning-cta {
    background: var(--teal-dk);
    color: white !important;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-planning-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .planning-title {
        font-size: 2.8rem;
    }

    .planning-info-card {
        padding: 25px;
        gap: 15px;
    }
}



.ratio-4x3 {
    --bs-aspect-ratio: 40%;
}


















/* ── TOOLBAR BUTTONS ── */
.tb-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tb-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.tb-btn.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}

.grid-thumb {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s;
    aspect-ratio: 4/3;
}

.grid-thumb:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.03);
}

.grid-thumb.active-thumb {
    border-color: #fff;
}

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

/* ══ CHECK-IN SECTION STYLES ══ */
.checkin-section {}

.checkin-main-title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown, #3d2b1a);
    margin-bottom: 16px;
}

.checkin-intro-text {
    font-size: 1rem;
    color: var(--text-mid, #5a4535);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 12px;
}

/* Video Cards */
.video-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1) !important;
}

/* Waze Buttons */
.btn-waze {
    background: #fff;
    border: 1.5px solid #33ccff;
    color: #111;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-waze:hover {
    background: #e8faff;
    box-shadow: 0 4px 14px rgba(51, 204, 255, 0.2);
    color: #111;
}

/* Map Cards */
.map-card {
    background: #fff;
}

.map-card-label {
    font-size: 0.9rem;
    color: var(--brown, #3d2b1a);
}

/* Check-in Info Cards */
.checkin-info-card {
    background: var(--off-white, #f8f5f0);
    transition: transform 0.3s ease;
}

.checkin-info-card:hover {
    transform: translateY(-4px);
}

.text-teal {
    color: var(--teal, #4a9b8c);
}

/* Items to Expect Cards */
.expect-card {
    background: var(--off-white, #f8f5f0);
    transition: transform 0.3s ease;
}

.expect-card:hover {
    transform: translateY(-4px);
}

/* Welcome Packet Cards */
.welcome-packet-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-packet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1) !important;
}

.btn-download-packet {
    background: var(--teal, #4a9b8c);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-download-packet:hover {
    background: var(--teal-dark, #357a6d);
    color: #fff;
    transform: translateY(-2px);
}

/* Checkout Step Cards */
.checkout-step-card {
    background: var(--off-white, #f8f5f0);
    position: relative;
    transition: transform 0.3s ease;
}

.checkout-step-card:hover {
    transform: translateY(-4px);
}

.checkout-step-num {
    width: 44px;
    height: 44px;
    background: var(--teal, #4a9b8c);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.eXFrmt {
    padding: 0px !important;
}

/* ── DEL PACIFICO ESTATE — PAGE SPECIFIC STYLES ── */
#delPacificoPage .tb-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#delPacificoPage .tb-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

#delPacificoPage .tb-btn.active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}

#delPacificoPage .grid-thumb {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s;
    aspect-ratio: 4/3;
}

#delPacificoPage .grid-thumb:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.03);
}

#delPacificoPage .grid-thumb.active-thumb {
    border-color: #fff;
}

#delPacificoPage .grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══ CHECK-IN SECTION STYLES ══ */
.checkin-main-title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown, #3d2b1a);
    margin-bottom: 16px;
}

.checkin-intro-text {
    font-size: 1rem;
    color: var(--text-mid, #5a4535);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 12px;
}

/* Video Cards */
.video-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1) !important;
}

/* Waze Buttons */
.btn-waze {
    background: #fff;
    border: 1.5px solid #33ccff;
    color: #111;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-waze:hover {
    background: #e8faff;
    box-shadow: 0 4px 14px rgba(51, 204, 255, 0.2);
    color: #111;
}

/* Map Cards */
.map-card {
    background: #fff;
}

.map-card-label {
    font-size: 0.9rem;
    color: var(--brown, #3d2b1a);
}

/* Check-in Info Cards */
.checkin-info-card {
    background: var(--off-white, #f8f5f0);
    transition: transform 0.3s ease;
}

.checkin-info-card:hover {
    transform: translateY(-4px);
}

.text-teal {
    color: var(--teal, #4a9b8c);
}

/* Items to Expect Cards */
.expect-card {
    background: var(--off-white, #f8f5f0);
    transition: transform 0.3s ease;
}

.expect-card:hover {
    transform: translateY(-4px);
}

/* Welcome Packet Cards */
.welcome-packet-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-packet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1) !important;
}

.btn-download-packet {
    background: var(--teal, #4a9b8c);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-download-packet:hover {
    background: var(--teal-dark, #357a6d);
    color: #fff;
    transform: translateY(-2px);
}

/* Welcome Packet PDF Frames */
.packet-iframe-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #f5f0ea;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

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

/* Availability Calendar Fix */
#inlineCalendar {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 40px;
}

.flatpickr-calendar.inline {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
}

/* Checkout Step Cards */
.checkout-step-card {
    background: var(--off-white, #f8f5f0);
    position: relative;
    transition: transform 0.3s ease;
}

.checkout-step-card:hover {
    transform: translateY(-4px);
}

.checkout-step-num {
    width: 44px;
    height: 44px;
    background: var(--teal, #4a9b8c);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-details {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #0fa892 0%, #12b8a0 50%, #0fa892 100%);
    background-size: 200% auto;
    color: #fff;
    text-align: center;
    border-radius: 15px;
    padding: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: auto;
    border: none;
    font-size: 0.95rem;
}
