/* Enhanced Flights, Packages, and Deals Pages Styles */

/* Enhanced Flights Page Styles */
.flights-search-section {
    padding: 48px 0;
    background: #f9fafb;
    margin-top: 0;
}

.search-options {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4b5563;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.popular-routes-section {
    padding: 64px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.route-card-enhanced {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.route-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.route-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
}

.route-content {
    padding: 20px;
}

.route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.city-info {
    text-align: center;
}

.city-info h3 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-size: 1.125rem;
}

.airport-code {
    color: #9ca3af;
    font-size: 0.875rem;
}

.route-arrow {
    color: #2563eb;
    font-size: 1.25rem;
}

.route-meta {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #6b7280;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-block {
    width: 100%;
}

.featured-airlines-section {
    padding: 64px 0;
    background: #f9fafb;
}

.airlines-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.airline-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.airline-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.airline-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.airline-badge p {
    margin: 0;
    color: #4b5563;
    font-weight: 500;
    text-align: center;
    font-size: 0.875rem;
}

.class-comparison-section {
    padding: 64px 0;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.class-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.class-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
}

.class-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, white 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.class-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.class-price {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 16px 0;
}

.class-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    text-align: left;
}

.class-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: #4b5563;
}

.class-features i {
    color: #10b981;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.why-book-flights-section {
    padding: 64px 0;
    background: #f9fafb;
}

.features-grid-flights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item-flights {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-flights {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item-flights h3 {
    margin: 0 0 8px 0;
    color: #1f2937;
}

.feature-item-flights p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.flight-tips-section {
    padding: 64px 0;
}

.tips-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tip-card-enhanced {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.tip-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.tip-card-enhanced h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.tip-card-enhanced p {
    color: #6b7280;
    line-height: 1.6;
}

/* Enhanced Packages Page Styles */
.packages-filter-section {
    padding: 48px 0;
    background: #f9fafb;
}

.filter-card-enhanced {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-card-enhanced h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #1f2937;
}

.package-search-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-checkboxes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.featured-packages-section {
    padding: 64px 0;
}

.section-header-with-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.package-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.package-tab {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
    font-weight: 500;
}

.package-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.package-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.packages-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.package-card-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.package-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.package-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-savings-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.875rem;
}

.package-category-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
}

.package-content-enhanced {
    padding: 24px;
}

.package-header-enhanced {
    margin-bottom: 16px;
}

.package-header-enhanced h3 {
    margin: 0 0 8px 0;
    color: #1f2937;
}

.package-rating-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.rating-text {
    font-weight: 600;
    color: #1f2937;
}

.review-count {
    color: #9ca3af;
    font-size: 0.875rem;
}

.package-hotel {
    color: #6b7280;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-details-enhanced {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.package-details-enhanced span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.875rem;
}

.package-amenities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.amenity-badge {
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
}

.amenity-badge i {
    color: #10b981;
    font-size: 0.625rem;
}

.package-includes-compact {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.package-includes-compact h4 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 0.875rem;
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.includes-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 0.875rem;
}

.includes-list i {
    color: #10b981;
    font-size: 0.75rem;
}

.package-footer-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.package-pricing {
    display: flex;
    flex-direction: column;
}

.price-was {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.875rem;
}

.price-now {
    color: #2563eb;
    font-size: 1.75rem;
    font-weight: 700;
}

.price-per {
    color: #6b7280;
    font-size: 0.75rem;
}

.package-benefits-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.benefit-card-enhanced {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefit-icon-large {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.75rem;
}

.benefit-card-enhanced h3 {
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-card-enhanced p {
    color: #6b7280;
    line-height: 1.6;
}

.destination-highlights-section {
    padding: 64px 0;
}

.destinations-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.destination-highlight-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.destination-highlight-card:hover {
    transform: scale(1.03);
}

.destination-highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.destination-highlight-overlay h3 {
    color: white;
    margin: 0 0 8px 0;
}

.destination-highlight-overlay p {
    color: rgba(255,255,255,0.9);
    margin: 0 0 4px 0;
    font-size: 0.875rem;
}

.dest-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px !important;
}

.btn-white-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background: white;
    color: #2563eb;
}

/* Enhanced Deals Page Styles */
.flash-sale-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.flash-sale-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.flash-icon {
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.flash-text h2 {
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.flash-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1.125rem;
}

.countdown-timer-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    background: rgba(255,255,255,0.2);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 90px;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
}

.btn-white-large {
    background: white;
    color: #dc2626;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.deals-filter-section {
    padding: 24px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.deals-filter-bar {
    display: flex;
    align-items: center;
    gap: 24px;
}

.filter-label {
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.deal-filter-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.deal-filter-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.featured-deals-section {
    padding: 64px 0;
}

.deals-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.deal-showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.deal-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.deal-featured {
    border: 2px solid #dc2626;
}

.deal-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-image-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-discount-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
}

.discount-amount {
    font-weight: 700;
    font-size: 1.125rem;
}

.deal-content-section {
    padding: 24px;
}

.deal-airline-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.airline-logo-badge {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.airline-name-small {
    color: #6b7280;
    font-weight: 500;
}

.deal-route-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.route-city {
    text-align: center;
}

.route-city h3 {
    margin: 0 0 4px 0;
    color: #1f2937;
    font-size: 1.25rem;
}

.airport-code-small {
    color: #9ca3af;
    font-size: 0.875rem;
}

.route-arrow-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2563eb;
}

.route-arrow-center i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.route-duration-small {
    font-size: 0.75rem;
    color: #6b7280;
}

.deal-dates-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-item i {
    color: #2563eb;
}

.date-item > div {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.date-value {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.deal-features {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-badge i {
    color: #10b981;
}

.deal-urgency {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #92400e;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.deal-pricing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

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

.price-label {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.price-values {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.875rem;
}

.price-current {
    color: #2563eb;
    font-size: 1.75rem;
    font-weight: 700;
}

.btn-primary-large {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-large:hover {
    background: #1d4ed8;
}

.deal-categories-overview {
    padding: 64px 0;
    background: #f9fafb;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.category-card-large {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.category-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.category-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}

.category-card-large h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.category-card-large p {
    color: #6b7280;
    margin-bottom: 16px;
}

.deals-count {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.btn-outline-small {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-small:hover {
    background: #2563eb;
    color: white;
}

.price-alert-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.price-alert-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 32px;
}

.alert-icon-large {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content h2 {
    margin-bottom: 12px;
}

.alert-content > p {
    margin-bottom: 24px;
    color: #6b7280;
}

.alert-signup-form {
    margin-bottom: 16px;
}

.form-inline-group {
    display: flex;
    gap: 12px;
}

.form-inline-group input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.form-inline-group input[type="email"]:focus {
    outline: none;
    border-color: #2563eb;
}

.alert-note {
    color: #9ca3af;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-tips-section {
    padding: 64px 0;
}

.tips-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tip-card-modern {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.tip-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.tip-icon-modern {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.tip-card-modern h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.tip-card-modern p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .features-grid-flights {
        grid-template-columns: 1fr;
    }

    .packages-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .deals-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .price-alert-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .flash-sale-content {
        flex-direction: column;
        text-align: center;
    }

    .countdown-timer-enhanced {
        justify-content: center;
    }

    .deals-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header-with-tabs {
        flex-direction: column;
        align-items: flex-start;
    }

    .deal-route-display {
        flex-direction: column;
        gap: 12px;
    }

    .route-arrow-center {
        transform: rotate(90deg);
    }

    .deal-pricing-footer {
        flex-direction: column;
        gap: 16px;
    }

    .btn-primary-large {
        width: 100%;
        justify-content: center;
    }

    .form-inline-group {
        flex-direction: column;
    }

    .tips-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .airlines-carousel {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
