* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    padding-bottom: 70px;
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    font-size: 12px;
    background: rgba(0,0,0,0.1);
}

.status-icons {
    display: flex;
    gap: 5px;
}

.search-container {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 10px;
}

.search-bar {
    flex: 1;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 10px 15px;
    gap: 10px;
}

.search-icon {
    color: #00AEEF;
    font-size: 20px;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
}

.header-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-indonesia {
    background: linear-gradient(to bottom, #CE1126 0%, #CE1126 50%, #FFFFFF 50%, #FFFFFF 100%);
}

.flag-uk {
    background: linear-gradient(135deg, #012169 0%, #012169 25%, #FFFFFF 25%, #FFFFFF 30%, #C8102E 30%, #C8102E 35%, #FFFFFF 35%, #FFFFFF 65%, #C8102E 65%, #C8102E 70%, #FFFFFF 70%, #FFFFFF 75%, #012169 75%, #012169 100%);
}

.language-selector select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    transition: all 0.2s;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-selector select:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.language-selector::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 10px;
    pointer-events: none;
}

.language-selector select option {
    background: #00AEEF;
    color: white;
    padding: 10px;
}

.header-icons .icon {
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: transform 0.2s;
}

.header-icons .icon:hover {
    transform: scale(1.1);
}

.banner {
    background: rgba(255,255,255,0.2);
    padding: 12px 15px;
    text-align: center;
    font-size: 13px;
    min-height: 20px;
    position: relative;
    overflow: hidden;
}

.banner.welcome-active {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    padding: 15px;
}

#welcomeText {
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

#welcomeText.welcome-message {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    animation: welcomeFadeIn 0.5s ease-in;
}

#welcomeText.welcome-message::before {
    content: '👋';
    margin-right: 8px;
    font-size: 18px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes welcomeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

/* Main Content */
.main-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Flight Search */
.flight-search {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.flight-search h2 {
    color: #00AEEF;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.swap-btn {
    text-align: center;
    margin: -5px 0 10px;
    font-size: 24px;
    color: #00AEEF;
    cursor: pointer;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #00AEEF;
    transition: all 0.2s;
}

.swap-btn:hover {
    background: #00AEEF;
    color: white;
    transform: rotate(180deg);
}

.swap-btn i {
    font-size: 20px;
}

.passenger-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.passenger-selector button {
    background: #00AEEF;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.passenger-selector button:active {
    transform: scale(0.9);
    background: #0078D4;
}

.passenger-selector button i {
    font-size: 20px;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Flight Results */
.results-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.back-btn {
    background: #00AEEF;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #0078D4;
}

.back-btn i {
    font-size: 18px;
}

/* Flight Results Section */
.flight-results {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 80px;
}

.results-header-blue {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-btn-white {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-bottom: 10px;
}

.route-info h2 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.search-criteria {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    cursor: pointer;
    padding: 8px 0;
}

.search-criteria i {
    font-size: 16px;
}

.date-price-selector {
    background: white;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid #eee;
}

.date-price-selector::-webkit-scrollbar {
    display: none;
}

.date-price-item {
    min-width: 100px;
    padding: 12px 15px;
    border-radius: 12px;
    background: #f8f9fa;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.date-price-item.selected {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #00AEEF;
}

.date-price-item .date {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.date-price-item.selected .date {
    color: #00AEEF;
    font-weight: 600;
}

.date-price-item .price {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.date-price-item.selected .price {
    color: #00AEEF;
}

.filter-sort-bar {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.filter-btn,
.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.filter-btn i,
.sort-btn i {
    font-size: 18px;
    color: #00AEEF;
}

.feature-buttons {
    background: white;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #eee;
}

.feature-btn {
    min-width: fit-content;
    padding: 10px 16px;
    background: #f8f9fa;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.2s;
}

.feature-btn:active {
    transform: scale(0.95);
}

.feature-btn i {
    font-size: 16px;
    color: #00AEEF;
}

.feature-btn.promo {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.promo-badge {
    background: #4caf50;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 4px;
}

.section-header-flight {
    background: #e8f5e9;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

.section-header-all {
    background: #f5f5f5;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

#flightList {
    padding: 0;
}

.flight-results h2 {
    color: #00AEEF;
    font-size: 20px;
}

.flight-card {
    background: white;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 0;
    box-shadow: none;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #eee;
    position: relative;
}

.flight-card:active {
    background: #f8f9fa;
}

.flight-card:last-child {
    border-bottom: none;
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.airline-name {
    font-weight: bold;
    color: #00AEEF;
    font-size: 16px;
}

.flight-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    gap: 10px;
}

.flight-time-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.departure-info,
.arrival-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.departure-time,
.arrival-time {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.airport-code {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.duration-info {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.duration-text {
    font-size: 13px;
    color: #666;
}

.direct-badge,
.stop-badge {
    font-size: 11px;
    color: #4caf50;
    font-weight: 600;
}

.stop-badge {
    color: #ff9800;
}

.time-box {
    text-align: center;
}

.time-box .time {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.time-box .city {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.flight-duration {
    text-align: center;
    font-size: 12px;
    color: #666;
    flex: 1;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.flight-duration i {
    font-size: 16px;
    color: #00AEEF;
}

.flight-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.price-new {
    color: #FF6B35;
    font-size: 18px;
    font-weight: bold;
}

.flight-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.price-per-person {
    color: #FF6B35;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.airline-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.baggage-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
}

.baggage-info i {
    color: #00AEEF;
}

.promo-banner {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.promo-content {
    flex: 1;
}

.promo-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.promo-content p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.5;
}

.promo-btn {
    background: white;
    color: #00AEEF;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.promo-btn:active {
    transform: scale(0.98);
}

.promo-icon {
    font-size: 32px;
    opacity: 0.8;
}

/* Booking Form */
.booking-form {
    background: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 80px;
}

.booking-header {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-btn-blue {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.back-btn-blue:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.98);
}

.booking-header h2 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.booking-content {
    background: white;
    margin: 20px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-content .form-group {
    margin-bottom: 20px;
}

.booking-content .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.booking-content .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: #fafafa;
}

.booking-content .form-group input:focus {
    outline: none;
    border-color: #00AEEF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.passenger-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.passenger-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.passenger-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00AEEF;
}

.passenger-header h3 {
    color: #00AEEF;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.passenger-header h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #00AEEF;
    border-radius: 2px;
}

.flight-summary {
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #00AEEF;
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.1);
}

.flight-summary h3 {
    color: #00AEEF;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flight-summary p {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

.flight-summary strong {
    color: #333;
    font-weight: 600;
}

.flight-summary .total-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 174, 239, 0.2);
    font-size: 18px;
    font-weight: bold;
    color: #FF6B35;
}

.btn-payment {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
}

.btn-payment:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Payment */
.payment-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-methods {
    margin: 20px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 10px;
}

.payment-option:hover,
.payment-option.selected {
    border-color: #00AEEF;
    background: #f0f8ff;
}

.payment-option input[type="radio"] {
    margin-right: 0;
}

.payment-option i {
    font-size: 24px;
    color: #00AEEF;
}

.total-price {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.total-price h3 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.total-price .amount {
    color: #FF6B35;
    font-size: 28px;
    font-weight: bold;
}

/* Ticket */
.ticket-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ticket-header h2 {
    color: #00AEEF;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-header h2 i {
    font-size: 24px;
}

.btn-print {
    background: #00AEEF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-print:hover {
    background: #0078D4;
}

.btn-print i {
    font-size: 18px;
}

.ticket {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.ticket-info {
    background: white;
    color: #333;
    padding: 18px;
    border-radius: 10px;
    margin: 12px 0;
    border-left: 4px solid #00AEEF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-info h3 {
    color: #00AEEF;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.6;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-label {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.ticket-value {
    color: #333;
    font-weight: bold;
    font-size: 14px;
    text-align: right;
}

.ticket-info i {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    font-size: 12px;
    gap: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 10px;
    min-width: 60px;
}

.nav-item:hover {
    background: #f0f8ff;
    color: #00AEEF;
}

.nav-item.active {
    color: #00AEEF;
    background: #f0f8ff;
}

.nav-item:active {
    transform: scale(0.95);
}

.nav-icon {
    font-size: 24px;
}

/* Print Styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    body {
        background: white;
        padding: 0;
        margin: 0;
        font-size: 12pt;
    }
    
    .header,
    .bottom-nav,
    .btn-print,
    .back-btn,
    .ticket-header {
        display: none !important;
    }
    
    .ticket-section {
        padding: 0;
        margin: 0;
        box-shadow: none;
        background: white;
    }
    
    .ticket-container {
        padding: 0;
        margin: 0;
    }
    
    .ticket {
        background: white !important;
        color: #000 !important;
        padding: 30px;
        margin: 0;
        border: 2px solid #333;
        border-radius: 0;
        page-break-inside: avoid;
        page-break-after: auto;
    }
    
    .ticket h2 {
        color: #00AEEF !important;
        font-size: 24pt;
        margin-bottom: 20px;
        border-bottom: 3px solid #00AEEF;
        padding-bottom: 10px;
    }
    
    .ticket-info {
        background: #f8f9fa !important;
        border: 1px solid #ddd !important;
        border-left: 4px solid #00AEEF !important;
        padding: 15px;
        margin-bottom: 15px;
        page-break-inside: avoid;
    }
    
    .ticket-info h3 {
        color: #00AEEF !important;
        font-size: 14pt;
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    .ticket-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dotted #ccc;
    }
    
    .ticket-row:last-child {
        border-bottom: none;
    }
    
    .ticket-label {
        color: #666 !important;
        font-weight: 600;
        width: 40%;
    }
    
    .ticket-value {
        color: #000 !important;
        font-weight: bold;
        width: 60%;
        text-align: right;
    }
    
    .main-content {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
    
    /* Hide icons in print */
    .ticket i,
    .ticket-info i {
        display: none;
    }
    
    /* Ensure booking code is prominent */
    .ticket-info p {
        color: #00AEEF !important;
        font-size: 20pt !important;
    }
    
    /* Total payment styling */
    .ticket-info[style*="background: #fff3e0"] {
        background: #fff3e0 !important;
        border-left: 4px solid #FF6B35 !important;
    }
    
    .ticket-info[style*="background: #fff3e0"] h3 {
        color: #FF6B35 !important;
    }
    
    .ticket-info[style*="background: #fff3e0"] p {
        color: #FF6B35 !important;
        font-size: 18pt !important;
    }
    
    /* Reschedule notice */
    .ticket-info[style*="background: #fff3e0"][style*="border-left: 4px solid #ff9800"] {
        background: #fff3e0 !important;
        border-left: 4px solid #ff9800 !important;
    }
    
    /* Footer note */
    .ticket > div:last-child {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #ddd;
        font-size: 10pt;
        text-align: center;
        color: #666 !important;
    }
    
    @page {
        margin: 1cm;
        size: A4 portrait;
    }
}

/* Explore Section */
.explore-section {
    background: #f5f5f5;
    padding: 0;
    box-shadow: none;
}

.explore-section .section-header {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 25px;
    text-align: center;
}

.explore-section .section-header h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.explore-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px 20px;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.destination-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 200px;
    border-radius: 0;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.destination-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.destination-card-content {
    padding: 20px;
}

.destination-card h3 {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.destination-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.price-from {
    color: #FF6B35;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.destination-badge {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.3);
    transition: all 0.2s;
}

.destination-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
}

.destination-badge i {
    font-size: 14px;
}

.destination-badge.favorite {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
}

.destination-badge.beach {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
}

.destination-badge.adventure {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.explore-categories {
    margin-bottom: 30px;
}

.explore-categories h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    margin-bottom: 15px;
}

/* Bookings Section */
.bookings-section {
    background: #f5f5f5;
    padding: 0;
    box-shadow: none;
}

.bookings-header {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 25px;
    text-align: center;
}

.bookings-header h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bookings-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

#bookingsList {
    padding: 0 20px 20px;
}

.booking-item {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
}

.booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 15px;
}

.booking-code {
    font-weight: bold;
    color: #00AEEF;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.booking-status {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.booking-status.rescheduled {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.booking-status.pending {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.reschedule-notice {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid #ff9800;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.1);
}

.reschedule-notice i {
    color: #ff9800;
    font-size: 20px;
    margin-top: 2px;
}

.reschedule-notice-content h4 {
    color: #ff9800;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

.reschedule-notice-content p {
    color: #666;
    font-size: 13px;
    margin: 3px 0;
}

.rescheduled-flight-info {
    background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
    border-left: 4px solid #00AEEF;
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.1);
}

.rescheduled-flight-info h4 {
    color: #00AEEF;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: bold;
}

.rescheduled-flight-info p {
    color: #666;
    font-size: 13px;
    margin: 3px 0;
}

.booking-details {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
    padding-left: 15px;
    line-height: 1.8;
}

.booking-details p {
    margin: 8px 0;
}

.booking-details strong {
    color: #333;
    font-weight: 600;
}

.booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-left: 15px;
    flex-wrap: wrap;
}

.btn-reschedule-action,
.btn-reschedule {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s;
}

.btn-reschedule-action:hover,
.btn-reschedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.btn-reschedule-action:active,
.btn-reschedule:active {
    transform: translateY(0);
}

.btn-reschedule-action i,
.btn-reschedule i {
    font-size: 16px;
}

.booking-actions .btn-primary {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
    margin-bottom: 20px;
}

/* Removed Saved Section */
    border-left: 4px solid #FF6B35;
}

.saved-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.saved-airline {
    font-weight: bold;
    color: #00AEEF;
    font-size: 16px;
}

.remove-saved {
    background: #ff4444;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

/* Promo Section */
.promo-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #00AEEF;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    position: relative;
    transition: transform 0.2s;
}

.promo-card:active {
    transform: scale(0.98);
}

.promo-card.featured {
    border-color: #FF6B35;
    border-width: 3px;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF6B35;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.promo-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-image i {
    font-size: 64px;
    color: white;
    opacity: 0.9;
}

.promo-content {
    padding: 20px;
}

.promo-content h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.promo-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.promo-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.promo-details i {
    color: #00AEEF;
    font-size: 16px;
}

/* Messages Section */
.messages-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    border: 2px solid transparent;
}

.message-item:active {
    transform: scale(0.98);
    border-color: #00AEEF;
}

.message-item.unread {
    background: #f0f8ff;
    border-color: #00AEEF;
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 24px;
    color: white;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.message-header h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.message-time {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

.message-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.unread-badge {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Account Section */
.account-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.profile-avatar i {
    font-size: 40px;
    color: white;
}

.profile-header h2 {
    color: #333;
    margin-bottom: 5px;
}

.profile-header p {
    color: #666;
    font-size: 14px;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 15px;
}

.menu-item:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.menu-item i:first-child {
    font-size: 24px;
    color: #00AEEF;
    min-width: 24px;
}

.menu-item i:last-child {
    font-size: 20px;
    color: #999;
    margin-left: auto;
}

.menu-content {
    flex: 1;
}

.menu-content h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.menu-content p {
    color: #666;
    font-size: 12px;
}

.menu-item.logout {
    background: #fff3f3;
    margin-top: 10px;
}

.menu-item.logout i:first-child {
    color: #ff4444;
}

.menu-item.logout .menu-content h3 {
    color: #ff4444;
}

/* Auth Section */
.auth-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
}

.auth-container h2 {
    text-align: center;
    color: #00AEEF;
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.auth-link a {
    color: #00AEEF;
    text-decoration: none;
    font-weight: bold;
}

/* Home Section - Flight Gallery */
.home-section {
    background: #f5f5f5;
    padding: 0;
    box-shadow: none;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-content h1 i {
    font-size: 28px;
}

.hero-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-hero {
    background: white;
    color: #00AEEF;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero:active {
    transform: translateY(0);
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item i {
    font-size: 24px;
    opacity: 0.9;
}

.stat-item h3 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

.stat-item p {
    font-size: 11px;
    margin: 0;
    opacity: 0.8;
}

/* Quick Search */
.quick-search-container {
    padding: 0 20px;
    margin-bottom: 30px;
}

.quick-search-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-search-card h3 {
    color: #00AEEF;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-search-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.quick-option:active {
    background: linear-gradient(135deg, #00AEEF 0%, #0078D4 100%);
    color: white;
    border-color: #00AEEF;
    transform: scale(0.98);
}

.quick-option i {
    font-size: 20px;
    color: #00AEEF;
}

.quick-option:active i {
    color: white;
}

.quick-option span {
    font-size: 13px;
    font-weight: 500;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
}

.section-title h2 {
    color: #00AEEF;
    margin-bottom: 8px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.flights-gallery {
    padding: 0 20px 20px;
}

.flights-gallery h2 {
    color: #00AEEF;
    margin-bottom: 20px;
    font-size: 20px;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.flight-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 2px solid #f0f0f0;
}

.flight-image-card:active {
    transform: scale(0.98);
}

.flight-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(0, 120, 212, 0.15) 100%);
    transition: opacity 0.3s;
    z-index: 1;
}

.flight-image-card:active .image-overlay {
    opacity: 0.1;
}

.flight-image-card:active .flight-image {
    transform: scale(0.98);
    transition: transform 0.2s;
}

.flight-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flight-badge.popular {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.flight-badge.beach {
    background: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
    color: white;
}

.flight-badge.adventure {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
}

.flight-badge.history {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
}

.flight-card-content {
    padding: 15px;
    background: white;
}

.flight-card-content h3 {
    color: #333;
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.flight-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.flight-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 12px;
}

.flight-duration i {
    color: #00AEEF;
}

.flight-price {
    color: #666;
    font-size: 12px;
}

.flight-price strong {
    color: #FF6B35;
    font-size: 16px;
    font-weight: bold;
}

.price-placeholder {
    padding: 15px;
    background: #f8f9fa;
    color: #999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.price-placeholder i {
    font-size: 18px;
    color: #00AEEF;
}

/* Profile Edit Section */
.profile-edit-section,
.payment-methods-section,
.address-section,
.notifications-section,
.help-section,
.settings-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Settings List */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.setting-content h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.setting-content p {
    color: #666;
    font-size: 12px;
}

.setting-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00AEEF;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.faq-item.active {
    border-color: #00AEEF;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.faq-question h3 {
    color: #333;
    font-size: 16px;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #00AEEF;
    font-size: 20px;
    transition: transform 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Textarea */
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

/* Responsive */
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .flight-time {
        flex-direction: column;
        gap: 10px;
    }
    
    .ticket-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}
