/* ==========================================================================
   DHAKA HOLIDAY UK - UI COMPONENTS STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. Hero Section & Dynamic Search Pill
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #881337 45%, #991B1B 70%, #0F172A 100%);
    padding: 7rem 0 6rem;
    color: var(--text-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.5);
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: #FEE2E2;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span.text-gradient {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA8A8 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
    margin: 0 auto 2.75rem;
    font-weight: 400;
}

/* Floating Dynamic Tabbed Search Widget (Large, Spacious & Fully Rounded) */
.hero-search-container {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

/* 1. Top Navigation Tabs */
.search-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: safe center;
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    padding: 0.65rem 1.5rem 0;
    gap: 0.75rem;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #E2E8F0;
}
.search-tabs-nav::-webkit-scrollbar {
    display: none;
}

.search-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.6rem;
    border: none;
    background: transparent;
    color: #475569;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-tab-btn i,
.search-tab-btn svg {
    width: 19px !important;
    height: 19px !important;
    stroke-width: 2.2 !important;
}

.search-tab-btn:hover {
    color: var(--primary);
    background: rgba(220, 38, 38, 0.04);
}

.search-tab-btn.active {
    color: var(--primary);
    font-weight: 800;
}

.search-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 3.5px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

/* 2. Main Search Content Box (Integrated seamlessly with tabs) */
.hero-search-box {
    background: transparent;
    border-radius: 0 0 24px 24px;
    padding: 2.25rem 2.5rem 2.5rem;
    box-shadow: none;
    border: none;
    position: relative;
    text-align: left;
}

/* Tab Panes */
.search-tab-pane {
    display: none;
}

.search-tab-pane.active {
    display: block;
    animation: tabFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Pill Buttons (One Way, Roundtrip, Multi city) */
.search-pill-types {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pill-type-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1.5px solid #CBD5E1;
    background: #FFFFFF;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-type-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pill-type-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

/* Cards Grid */
.search-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: center;
    position: relative;
}

.search-cards-row.flight-row {
    grid-template-columns: 1.35fr auto 1.35fr 1.15fr 1.35fr;
    gap: 1.25rem;
}

.search-cards-row.flight-row.roundtrip-active {
    grid-template-columns: 1.2fr auto 1.2fr 1fr 1fr 1.2fr;
    gap: 1rem;
}

.search-cards-row.tours-row {
    grid-template-columns: 1.5fr 1.2fr 1.15fr 1.15fr;
    gap: 1.25rem;
}

.search-cards-row.hotels-row {
    grid-template-columns: 1.5fr 1.15fr 1.15fr 1.25fr;
    gap: 1.25rem;
}

.search-cards-row.visa-row {
    grid-template-columns: 1.45fr 1.2fr 1.2fr 1.15fr;
    gap: 1.25rem;
}

/* Individual Soft Search Input Card */
.search-input-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 0.85rem 1.15rem 0.75rem;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 94px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.search-input-card:hover {
    background: #FFFFFF;
    border-color: #EF4444;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.search-input-card:focus-within {
    background: #FFFFFF;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12), 0 10px 25px rgba(220, 38, 38, 0.1);
}

/* Custom Luxury Dropdown Card Modifications */
.search-input-card.custom-dropdown-card {
    user-select: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.search-input-card.custom-dropdown-card.is-open {
    z-index: 1000 !important;
    background: #FFFFFF;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12), 0 14px 35px rgba(220, 38, 38, 0.18);
}

.search-input-card.custom-dropdown-card .hidden-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.dropdown-trigger-main {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.trigger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trigger-icon i,
.trigger-icon svg {
    width: 18px !important;
    height: 18px !important;
    color: #DC2626 !important;
    stroke: #DC2626 !important;
    stroke-width: 2.3px !important;
    display: block !important;
}

.trigger-text {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
}

.dropdown-chevron {
    width: 16px;
    height: 16px;
    color: #DC2626;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input-card.custom-dropdown-card.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

/* Custom Dropdown Menu Container */
.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    min-width: 350px;
    max-width: 480px;
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.6rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

/* Ensure rightmost cards align dropdown to the right so it stays on screen */
.search-cards-row > div:last-child .custom-dropdown-menu,
.search-cards-row > div:nth-last-child(2) .custom-dropdown-menu {
    left: auto;
    right: 0;
}

.custom-dropdown-menu::-webkit-scrollbar {
    width: 5px;
}
.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.search-input-card.custom-dropdown-card.is-open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Individual Option Items */
.dropdown-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.72rem 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s ease;
    gap: 0.95rem;
    margin-bottom: 3px;
    white-space: nowrap;
}

.dropdown-option-item:hover {
    background: #FEF2F2;
}

.dropdown-option-item.selected {
    background: #FFF1F2;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dropdown-option-item .option-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.dropdown-option-item .option-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.18s ease;
    color: #1E293B;
}

.dropdown-option-item .option-badge-icon i,
.dropdown-option-item .option-badge-icon svg {
    width: 18px !important;
    height: 18px !important;
    color: #1E293B !important;
    stroke: #1E293B !important;
    stroke-width: 2.2px !important;
    display: block !important;
}

.dropdown-option-item:hover .option-badge-icon,
.dropdown-option-item.selected .option-badge-icon {
    background: #DC2626 !important;
    border-color: #DC2626 !important;
    color: #FFFFFF !important;
}

.dropdown-option-item:hover .option-badge-icon i,
.dropdown-option-item:hover .option-badge-icon svg,
.dropdown-option-item.selected .option-badge-icon i,
.dropdown-option-item.selected .option-badge-icon svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.dropdown-option-item .option-text-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-option-item .option-main-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.25;
    white-space: nowrap;
}

.dropdown-option-item.selected .option-main-title {
    color: #DC2626;
    font-weight: 800;
}

.dropdown-option-item .option-sub-desc {
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.2;
    white-space: nowrap;
    margin-top: 2px;
}

.dropdown-option-item .option-pill-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.28rem 0.7rem;
    border-radius: 6px;
    background: #F1F5F9;
    color: #475569;
    flex-shrink: 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.dropdown-option-item.selected .option-pill-badge,
.dropdown-option-item:hover .option-pill-badge {
    background: #DC2626;
    color: #FFFFFF;
}

/* Flag SVG icon standard */
.flag-icon {
    display: inline-block;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    vertical-align: middle;
    flex-shrink: 0;
}

/* Custom Luxury Date Card Styling */
.search-input-card.search-date-card {
    position: relative;
    cursor: pointer;
}

.date-trigger-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.date-trigger-display {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.date-trigger-display .date-display-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
}

.date-trigger-display .date-display-val.is-empty {
    color: #475569;
    font-weight: 700;
    font-size: 0.98rem;
}

.search-date-card input[type="date"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
    border: none;
    background: transparent;
    color: transparent;
}

.search-date-card input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.search-date-card:hover .date-trigger-display .date-display-val.is-empty {
    color: #DC2626;
}

.input-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.input-card-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-card-icon {
    width: 17px;
    height: 17px;
    color: #94A3B8;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.search-input-card:hover .input-card-icon,
.search-input-card:focus-within .input-card-icon {
    color: #EF4444;
    transform: scale(1.1);
}

.input-card-body {
    margin: 0.2rem 0;
    position: relative;
}

.input-card-body input,
.input-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 0;
    line-height: 1.35;
}

.input-card-body input::placeholder,
.input-field::placeholder {
    color: #94A3B8;
    font-weight: 600;
    font-size: 0.98rem;
}

.input-card-sub {
    font-size: 0.76rem;
    color: #94A3B8;
    font-weight: 600;
    display: block;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swap Button */
.btn-swap-airports {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.25s ease;
    margin: 0 -6px;
    z-index: 2;
}

.btn-swap-airports:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #FFFFFF;
    transform: rotate(180deg);
}

.btn-swap-airports i {
    width: 18px;
    height: 18px;
}

/* Centered Search Button */
.search-action-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-hero-search {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #991B1B 100%);
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 1rem 4.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-hero-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(220, 38, 38, 0.5);
    color: #FFFFFF;
}

/* Trust Stats Counters */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3.5rem;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.stat-number span.plus {
    color: #FF6B6B;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* ==========================================================================
   2. Filter Bar & Category Tabs
   ========================================================================== */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2.5rem;
}

.filter-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background: var(--bg-soft-red);
}

.filter-tab-btn.active {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.filter-tab-btn i {
    font-size: 1.1rem;
}

/* ==========================================================================
   3. Package Cards
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-red);
}

.package-thumb-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-thumb {
    transform: scale(1.08);
}

.package-badge-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-gradient);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 2;
}

.package-discount-pill {
    position: absolute;
    top: 14px;
    right: 58px;
    background: #10B981;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

.package-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    z-index: 2;
}

.package-wishlist-btn:hover, .package-wishlist-btn.active {
    color: var(--primary);
    background: #FFFFFF;
    transform: scale(1.1);
}

.package-duration-pill {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.package-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-title a:hover {
    color: var(--primary);
}

.package-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.rating-stars {
    color: var(--accent-gold);
    display: inline-flex;
    gap: 0.15rem;
}

.rating-score {
    font-weight: 800;
    color: var(--text-main);
}

.rating-reviews {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.package-highlights {
    border-top: 1px dashed var(--border-medium);
    padding-top: 0.85rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.package-highlight-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.package-highlight-item i {
    color: var(--accent-emerald);
    font-size: 0.95rem;
}

.package-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.15rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price-wrap {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-value-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-current {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.package-card-actions {
    display: flex;
    gap: 0.5rem;
}

/* ==========================================================================
   4. Destinations Section
   ========================================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.dest-card:hover {
    transform: translateY(-6px);
}

.dest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-image {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
}

.dest-badge {
    align-self: flex-start;
    background: rgba(220, 38, 38, 0.9);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.dest-info h3 {
    color: #FFFFFF;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
}

.dest-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
}

.dest-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.dest-price strong {
    font-size: 1.15rem;
    color: #FF6B6B;
}

/* ==========================================================================
   5. Custom Tour Builder Banner & Section
   ========================================================================== */
.custom-tour-banner {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.custom-tour-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.custom-tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.custom-tour-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}

.form-group-slider {
    margin-bottom: 1.5rem;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.slider-value-display {
    color: #FF6B6B;
    font-weight: 800;
}

.custom-range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    accent-color: var(--primary);
    cursor: pointer;
    outline: none;
}

.custom-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.custom-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.custom-range-input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.hotel-tier-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tier-option {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tier-option:hover, .tier-option.active {
    border-color: var(--primary);
    background: rgba(220, 38, 38, 0.2);
}

.tier-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.tier-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.estimated-price-box {
    background: rgba(220, 38, 38, 0.15);
    border: 1px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.estimated-price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF8787;
}

/* ==========================================================================
   6. Flash Deals Countdown Banner
   ========================================================================== */
.flash-deals-banner {
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.flash-countdown {
    display: flex;
    gap: 1rem;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 72px;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ==========================================================================
   7. Reviews & Testimonials Carousel
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary-subtle);
    line-height: 1;
    pointer-events: none;
}

.review-user-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.review-user-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.review-trip-tag {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    font-size: 0.82rem;
    color: var(--text-light);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent-emerald);
    font-weight: 700;
}

/* ==========================================================================
   8. FAQ Accordion
   ========================================================================== */
.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-medium);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.08);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
}

.faq-question:hover, .faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
}

/* ==========================================================================
   9. Modals (Package Details Itinerary & Booking Wizard)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-medium);
    transform: scale(0.95) translateY(20px);
    transition: all var(--transition-bounce);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 38, 38, 0.4) transparent;
}

.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.modal-backdrop.open .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* Multi-Step Wizard */
.wizard-steps-header {
    display: flex;
    justify-content: space-between;
    background: var(--bg-soft-red);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-red);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-item.active {
    color: var(--primary);
}

.step-item.completed {
    color: var(--accent-emerald);
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-medium);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.step-item.active .step-circle {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-red);
}

.step-item.completed .step-circle {
    background: var(--accent-emerald);
    color: #FFFFFF;
}

.wizard-body {
    padding: 2.25rem;
}

.wizard-step-pane {
    display: none;
}

.wizard-step-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-control-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-control-wrap label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-input {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-medium);
    background: var(--bg-main);
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-medium);
    background: var(--bg-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.addon-card:hover, .addon-card.selected {
    border-color: var(--primary);
    background: var(--bg-soft-red);
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.addon-price {
    font-weight: 800;
    color: var(--primary);
}

/* Printable Booking Voucher */
.booking-voucher-card {
    background: #FFFFFF;
    border: 2px dashed var(--primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}

.voucher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-subtle);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.voucher-code-badge {
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    letter-spacing: 2px;
}

/* Day-by-Day Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--border-red);
    margin: 1.5rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--bg-surface);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-day-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--bg-dark);
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    border-left: 4px solid var(--primary);
    animation: slideInRight 0.35s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Visa Service Cards (Luxury Dark Red Theme)
   ========================================================================== */
.visa-service-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.visa-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(220, 38, 38, 0.3) !important;
    border-color: rgba(239, 68, 68, 0.8) !important;
}

.visa-service-card .btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ==========================================================================
   Holiday Package Cards (Modern Luxury Dark Red Theme)
   ========================================================================== */
.holiday-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.holiday-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.65), 0 0 30px rgba(220, 38, 38, 0.35) !important;
    border-color: rgba(239, 68, 68, 0.75) !important;
}

.holiday-card:hover .holiday-card-img {
    transform: scale(1.08);
}

.btn-holiday-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.6) !important;
    filter: brightness(1.08);
}

/* ==========================================================================
   Air Ticket Luxury Custom Dropdown & CTA Button
   ========================================================================== */
.air-custom-dropdown {
    position: relative;
    user-select: none;
}

.air-dropdown-trigger {
    width: 100%;
    background: #0D111A;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #FFFFFF;
    padding: 0.95rem 1.25rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.75rem;
}

.air-dropdown-trigger:hover,
.air-custom-dropdown.is-open .air-dropdown-trigger {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.air-trigger-content {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
    min-width: 0;
}

.air-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF4444;
    flex-shrink: 0;
}

.air-trigger-icon svg,
.air-trigger-icon i {
    width: 20px !important;
    height: 20px !important;
    stroke: #EF4444 !important;
    color: #EF4444 !important;
    stroke-width: 2.2 !important;
}

.air-trigger-text {
    font-size: 1.02rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.air-dropdown-chevron {
    width: 18px;
    height: 18px;
    color: #EF4444;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.air-custom-dropdown.is-open .air-dropdown-chevron {
    transform: rotate(180deg);
}

.air-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #111827;
    border: 1.5px solid rgba(239, 68, 68, 0.35);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(220, 38, 38, 0.15);
    padding: 0.55rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.air-custom-dropdown.is-open .air-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.air-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s ease;
    gap: 0.85rem;
    margin-bottom: 4px;
}

.air-option-item:hover {
    background: rgba(239, 68, 68, 0.14);
}

.air-option-item.selected {
    background: rgba(239, 68, 68, 0.22);
    border: 1px solid rgba(239, 68, 68, 0.45);
}

.air-option-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    min-width: 0;
}

.air-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #CBD5E1;
    transition: all 0.18s ease;
}

.air-option-icon svg,
.air-option-icon i {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
}

.air-option-item:hover .air-option-icon,
.air-option-item.selected .air-option-icon {
    background: #EF4444;
    border-color: #EF4444;
    color: #FFFFFF;
}

.air-option-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.air-option-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
}

.air-option-item.selected .air-option-title {
    color: #FCA5A5;
}

.air-option-desc {
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.2;
    margin-top: 2px;
}

.air-option-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    flex-shrink: 0;
    letter-spacing: 0.3px;
    transition: all 0.18s ease;
}

.air-option-item.selected .air-option-badge,
.air-option-item:hover .air-option-badge {
    background: #EF4444;
    color: #FFFFFF;
}

.air-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #991B1B 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 1.15rem 1.8rem;
    border-radius: 14px;
    font-size: 1.12rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.45);
    transition: all 0.25s ease;
    text-align: center;
    box-sizing: border-box;
}

.air-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(220, 38, 38, 0.6);
    filter: brightness(1.06);
}

.air-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   Air Ticket Luxury Form Input Groups with Prefix Icons & Phone Dial Code
   ========================================================================== */
.air-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #0D111A;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.air-input-group:focus-within {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    background: #111827;
}

.air-input-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.15rem;
    padding-right: 0.7rem;
    color: #EF4444;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 0.2s ease;
}

.air-input-group:focus-within .air-input-prefix {
    color: #F87171;
}

.air-input-prefix svg,
.air-input-prefix i {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
}

.air-input-field {
    width: 100%;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #FFFFFF !important;
    padding: 0.95rem 1.15rem 0.95rem 0.2rem !important;
    font-size: 1.02rem !important;
    font-family: inherit !important;
    box-shadow: none !important;
    color-scheme: dark;
}

.air-input-field::placeholder {
    color: #64748B;
    opacity: 0.9;
}



/* Textarea Group with Prefix Icon */
.air-textarea-group {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    background: #0D111A;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.air-textarea-group:focus-within {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    background: #111827;
}

.air-textarea-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.15rem;
    padding-right: 0.7rem;
    padding-top: 1.05rem;
    color: #EF4444;
    flex-shrink: 0;
    pointer-events: none;
}

.air-textarea-prefix svg,
.air-textarea-prefix i {
    width: 20px !important;
    height: 20px !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
}

.air-textarea-field {
    width: 100%;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #FFFFFF !important;
    padding: 0.95rem 1.15rem 0.95rem 0.2rem !important;
    font-size: 1.02rem !important;
    font-family: inherit !important;
    resize: vertical;
    min-height: 100px;
    box-shadow: none !important;
}

.air-textarea-field::placeholder {
    color: #64748B;
    opacity: 0.9;
}



