/* Do Dham Yatra Standard 4 Nights 5 Days Ex Haridwar Custom CSS */

:root {
    --dd-primary: #111827;
    --dd-primary-light: #1f2937;
    --dd-secondary: #fd5056;
    --dd-secondary-hover: #e03e44;
    --dd-gold: #dca842;
    --dd-gold-dark: #b88628;
    --dd-bg-light: #ffffff;
    --dd-bg-warm: #fdfbf7;
    --dd-bg-soft: #f8fafc;
    --dd-bg-accent: #f5efe6;
    --dd-text-dark: #1e293b;
    --dd-text-muted: #64748b;
    --dd-border: #e2e8f0;
    --dd-shadow-sm: 0 4px 12px rgba(7, 43, 97, 0.05);
    --dd-shadow-md: 0 10px 25px rgba(7, 43, 97, 0.08);
    --dd-shadow-lg: 0 15px 35px rgba(7, 43, 97, 0.12);
    --dd-radius: 16px;
    --dd-radius-sm: 10px;
}

/* Base Container & Section Defaults (Light Theme Only) */
.dd-wrapper {
    background-color: var(--dd-bg-warm);
    color: var(--dd-text-dark);
    font-family: inherit;
    overflow-x: hidden;
}

.dd-section {
    padding: 2.5rem 0;
    position: relative;
    background-color: var(--dd-bg-warm);
}

.dd-section-alt {
    padding: 2.5rem 0;
    position: relative;
    background-color: var(--dd-bg-light);
}

.dd-section-soft {
    padding: 2.5rem 0;
    position: relative;
    background-color: var(--dd-bg-soft);
}

/* Typography & Section Titles */
.dd-section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 1.75rem auto;
}

.dd-header-eyebrow {
    color: #fd5056;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.dd-title {
    color: #111827;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.dd-title-red {
    color: #fd5056;
}

.dd-desc {
    color: var(--dd-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0.5rem auto 0.75rem auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.dd-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1rem;
}

.dd-divider-line {
    display: block;
    width: 75px;
    height: 1.5px;
}

.dd-divider-line.left {
    background: linear-gradient(to right, transparent, #fd5056);
}

.dd-divider-line.right {
    background: linear-gradient(to left, transparent, #fd5056);
}

.dd-divider-symbol {
    color: #fd5056;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Buttons */
.dd-btn-primary {
    background: linear-gradient(135deg, var(--dd-secondary) 0%, #e03e44 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 6px 18px rgba(253, 80, 86, 0.25);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.dd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.35);
    color: #ffffff !important;
}

.dd-btn-outline {
    background: transparent;
    color: var(--dd-primary) !important;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--dd-primary);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.dd-btn-outline:hover {
    background-color: var(--dd-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.dd-btn-gold {
    background: linear-gradient(135deg, var(--dd-gold) 0%, var(--dd-gold-dark) 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 6px 18px rgba(220, 168, 66, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.dd-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 168, 66, 0.4);
    color: #ffffff !important;
}

/* Hero Section - Split Panel Design */
.dd-hero {
    position: relative;
    min-height: 540px;
    padding: 4.5rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #030c1c;
}

/* Ken Burns keyframes for each panel inner background — keeps container fixed */
@keyframes dd-kb-left {
    from {
        transform: scale(1.0) translate(0%, 0%);
    }
    to {
        transform: scale(1.14) translate(-1.5%, -1%);
    }
}

@keyframes dd-kb-right {
    from {
        transform: scale(1.1) translate(0%, 1%);
    }
    to {
        transform: scale(1.0) translate(1.5%, -0.5%);
    }
}

/* Split background panels container */
.dd-hero-panels {
    position: absolute;
    inset: 0;
    display: flex;
    background-color: #030c1c;
}

.dd-hero-panel {
    flex: 1;
    position: relative;
    overflow: hidden; /* Clips the oversized inner background */
    background-color: #030c1c;
    /* flex transition for hover expansion */
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.dd-hero-panel-left {
    margin-right: -1px; /* Overlaps 1px to eliminate flex subpixel rendering gaps */
    z-index: 1;
}

/* Oversized inner background element that animates smoothly without moving outer container */
.dd-hero-panel-bg {
    position: absolute;
    inset: -12%; /* Oversized so transform translation never exposes container edges */
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Left panel background: slow zoom-in + drift up-left */
.dd-hero-panel-left .dd-hero-panel-bg {
    animation: dd-kb-left 26s ease-in-out alternate infinite;
}

/* Right panel background: starts zoomed, drifts out + right */
.dd-hero-panel-right .dd-hero-panel-bg {
    animation: dd-kb-right 20s ease-in-out alternate infinite;
}

/* Expand panel on hover & pause Ken Burns animation */
.dd-hero-panel:hover {
    flex: 1.1;
}

.dd-hero-panel:hover .dd-hero-panel-bg {
    animation-play-state: paused;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .dd-hero-panel-bg {
        animation: none !important;
        will-change: auto;
    }
}


/* Panel overlay: moderate — photos show beautifully at edges, vignette handles text zone */
.dd-hero-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(3, 12, 28, 0.52) 0%,
        rgba(3, 12, 28, 0.28) 40%,
        rgba(3, 12, 28, 0.38) 70%,
        rgba(3, 12, 28, 0.72) 100%
    );
}

/* Centered radial vignette: the theatrical spotlight technique.
   Dark ellipse sits precisely behind heading + text content.
   Edges remain lighter so photos breathe and show through. */
.dd-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: radial-gradient(
        ellipse 62% 70% at 50% 45%,
        rgba(2, 8, 20, 0.72) 0%,
        rgba(2, 8, 20, 0.50) 35%,
        rgba(2, 8, 20, 0.18) 60%,
        transparent 80%
    );
}



/* Static temple name labels layer anchored above panels (idle state) */
.dd-hero-labels-layer {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.dd-hero-panel-label {
    position: absolute;
    bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    white-space: nowrap;
}

.dd-label-left {
    right: calc(50% + 1.5rem);
}

.dd-label-right {
    left: calc(50% + 1.5rem);
}

/* Content layer */
.dd-hero-content-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 1.5rem 0;
}

/* Eyebrow - with flanking decorative lines */
.dd-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dd-eyebrow-text {
    color: var(--dd-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.dd-eyebrow-line {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--dd-gold);
    opacity: 0.7;
    flex-shrink: 0;
}

/* Hero heading - Cinzel serif display font */
.dd-hero-heading {
    font-family: 'Cinzel', Georgia, serif;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 0, 0, 0.35),
        0 12px 48px rgba(0, 0, 0, 0.2);
}

/* Gold color for "Standard Package" line */
.dd-hero-heading span {
    color: var(--dd-gold);
    display: block;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Description text - readable, not too wide */
.dd-hero-para {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.25rem auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* CTA row */
.dd-hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA - solid red pill */
.dd-hero-btn-primary {
    background: var(--dd-secondary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    box-shadow: 0 4px 18px rgba(253, 80, 86, 0.45);
}

.dd-hero-btn-primary:hover {
    background: var(--dd-secondary-hover);
    box-shadow: 0 8px 28px rgba(253, 80, 86, 0.55);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Ghost CTA - frosted glass outline pill */
.dd-hero-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.dd-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Stats bar docked at the very bottom of the hero */
.dd-hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(7, 43, 97, 0.08);
}

.dd-hero-stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.dd-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-align: center;
}

.dd-stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dd-primary);
    line-height: 1.2;
    white-space: nowrap;
}

.dd-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 0.2rem;
    white-space: nowrap;
}

.dd-hero-stat-divider {
    width: 1px;
    background: var(--dd-border);
    align-self: stretch;
    margin: 0.6rem 0;
    flex-shrink: 0;
}





/* Key Quick Info Strip — Standard Floating Card Overlap */
.dd-quick-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -3rem;
    padding-bottom: 1.5rem;
}

.dd-quick-strip {
    background: #ffffff;
    border-radius: var(--dd-radius);
    box-shadow: 0 16px 40px rgba(7, 43, 97, 0.11), 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 1.6rem 2rem;
    border: 1px solid rgba(7, 43, 97, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dd-quick-strip:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(7, 43, 97, 0.15), 0 6px 20px rgba(0, 0, 0, 0.04);
}

.dd-quick-item {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0.6rem 1rem;
}

.dd-quick-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(7, 43, 97, 0.06) 0%, rgba(253, 80, 86, 0.08) 100%);
    color: var(--dd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.dd-quick-item:hover .dd-quick-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(7, 43, 97, 0.12) 0%, rgba(217, 168, 66, 0.18) 100%);
    color: var(--dd-secondary);
}

.dd-quick-info h4 {
    font-size: 0.74rem;
    text-transform: uppercase;
    color: var(--dd-text-muted);
    letter-spacing: 0.8px;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.dd-quick-info p {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--dd-primary);
    line-height: 1.35;
    margin: 0;
}

/* Elegant column vertical dividers on desktop */
@media (min-width: 992px) {
    .dd-quick-col:not(:last-child) {
        border-right: 1px solid rgba(7, 43, 97, 0.08);
    }
}

/* Tablet & Mobile Layouts */
@media (max-width: 991.98px) {
    .dd-quick-wrapper {
        margin-top: -2.5rem;
        padding-top: 0;
        padding-bottom: 1.25rem;
    }
    .dd-quick-strip {
        padding: 1.15rem 1rem;
    }
    .dd-quick-item {
        gap: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
    .dd-quick-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    .dd-quick-info h4 {
        font-size: 0.66rem;
        letter-spacing: 0.4px;
    }
    .dd-quick-info p {
        font-size: 0.82rem;
        line-height: 1.25;
    }
}

@media (max-width: 767.98px) {
    .dd-quick-wrapper {
        margin-top: -2.5rem;
        padding-top: 0;
        padding-bottom: 1rem;
    }
    .dd-quick-strip {
        padding: 0.9rem 0.75rem;
    }
    .dd-quick-col {
        padding: 0.35rem 0.25rem;
    }
    .dd-quick-item {
        padding: 0.25rem 0.2rem;
        gap: 0.6rem;
    }
    .dd-quick-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    .dd-quick-info h4 {
        font-size: 0.62rem;
        letter-spacing: 0.3px;
        margin-bottom: 0.15rem;
    }
    .dd-quick-info p {
        font-size: 0.78rem;
        line-height: 1.25;
    }
}

/* Sacred Dhams Split Showcase Section (No Card UI) */
.dd-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-top: 0.5rem;
}

.dd-showcase-item {
    position: relative;
}

.dd-showcase-img-frame {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: #ffffff;
    border: 2.5px solid #e3be75;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.dd-showcase-img-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(227, 190, 117, 0.25);
    border-color: #d8aa4f;
}

.dd-showcase-img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.dd-showcase-img-frame:hover .dd-showcase-img {
    transform: scale(1.02);
}

.dd-showcase-content {
    padding: 0.25rem 0;
}

.dd-showcase-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.dd-showcase-text {
    font-size: 1.02rem;
    color: var(--dd-text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.92;
}

.dd-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dd-showcase-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dd-text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.dd-showcase-list li i {
    color: var(--dd-secondary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.dd-showcase-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(7, 43, 97, 0.12), transparent);
    margin: 0.5rem 0;
}

@media (max-width: 991.98px) {
    .dd-showcase-container {
        gap: 2.5rem;
    }
    .dd-showcase-img {
        height: 280px;
    }
    .dd-showcase-title {
        font-size: 1.65rem;
    }
    .dd-showcase-text {
        font-size: 0.95rem;
    }
}

/* Feature & Benefit Cards (Clean Box, Soft Gradient Light BG) */
.dd-feature-card {
    background: #ffffff;
    border-radius: var(--dd-radius);
    padding: 2rem;
    box-shadow: var(--dd-shadow-sm);
    border: 1px solid var(--dd-border);
    transition: all 0.3s ease;
    height: 100%;
}

.dd-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dd-shadow-md);
    border-color: rgba(253, 80, 86, 0.25);
}

.dd-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(253, 80, 86, 0.08);
    color: var(--dd-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.dd-feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dd-primary);
    margin-bottom: 0.6rem;
}

.dd-feature-desc {
    font-size: 0.95rem;
    color: var(--dd-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Detailed Day-Wise Itinerary Timeline (Chardham Standard Style - Clean & Responsive) */
.dd-route-timeline {
    position: relative;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}

/* Mathematically centered vertical line passing right through the middle of the 2.75rem (44px) circle */
.dd-route-timeline::before {
    content: '';
    position: absolute;
    top: 1.375rem;
    bottom: 1.375rem;
    left: 1.375rem;
    width: 3px;
    background: linear-gradient(180deg, #fd5056 0%, #dc2626 100%);
    border-radius: 3px;
    transform: translateX(-50%);
    z-index: 1;
}

.dd-timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 2.25rem;
    z-index: 2;
}

.dd-timeline-item:last-child {
    margin-bottom: 0;
}

.dd-timeline-dot {
    width: 2.75rem;
    height: 2.75rem;
    background: #111827;
    border: 2.5px solid #fd5056;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 3;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(253, 80, 86, 0.15);
    transition: all 0.3s ease;
}

.dd-timeline-item:hover .dd-timeline-dot {
    transform: scale(1.08);
    background: #fd5056;
    border-color: #111827;
    box-shadow: 0 0 0 6px rgba(253, 80, 86, 0.25);
}

.dd-timeline-content {
    flex-grow: 1;
    margin-left: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(253, 80, 86, 0.2);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.dd-timeline-content::before {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: -8px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(253, 80, 86, 0.2);
    border-bottom: 1px solid rgba(253, 80, 86, 0.2);
    transform: rotate(45deg);
}

.dd-timeline-item:hover .dd-timeline-content {
    box-shadow: 0 14px 36px rgba(253, 80, 86, 0.08);
    border-color: #fd5056;
}

/* Inner Card Layout Grid */
.dd-card-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.75rem;
}

.dd-card-left {
    display: flex;
    flex-direction: column;
}

.dd-card-right {
    display: flex;
    flex-direction: column;
}

.dd-timeline-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.dd-day-label {
    background: #fd5056;
    color: #ffffff;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(253, 80, 86, 0.25);
}

.dd-timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.dd-timeline-title i {
    color: #fd5056;
    margin: 0 0.3rem;
    font-size: 1rem;
}

.dd-timeline-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: #fff8f8;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(253, 80, 86, 0.15);
}

.dd-timeline-stat-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.dd-timeline-stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(253, 80, 86, 0.1);
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dd-timeline-stat-text {
    display: flex;
    flex-direction: column;
}

.dd-timeline-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dd-text-muted);
    font-weight: 600;
}

.dd-timeline-stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

.dd-timeline-desc {
    font-size: 0.93rem;
    font-weight: 400;
    line-height: 1.65;
    color: #374151;
    margin: 0;
}

/* Stay Info Card Styling */
.dd-stay-card {
    background: #ffffff;
    border: 1px solid rgba(253, 80, 86, 0.2);
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(253, 80, 86, 0.04);
}

.dd-stay-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    color: #fd5056;
    border-bottom: 1px solid rgba(253, 80, 86, 0.12);
    padding-bottom: 0.5rem;
}

.dd-stay-header i {
    font-size: 0.9rem;
}

.dd-stay-header h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    color: #fd5056;
}

.dd-stay-body {
    flex-grow: 1;
    margin-bottom: 0.75rem;
}

.dd-stay-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: #111827;
    display: block;
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.dd-stay-desc {
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

.dd-stay-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.dd-stay-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fd5056;
    background: rgba(253, 80, 86, 0.06);
    border: 1px solid rgba(253, 80, 86, 0.18);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .dd-card-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .dd-timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .dd-route-timeline::before {
        left: 1.1rem;
        top: 1.1rem;
        bottom: 1.1rem;
        width: 2px;
    }
    .dd-timeline-item {
        margin-bottom: 1.5rem;
    }
    .dd-timeline-dot {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.82rem;
        border-width: 2px;
    }
    .dd-timeline-content {
        margin-left: 1rem;
        padding: 1.15rem;
        border-radius: 14px;
    }
    .dd-timeline-content::before {
        display: none;
    }
    .dd-timeline-header {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    .dd-timeline-title {
        font-size: 1.1rem;
    }
    .dd-timeline-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.65rem;
    }
}

.dd-itinerary-tag-item {
    font-size: 0.88rem;
    color: var(--dd-text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dd-itinerary-tag-item i {
    color: var(--dd-gold-dark);
}

/* Inclusions & Exclusions Card (Light Theme) */
.dd-inc-card {
    background: #ffffff;
    border-radius: var(--dd-radius);
    padding: 2.25rem;
    box-shadow: var(--dd-shadow-md);
    border: 1px solid var(--dd-border);
    height: 100%;
}

.dd-inc-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dd-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dd-inc-title i {
    color: #10b981;
}

.dd-exc-title i {
    color: var(--dd-secondary);
}

.dd-inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dd-inc-list li {
    font-size: 0.95rem;
    color: var(--dd-text-dark);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.dd-inc-list li i.fa-check-circle {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.dd-inc-list li i.fa-times-circle {
    color: var(--dd-secondary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Luxury Fleet & Hotel Showcase Cards */
.dd-fleet-card {
    background: #ffffff;
    border-radius: var(--dd-radius);
    overflow: hidden;
    box-shadow: var(--dd-shadow-sm);
    border: 1px solid var(--dd-border);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    padding: 1.5rem;
}

.dd-fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dd-shadow-md);
}

.dd-fleet-img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    width: 100%;
}

.dd-fleet-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dd-primary);
    margin-bottom: 0.4rem;
}

.dd-fleet-desc {
    font-size: 0.88rem;
    color: var(--dd-text-muted);
    margin: 0;
}

/* Price & Departure Dates Table / Cards */
.dd-price-card {
    background: #ffffff;
    border-radius: var(--dd-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--dd-shadow-md);
    border: 2px solid var(--dd-border);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dd-price-card.featured {
    border-color: var(--dd-secondary);
    box-shadow: var(--dd-shadow-lg);
}

.dd-price-category {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dd-primary);
    margin-bottom: 0.5rem;
}

.dd-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dd-secondary);
    line-height: 1;
    margin: 1rem 0 0.25rem 0;
}

.dd-price-unit {
    font-size: 0.85rem;
    color: var(--dd-text-muted);
    margin-bottom: 1.5rem;
}

.dd-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.dd-price-features li {
    font-size: 0.92rem;
    color: var(--dd-text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dd-price-features li i {
    color: #10b981;
}

/* FAQ Accordion (Clean Light UI) */
.dd-faq-item {
    background: #ffffff;
    border-radius: var(--dd-radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--dd-border);
    box-shadow: var(--dd-shadow-sm);
    overflow: hidden;
}

.dd-faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dd-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.dd-faq-question:hover {
    background-color: #fafbfc;
}

.dd-faq-question i {
    transition: transform 0.3s ease;
    color: var(--dd-secondary);
}

.dd-faq-item.active .dd-faq-question i {
    transform: rotate(180deg);
}

.dd-faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--dd-text-muted);
    line-height: 1.6;
    display: none;
}

.dd-faq-item.active .dd-faq-answer {
    display: block;
}

/* Call To Action Banner Section (Light Warm BG) */
.dd-cta-box {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 50%, #f5efe6 100%);
    border-radius: var(--dd-radius);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--dd-shadow-lg);
    border: 1px solid rgba(7, 43, 97, 0.1);
    text-align: center;
}

.dd-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dd-primary);
    margin-bottom: 1rem;
}

.dd-cta-desc {
    font-size: 1.1rem;
    color: var(--dd-text-dark);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* Mobile Quick Action Bottom Bar — Modern Glassmorphism */
.dd-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-top: 1px solid rgba(19, 39, 66, 0.08);
    box-shadow: 0 -4px 24px rgba(19, 39, 66, 0.10);
    padding: 0.6rem 0.85rem;
    z-index: 999;
    display: none;
    gap: 0.6rem;
}

.dd-mobile-action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 1rem;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.dd-mobile-action:active {
    transform: scale(0.97);
}

.dd-mobile-call {
    background: #ffffff;
    color: #1e3a5f !important;
    border: 1.5px solid rgba(19, 39, 66, 0.18);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dd-mobile-call i {
    font-size: 0.82rem;
    color: #fd5056;
}

.dd-mobile-book {
    background: linear-gradient(135deg, #fd5056 0%, #e8383e 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 3px 14px rgba(253, 80, 86, 0.32);
}

.dd-mobile-book i {
    font-size: 0.82rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .dd-hero {
        min-height: 480px;
        padding: 3.5rem 0;
    }
    .dd-hero-heading {
        font-size: 2.4rem;
    }
    .dd-hero-para {
        max-width: 480px;
        font-size: 1rem;
    }
    .dd-title {
        font-size: 1.8rem;
    }
    .dd-itinerary-body {
        padding-left: 2rem;
    }
}

@media (max-width: 767.98px) {
    .dd-section, .dd-section-alt, .dd-section-soft {
        padding: 2rem 0;
    }

    /* Hero Mobile Layout */
    .dd-hero {
        min-height: 440px;
        padding: 3.25rem 0 2.75rem 0;
        height: auto;
    }

    .dd-hero-content-layer {
        padding: 1rem 0;
    }

    .dd-hero-eyebrow {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .dd-eyebrow-line {
        width: 20px;
    }

    .dd-eyebrow-text {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .dd-hero-heading {
        font-size: clamp(2.1rem, 7vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 1.15rem;
    }

    .dd-hero-para {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    /* Buttons stack vertically on mobile */
    .dd-hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
    }

    .dd-hero-btn-primary,
    .dd-hero-btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
    }

    /* Hide panel labels on mobile for clean focus */
    .dd-hero-panel-label {
        display: none;
    }

    .dd-mobile-bar {
        display: flex;
    }

    .dd-wrapper {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .dd-hero {
        padding: 2.75rem 0 2.25rem 0;
        min-height: 400px;
    }

    .dd-eyebrow-line {
        display: none;
    }

    .dd-eyebrow-text {
        font-size: 0.68rem;
        letter-spacing: 1px;
        white-space: normal;
    }

    .dd-hero-heading {
        font-size: 2rem;
        line-height: 1.15;
    }

    .dd-hero-para {
        font-size: 0.88rem;
    }
}
/* Showcase Gallery Section */
.cdp-showcase-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cdp-carousel-outer-wrapper {
    position: relative;
    padding: 0 15px;
}

.cdp-carousel-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.cdp-carousel-track-wrapper:active {
    cursor: grabbing;
}

.cdp-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cdp-carousel-slide {
    flex: 0 0 calc(25% - 18px);
    box-sizing: border-box;
}

.cdp-carousel-card {
    position: relative;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(253, 80, 86, 0.15);
    transition: all 0.4s ease;
}

.cdp-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cdp-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 15, 15, 0.85) 0%, rgba(18, 15, 15, 0.3) 60%, transparent 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.cdp-carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
    z-index: 3;
    color: #ffffff;
    text-align: left;
}

.cdp-card-badge {
    display: inline-block;
    background: #fd5056;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}

.cdp-carousel-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.cdp-carousel-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

.cdp-carousel-card:hover {
    transform: translateY(-5px);
    border-color: #fd5056;
    box-shadow: 0 15px 35px rgba(253, 80, 86, 0.12);
}

.cdp-carousel-card:hover img {
    transform: scale(1.06);
}

.cdp-carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(253, 80, 86, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cdp-carousel-nav-btn:hover {
    background: #fd5056;
    color: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 6px 20px rgba(253, 80, 86, 0.25);
}

.cdp-carousel-nav-btn--prev { left: 0; }
.cdp-carousel-nav-btn--next { right: 0; }

.cdp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.cdp-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(18, 15, 15, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cdp-carousel-dot.active {
    width: 24px;
    border-radius: 5px;
    background: #fd5056;
}

/* Reviews Marquee Section */
.om-reviews {
    padding: 50px 0;
    background: #fdfbf7;
    overflow: hidden;
    position: relative;
}

.om-reviews-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 1.5rem;
    padding: 12px 0;
    margin-top: -6px;
    margin-bottom: 1.25rem;
}

.om-reviews-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 100%;
    padding: 4px 0;
}

.om-reviews-track--left {
    animation: scrollLeft 35s linear infinite;
}

.om-reviews-track--right {
    animation: scrollRight 35s linear infinite;
}

.om-reviews-marquee:hover .om-reviews-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.om-review-card {
    background: #ffffff;
    border: 1.5px solid rgba(253, 80, 86, 0.18);
    border-radius: 16px;
    padding: 1.5rem;
    width: 380px;
    flex-shrink: 0;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.om-review-card:hover {
    transform: translateY(-4px);
    border-color: #fd5056;
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.15);
}

.om-review-card__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.om-review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fd5056;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.om-review-card__meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.om-review-card__meta strong {
    font-size: 0.95rem;
    color: #111827;
    font-weight: 700;
}

.om-review-card__meta span {
    font-size: 0.75rem;
    color: #6b7280;
}

.om-review-card__google {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.om-review-card__stars {
    color: #f4b73a;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.2rem;
}

.om-review-card__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

@media (max-width: 1199px) {
    .cdp-carousel-slide { flex: 0 0 calc(33.333% - 16px); }
}

@media (max-width: 991px) {
    .cdp-carousel-slide { flex: 0 0 calc(50% - 12px); }
    .cdp-carousel-outer-wrapper { padding: 0 30px; }
}

@media (max-width: 768px) {
    .cdp-carousel-nav-btn { display: none; }
    .cdp-carousel-outer-wrapper { padding: 0; }
    .cdp-carousel-track-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .cdp-carousel-track-wrapper::-webkit-scrollbar { display: none; }
    .cdp-carousel-track { gap: 16px; display: flex; width: max-content; }
    .cdp-carousel-slide { flex: 0 0 85vw; scroll-snap-align: start; }
    .cdp-carousel-card { height: 300px; }
    .om-review-card { width: 300px; padding: 1.2rem; }
}

.dd-hotel-card:hover {
    transform: translateY(-6px);
    border-color: #fd5056 !important;
    box-shadow: 0 16px 35px rgba(253, 80, 86, 0.14) !important;
}

.dd-hotel-card:hover img {
    transform: scale(1.05);
}

/* Redesigned Booking Form & CTA Component Styles */
.dd-input-label {
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.4rem;
    display: block;
}

.dd-custom-input,
.dd-custom-select {
    width: 100%;
    height: 52px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    color: #1e293b;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.dd-custom-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e6d82' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 00-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.dd-custom-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.dd-custom-input:focus,
.dd-custom-select:focus,
.dd-custom-textarea:focus {
    background: #ffffff;
    border-color: #fd5056;
    box-shadow: 0 0 0 4px rgba(253, 80, 86, 0.12);
    outline: none;
}

.dd-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fd5056;
    font-size: 0.9rem;
    pointer-events: none;
}

.dd-submit-btn {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #fd5056 0%, #d9383e 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(253, 80, 86, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dd-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(253, 80, 86, 0.4);
    background: linear-gradient(135deg, #ff6066 0%, #e03036 100%);
}

/* Unified Joined Booking Card Component & Mobile Responsiveness */
.dd-booking-unified-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1.5px solid rgba(253, 80, 86, 0.18);
    background: #ffffff;
}

.dd-booking-left-pane {
    flex: 0 0 42%;
    max-width: 42%;
}

.dd-booking-right-pane {
    flex: 0 0 58%;
    max-width: 58%;
}

@media (max-width: 991px) {
    .dd-booking-unified-card {
        flex-direction: column;
        border-radius: 20px;
    }
    .dd-booking-left-pane,
    .dd-booking-right-pane {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 2.25rem 1.5rem !important;
    }
    #ethical-stand {
        padding: 2.5rem 0 !important;
    }
    #booking-form {
        padding: 2.25rem 0 !important;
    }
}
