/* ─────────────────────────────────────────────────────────────────────────
   AD PACKAGES — ADMIN METABOX CUSTOM STYLES
   ───────────────────────────────────────────────────────────────────────── */
#adp-meta-wrap {
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    padding: 10px;
    border-radius: 4px;
}

.adp-tabs-nav {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 20px;
    gap: 8px;
}

.adp-tab-btn {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.2s ease-in-out;
}

.adp-tab-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.adp-tab-btn.active {
    background: #065f46;
    color: #fff;
    border-color: #065f46;
}

.adp-tab-content {
    display: none;
    animation: adpFadeIn 0.3s ease-in-out;
}

.adp-tab-content.active {
    display: block;
}

@keyframes adpFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adp-field-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    align-items: start;
}

.adp-field-row:last-child {
    border-bottom: none;
}

.adp-field-label strong {
    display: block;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 4px;
}

.adp-field-label small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.adp-color-grid,
.adp-split-grid {
    display: flex;
    gap: 20px;
}

.adp-color-grid>div,
.adp-split-grid>div {
    flex: 1;
}

.adp-color-grid label,
.adp-split-grid label {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #4b5563;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.adp-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px;
    background: #f9fafb;
}

.adp-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

/* Destination Blocks Tour Checklist styles */
.adp-tour-checklist {
    max-height: 200px !important;
    overflow-y: auto !important;
    border: 1px solid #d1d5db !important;
    padding: 12px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
}

.adp-tour-checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 0 6px 0 !important;
    padding: 4px 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    transition: background 0.15s ease;
    border-radius: 4px;
}

.adp-tour-checkbox-label:hover {
    background: #f3f4f6 !important;
}

.adp-tour-checkbox-label input[type="checkbox"] {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 4px !important;
    border: 1px solid #d1d5db !important;
    flex-shrink: 0 !important;
}

.adp-checkbox-item input {
    margin: 0;
}

/* FAQ Repeater Layout */
.adp-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.adp-faq-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.adp-faq-card-header {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    color: #374151;
}

.adp-faq-card-body {
    padding: 16px;
}

.adp-remove-faq-row {
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.adp-remove-faq-row:hover {
    text-decoration: underline;
}


/* ─────────────────────────────────────────────────────────────────────────
   AD PACKAGES — FRONTEND FESTIVAL THEMES VISUAL ACCENTS
   ───────────────────────────────────────────────────────────────────────── */

/* 1. DIWALI THEME (Festival of Lights) */
.adp-theme-diwali {
    --adp-gradient-from: #0f0728;
    --adp-gradient-to: #290e03;
    --adp-glow-color: #ffd700;
}

.adp-theme-diwali .adp-glow-card {
    box-shadow: 0 4px 20px rgba(253, 186, 116, 0.1);
    transition: all 0.3s ease;
}

.adp-theme-diwali .adp-glow-card:hover {
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
    border-color: #fd014f;
}

.adp-theme-diwali .diwali-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: adpSparkleTwinkle 1.8s infinite ease-in-out;
}

@keyframes adpSparkleTwinkle {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.6);
        box-shadow: 0 0 2px #ffedd5;
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 8px #f59e0b;
    }
}

.diwali-diya-flame {
    transform-origin: bottom center;
    animation: adpDiyaFlicker 1.4s infinite ease-in-out alternate;
}

@keyframes adpDiyaFlicker {
    0% {
        transform: scaleX(0.9) skewX(-2deg);
        filter: brightness(1);
    }

    100% {
        transform: scaleX(1.1) skewX(2deg);
        filter: brightness(1.2) drop-shadow(0 0 4px #f59e0b);
    }
}


/* 2. PONGAL THEME (Makar Sankranti / Harvest) */
.adp-theme-pongal {
    --adp-gradient-from: #022c22;
    --adp-gradient-to: #1e3a1e;
}

.adp-theme-pongal .adp-harvest-border {
    border: 3px double #fd014f;
}

.adp-theme-pongal .kolam-svg {
    opacity: 0.08;
    transform: rotate(0deg);
    animation: adpSlowSpin 60s infinite linear;
}

@keyframes adpSlowSpin {
    100% {
        transform: rotate(360deg);
    }
}

.pongal-sugarcane-leaf {
    transform-origin: bottom left;
    animation: adpSugarcaneSway 4s infinite ease-in-out alternate;
}

@keyframes adpSugarcaneSway {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(3deg);
    }
}


/* 3. DURGA PUJA THEME (Divine Mother & Kash Flower) */
.adp-theme-durgapuja {
    --adp-gradient-from: #4c0519;
    --adp-gradient-to: #581c0c;
}

.adp-theme-durgapuja .durga-red-border {
    border: 4px solid #b91c1c;
    border-image: linear-gradient(to right, #b91c1c, #f59e0b, #b91c1c) 1;
}

.kash-flower-stem {
    transform-origin: bottom center;
    animation: adpKashSway 5s infinite ease-in-out alternate;
}

@media (min-width: 1024px) {
    .kash-flower-stem {
        height: 24rem !important;
        width: 12rem !important;
    }
}

@keyframes adpKashSway {
    0% {
        transform: rotate(-3deg) skewX(-2deg);
    }

    100% {
        transform: rotate(3deg) skewX(2deg);
    }
}


/* 4. CHRISTMAS THEME (Winter Wonderland) */
.adp-theme-christmas {
    --adp-gradient-from: #064e3b;
    --adp-gradient-to: #0f172a;
}

.adp-snowfall-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}


/* 5. NEW YEAR THEME (Confetti & Fireworks) */
.adp-theme-newyear {
    --adp-gradient-from: #020617;
    --adp-gradient-to: #0f172a;
}

.newyear-firework {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: adpFireworkBurst 2.5s infinite ease-out;
}

@keyframes adpFireworkBurst {
    0% {
        transform: scale(0.1);
        opacity: 0;
        box-shadow: 0 0 0 0 #f59e0b;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 0 0 40px 10px transparent;
    }
}


/* 6. GANESH PUJA THEME */
.adp-theme-ganeshpuja {
    --adp-gradient-from: #450a0a;
    --adp-gradient-to: #3f1301;
}

.ganesha-aura {
    animation: adpSpiritualPulse 3s infinite ease-in-out alternate;
}

@keyframes adpSpiritualPulse {
    0% {
        opacity: 0.4;
        filter: drop-shadow(0 0 5px #f59e0b);
    }

    100% {
        opacity: 0.9;
        filter: drop-shadow(0 0 20px #eab308);
    }
}


/* 7. INDEPENDENCE / REPUBLIC DAY (Patriotic Tricolor) */
.adp-theme-independence {
    --adp-gradient-from: #030712;
    --adp-gradient-to: #111827;
}

.tricolor-ribbon {
    height: 6px;
    background: linear-gradient(90deg, #fd014f 0%, #FFFFFF 33%, #FFFFFF 66%, #128807 100%);
}

.ashoka-chakra-spin {
    transform-origin: center;
    animation: adpSlowSpin 24s infinite linear;
}


/* SHARED INTERACTIVE & MICRO-ANIMATIONS */
.adp-btn-hover-grow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.adp-btn-hover-grow:hover {
    transform: translateY(-2px) scale(1.02);
}

.adp-card-hover-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.adp-card-hover-effect:hover {
    transform: translateY(-8px);
}

/* ─────────────────────────────────────────────────────────────────────────
   CUSTOM UI OVERRIDES
   ───────────────────────────────────────────────────────────────────────── */
.adp-theme-container h1,
.adp-theme-container .leading-none {
    line-height: 1.4 !important;
}

@media (max-width: 767px) {

    .adp-theme-container h1,
    .adp-theme-container h1.leading-none {
        line-height: 3rem !important;
    }
}

.adp-theme-container .font-extrabold {
    font-weight: 600 !important;
}

.adp-theme-container .text-4xl {
    font-size: 4.4vh !important;
    line-height: 2.5rem !important;
}

/* Limit all font weights to a maximum of 600 */
.adp-theme-container h1,
.adp-theme-container h2,
.adp-theme-container h3,
.adp-theme-container h4,
.adp-theme-container h5,
.adp-theme-container h6,
.adp-theme-container strong,
.adp-theme-container b,
.adp-theme-container .font-bold,
.adp-theme-container .font-extrabold,
.adp-theme-container .font-black {
    font-weight: 600 !important;
}

/* Body container padding left and right is 0.6rem */
.adp-theme-container .px-6 {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
}

/* Card content padding and spacing compaction */
.adp-theme-container .adp-glow-card .p-6,
.adp-theme-container .adp-glow-card .p-4 {
    padding: 0.8rem !important;
}

/* Ensure card titles are single line with ellipsis, and override any min-height */
.adp-theme-container .adp-glow-card h4 {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 0 !important;
    margin-bottom: 0.375rem !important;
}

/* Compact spacing for child elements inside cards */
.adp-theme-container .adp-glow-card .mb-3,
.adp-theme-container .adp-glow-card .mb-4 {
    margin-bottom: 0.5rem !important;
}

.adp-theme-container .adp-glow-card .pt-4 {
    padding-top: 0.5rem !important;
}

.adp-theme-container .adp-glow-card .mt-4 {
    margin-top: 0.5rem !important;
}

.adp-theme-container .adp-glow-card .py-3.5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Enlarge details and get quote buttons, increase font size, set border radius to 8px */
.adp-theme-container .adp-glow-card a.flex-1,
.adp-theme-container .adp-glow-card button.flex-1 {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
    font-size: 11.5px !important;
    border-radius: 8px !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   EXPERT TRIP PLANNER (ETP) TEMPLATE FORM STYLES
   ───────────────────────────────────────────────────────────────────────── */
.jt-eadp-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    background: #ffffff;
}

.jt-eadp-header-img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.jt-eadp-body {
    padding: 24px 28px 24px;
}

.jt-eadp-body h2 {
    margin: 0 0 10px 0;
    font-size: 25px;
    font-weight: 600 !important;
    color: #0f172a;
    letter-spacing: 0em;
    line-height: 1.25;
}

.adp-theme-container .jt-eadp-body h2 span {
    color: var(--theme-primary) !important;
}

.jt-eadp-subtitle {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 1.5vh;
    color: #475569;
    line-height: 1.4;
}

.adp-theme-container .jt-eadp-subtitle i {
    color: var(--theme-primary);
}

.adp-theme-container .jt-eadp-subtitle strong {
    color: var(--theme-primary);
}

.jt-eadp-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 15px 0;
}

.jt-eadp-input-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    padding: 2px 14px;
    transition: all 0.2s ease;
}

.adp-theme-container .jt-eadp-input-row:focus-within {
    border-color: var(--theme-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 41, 94, 0.1);
}

.adp-theme-container .jt-eadp-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e6f6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary) !important;
    margin-right: 12px;
    flex-shrink: 0;
}

.jt-eadp-icon-circle i {
    font-size: 14px;
}

.jt-eadp-input-field {
    flex: 1;
    border: none !important;
    outline: none !important;
    font-size: 14px;
    color: #0f172a;
    padding: 12px 0;
    background: transparent !important;
    box-shadow: none !important;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

/* Custom dropdown styling */
.jt-eadp-select-field {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 16px;
    padding-right: 24px;
    cursor: pointer;
}

/* Phone specific styles */
.jt-eadp-phone-prefix-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 12px;
    border-right: 1.5px solid #e2e8f0;
    margin-right: 12px;
}

.jt-eadp-prefix-text {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.adp-theme-container .jt-eadp-submit-btn {
    background: var(--theme-secondary) !important;
    color: #ffffff !important;
    border: none;
    padding: 14px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.adp-theme-container .jt-eadp-submit-btn:hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.jt-eadp-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    color: #64748b;
    margin: 5px 0 0 0;
}

.adp-theme-container .jt-eadp-privacy-note i {
    color: var(--theme-primary) !important;
    font-size: 12px;
}

.jt-eadp-footer-trust {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.jt-eadp-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jt-eadp-trust-item:not(:last-child) {
    border-right: 1px solid #cbd5e1;
    padding-right: 8px;
}

.adp-theme-container .jt-eadp-trust-icon {
    font-size: 20px;
    color: var(--theme-primary) !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jt-eadp-trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.jt-eadp-trust-text strong {
    font-size: 11.5px;
    font-weight: 700;
    color: #0f172a;
}

.jt-eadp-trust-text span {
    font-size: 10.5px;
    color: #64748b;
}

/* Specific Hero Single Line Form Adjustments */
.adp-hero-lead-form .jt-eadp-submit-btn {
    width: auto !important;
}

@media(max-width: 1023px) {
    .adp-hero-lead-form .jt-eadp-submit-btn {
        width: 100% !important;
    }
}

@media(max-width:640px) {
    .jt-eadp-wrap>.jt-eadp-footer-trust {
        display: none !important;
    }

    .jt-eadp-body {
        padding: 10px 15px 0px;
    }

    .jt-eadp-footer-trust {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
        padding: 20px 5px;
    }

    .jt-eadp-trust-item {
        gap: 10px;
    }

    .jt-eadp-trust-icon {
        font-size: 14px;
    }

    .jt-eadp-trust-text strong {
        font-size: 9px;
    }

    .jt-eadp-trust-text span {
        font-size: 8px;
    }

    .jt-eadp-trust-item:not(:last-child) {
        border-right: 1px solid #cbd5e1;
        border-bottom: none;
        padding-right: 4px;
        padding-bottom: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   EXCLUSIVE CAROUSEL SWIPE LAYOUT STYLES
   ───────────────────────────────────────────────────────────────────────── */
.scrollbar-none::-webkit-scrollbar {
    display: none !important;
}

.scrollbar-none {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

#exclusive-carousel>div {
    scroll-snap-align: start;
    flex: 0 0 80% !important;
    /* 1.2 cards visible on mobile */
}

@media (min-width: 768px) {
    #exclusive-carousel>div {
        flex: 0 0 45% !important;
    }
}

@media (min-width: 1024px) {
    #exclusive-carousel>div {
        flex: 0 0 30% !important;
        /* 3.2 cards visible on desktop */
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   ETP MODAL POPUP BACKDROP & TRANSITION STYLES
   ───────────────────────────────────────────────────────────────────────── */
#eadp-popup-modal {
    transition: opacity 0.3s ease;
}

#eadp-popup-modal.hidden {
    display: none !important;
}

#eadp-popup-modal:not(.hidden) {
    display: flex !important;
}

#eadp-popup-modal .transform {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─────────────────────────────────────────────────────────────────────────
   HERO INLINE ETP SINGLE ROW HORIZONTAL ADJUSTMENTS (DESKTOP)
   ───────────────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
    .adp-hero-lead-form {
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .adp-hero-lead-form .jt-eadp-input-row {
        flex: 1 !important;
        margin-bottom: 0 !important;
    }

    .adp-hero-lead-form .jt-eadp-submit-btn {
        width: auto !important;
        white-space: nowrap !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
   NEW MARKETING PRESET THEME ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────────── */

/* 1. MODERN PRESET (Outfit / Minimalist Slate) */
.adp-theme-ad_modern .adp-glow-card {
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.adp-theme-ad_modern .adp-glow-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
    border-color: var(--theme-primary) !important;
}

/* 2. VIBRANT PRESET (Inter / Energetic Pink & Rose) */
.adp-theme-ad_vibrant .adp-glow-card {
    border-radius: 20px !important;
    border: 1px solid #fce7f3 !important;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.05) !important;
    transition: all 0.25s ease !important;
}

.adp-theme-ad_vibrant .adp-glow-card:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.2) !important;
    border-color: var(--theme-primary) !important;
}

/* 3. LUXURY PRESET (Playfair Display Gold & Dark Gold) */
.adp-theme-ad_luxury .adp-glow-card {
    border-radius: 8px !important;
    border: 1px solid #d4af37 !important;
    background-color: #0d0d0d !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.05) !important;
    color: #f3f4f6 !important;
}

.adp-theme-ad_luxury .adp-glow-card:hover {
    border-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15) !important;
}

.adp-theme-ad_luxury .adp-glow-card h4 {
    color: #ffffff !important;
}

.adp-theme-ad_luxury .adp-glow-card .text-gray-900 {
    color: #ffffff !important;
}

.adp-theme-ad_luxury .adp-glow-card .bg-white {
    background-color: #0d0d0d !important;
}

/* 4. CORPORATE CLEAN PRESET (Open Sans Professional Blue) */
.adp-theme-ad_corporate .adp-glow-card {
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.adp-theme-ad_corporate .adp-glow-card:hover {
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.1) !important;
    border-color: var(--theme-primary) !important;
}

/* ─────────────────────────────────────────────────────────────────────────
   TOUR PREVIEW POPUP MODAL STYLES
   ───────────────────────────────────────────────────────────────────────── */
#adp-tour-preview-modal {
    transition: opacity 0.3s ease;
}

#adp-tour-preview-modal.hidden {
    display: none !important;
}

#adp-tour-preview-modal:not(.hidden) {
    display: flex !important;
}

#adp-tour-preview-modal .transform {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-theme-primary {
    color: var(--theme-primary);
}

@media (max-width: 767px) {

    /* Make popups sit at the bottom of the screen on mobile */
    #adp-tour-preview-modal,
    #eadp-popup-modal {
        align-items: flex-end !important;
        justify-content: center !important;
    }

    /* Make inner transform cards behave as a slide-up bottom drawer */
    #adp-tour-preview-modal .transform,
    #eadp-popup-modal .transform {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 24px 24px 0 0 !important;
        max-height: 85vh !important;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }

    /* Map scale-95 and scale-100 to vertical transitions on mobile */
    #adp-tour-preview-modal .scale-95,
    #eadp-popup-modal .scale-95 {
        transform: translateY(100%) scale(1) !important;
    }

    #adp-tour-preview-modal .scale-100,
    #eadp-popup-modal .scale-100 {
        transform: translateY(0) scale(1) !important;
    }
}

@media (max-width: 767px) {
    .adp-theme-container .adp-hero-form-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Reviews badges styling */
.adp-hero-reviews-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
.adp-review-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adp-review-badge i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.adp-review-text {
    line-height: 1.2;
}
.adp-review-text span {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .adp-hero-reviews-wrap {
        display: flex !important;
        justify-content: space-between !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-top: 1.5rem !important;
    }
    
    /* Push WhatsApp and Scroll to Top buttons up on mobile when sticky bar is present */
    .single-ad_package .tc-whatsapp-button {
        bottom: calc(1.5rem + 68px) !important;
    }
    .single-ad_package .tc-scroll-top-button {
        bottom: calc(5rem + 68px) !important;
    }
    
    /* Adjust body padding so content isn't cut off by the sticky bar */
    .single-ad_package {
        padding-bottom: 68px !important;
    }
    
    .adp-mobile-sticky-bar {
        display: flex !important;
    }
}

/* Strict hide rule for PC/Desktop */
@media (min-width: 768px) {
    .adp-mobile-sticky-bar {
        display: none !important;
    }
}

/* Ensure all popups appear above the mobile sticky bottom bar */
#adp-tour-preview-modal,
#eadp-popup-modal,
[id^="adp-mobile-drawer-"],
.modal,
.popup,
.adp-popup-wrap {
    z-index: 999999 !important;
}

/* Ringing vibration animation for sticky call phone icon (2s active, 2s quiet) */
@keyframes adpPhoneRinging {
    0% { transform: rotate(0) scale(1); }
    5% { transform: rotate(-15deg) scale(1.15); }
    10% { transform: rotate(15deg) scale(1.15); }
    15% { transform: rotate(-15deg) scale(1.15); }
    20% { transform: rotate(15deg) scale(1.15); }
    25% { transform: rotate(-10deg) scale(1.1); }
    30% { transform: rotate(10deg) scale(1.1); }
    35% { transform: rotate(-5deg) scale(1.05); }
    40% { transform: rotate(5deg) scale(1.05); }
    45%, 50% { transform: rotate(0) scale(1); }
    100% { transform: rotate(0) scale(1); }
}

.adp-ringing-phone i {
    animation: adpPhoneRinging 4s infinite ease-in-out;
    display: inline-block;
    transform-origin: center center;
}

/* Hide scrollbar utility for horizontal scroll carousels */
.scrollbar-none::-webkit-scrollbar {
    display: none !important;
}
.scrollbar-none {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}