:root {
    /* Brand Colors - Premium Travel Aesthetic */
    --dst-primary: #06b6d4;
    /* Cyan-500 */
    --dst-primary-dark: #0891b2;
    /* Cyan-600 */
    --dst-accent: #f59e0b;
    /* Amber-500 for subtle highlights */

    /* Header Specifics */
    --dst-header-bg-solid: rgba(255, 255, 255, 0.98);
    --dst-header-text: #334155;
    /* Slate-700 */
    --dst-header-text-hover: #06b6d4;
    /* Cyan-500 */

    /* Footer Specifics */
    --dst-footer-bg: #0f172a;
    /* Slate-900 */
    --dst-footer-text: #94a3b8;
    /* Slate-400 */
    --dst-footer-heading: #f8fafc;
    /* Slate-50 */
    --dst-footer-border: #1e293b;
    /* Slate-800 */

    /* Fonts */
    --dst-font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Padding */
    --dst-container-padding: 1.5rem;
    --dst-section-padding: 5rem;
}

/* Typography System */
.dst-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--dst-container-padding);
    padding-right: var(--dst-container-padding);
}

.dst-section {
    padding-top: var(--dst-section-padding);
    padding-bottom: var(--dst-section-padding);
}

.dst-title-lg {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--dst-header-text);
    margin-bottom: 1.5rem;
}

.dst-title-md {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dst-header-text);
    margin-bottom: 1rem;
}

.dst-text-lg {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    /* Slate-600 */
}

.dst-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    /* Slate-500 */
}

@media (min-width: 768px) {
    .dst-title-lg {
        font-size: 3.5rem;
    }

    .dst-title-md {
        font-size: 2.5rem;
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--dst-primary) 0%, var(--dst-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Navbar Container */
#dst-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    transition: all 0.3s ease-in-out !important;
    font-family: var(--dst-font-sans) !important;
}

/* Scroll Variants */
#dst-navbar.dst-solid {
    background-color: rgba(255, 255, 255, 0.85) !important;
    /* Higher transparency for glass effect */
    backdrop-filter: blur(20px) saturate(180%) !important;
    /* Premium gloss */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    /* softer, deeper shadow */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

#dst-navbar.dst-transparent {
    background-color: transparent !important;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%) !important;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

/* Links (Desktop) */
.dst-nav-link {
    position: relative !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important;
}

/* Hover underline effect */
.dst-nav-link::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: 0 !important;
    left: 50% !important;
    background-color: var(--dst-primary) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.dst-nav-link:hover::after {
    width: 80% !important;
}

/* Colors based on state */
#dst-navbar.dst-solid .dst-nav-link {
    color: var(--dst-header-text) !important;
}

#dst-navbar.dst-solid .dst-nav-link:hover {
    color: var(--dst-primary) !important;
}

#dst-navbar.dst-transparent .dst-nav-link {
    color: white !important;
}

#dst-navbar.dst-transparent .dst-nav-link:hover {
    color: var(--dst-primary) !important;
}


/* CTA Button - Premium Gradient */
.dst-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, var(--dst-primary) 0%, var(--dst-primary-dark) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 99px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    margin-left: 1.5rem !important;
}

.dst-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4) !important;
}

/* Mobile Toggle */
.dst-menu-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    display: none !important;
    /* Hidden by default on desktop */
}

/* Responsive Rules */
@media (max-width: 768px) {
    .dst-menu-btn {
        display: block !important;
    }

    /* Show on mobile */
    .dst-desktop-nav {
        display: none !important;
    }

    /* Hide desktop nav */

    #dst-navbar.dst-solid .dst-menu-btn {
        color: var(--dst-header-text) !important;
    }

    #dst-navbar.dst-transparent .dst-menu-btn {
        color: white !important;
    }
}
/* Footer Container */
#dst-footer {
    background-color: var(--dst-footer-bg) !important;
    color: var(--dst-footer-text) !important;
    font-family: var(--dst-font-sans) !important;
    border-top: 1px solid var(--dst-footer-border) !important;
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
}

/* Grid Layout */
.dst-footer-grid {
    display: grid !important;
    gap: 3rem !important;
    margin-bottom: 4rem !important;
}

/* Responsive Columns */
@media (min-width: 1024px) {
    .dst-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .dst-footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 767px) {
    .dst-footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Typography */
#dst-footer h4 {
    color: var(--dst-footer-heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 1.5rem !important;
    margin-top: 0 !important;
}

#dst-footer p {
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Links */
#dst-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#dst-footer li {
    margin-bottom: 0.8rem !important;
}

#dst-footer a {
    color: var(--dst-footer-text) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

#dst-footer a:hover {
    color: white !important;
}

/* Social Icons */
.dst-social-icon {
    width: 2.25rem !important;
    height: 2.25rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--dst-footer-border) !important;
    border-radius: 0.5rem !important;
    margin-right: 0.75rem !important;
    color: var(--dst-footer-text) !important;
    transition: all 0.2s ease !important;
}

.dst-social-icon:hover {
    background-color: var(--dst-primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* Bottom Bar */
.dst-footer-bottom {
    border-top: 1px solid var(--dst-footer-border) !important;
    padding-top: 2rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1.5rem !important;
}

.dst-payment-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
}

/* Payment Badges - Fix Sizing */
.dst-payment-badge {
    background-color: white !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    height: 32px !important;
    /* Fixed height for consistency */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.9 !important;
}

.dst-payment-badge img {
    height: 20px !important;
    width: auto !important;
    display: block !important;
}