/* ========================================
   THAI AIRWAYS CLONE - EXACT STYLESHEET
   Fonts: Inter, Inter-Medium, Inter-Bold, Bellefair
   Colors extracted from thaiairways.com
   ======================================== */

/* === Font Faces (exact from Thai Airways) === */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Bellefair';
    src: url('../assets/fonts/Bellefair.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: fallback;
}

/* === CSS Variables (extracted from Thai Airways) === */
:root {
    --tg-purple: #381b6b;
    --tg-purple-dark: #2d1656;
    --tg-purple-deep: #361D66;
    --tg-purple-light: #684b9b;
    --tg-purple-text: #2C3059;
    --tg-gold: #c6af7c;
    --tg-magenta: #CC0099;
    --tg-yellow: #FFCC00;
    --tg-body-color: #212529;
    --tg-heading-color: #000000;
    --tg-gray-border: #dee2e6;
    --tg-gray-text: #6c757d;
    --tg-bg-light: #f8f9fa;
    --tg-white: #ffffff;
    --tg-red: #dc3545;
    --tg-btn-gradient: linear-gradient(99deg, rgb(104, 75, 155) -27.72%, rgb(56, 27, 107) 127.08%);
    --tg-btn-disabled: #e3d4fe;
    --tg-section-gradient: linear-gradient(135deg, #8b2fa5 0%, #2d1161 100%);
    --tg-footer-bg: #1a0a3e;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--tg-body-color);
    background: var(--tg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: 'Inter', sans-serif;
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Loader (Thai Airways exact: loading GIF with logo background) === */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Thai Airways exact loader styles */
.loading-content {
    position: fixed;
    z-index: 9010;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    text-align: center;
    width: 500px;
    height: 100%;
    background: url('../assets/images/logo-loading.gif') no-repeat center center;
    background-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-image {
    max-width: 100%;
    height: auto;
}

/* === Top Bar === */
.top-bar {
    background: var(--tg-white);
    border-bottom: 1px solid var(--tg-gray-border);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    color: var(--tg-gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--tg-purple);
}

.top-bar-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* === Header === */
.main-header {
    background: var(--tg-white);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 38px;
}

.logo-icon img {
    width: 40px;
    height: 38px;
}

.logo-text-svg {
    height: 48px;
}

.logo-text-svg img {
    height: 36px;
    width: auto;
}

/* === Navigation === */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    padding: 12px 16px;
    color: var(--tg-purple);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--tg-purple-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--tg-gold);
    border-radius: 2px;
}

.nav-search {
    padding: 12px 15px;
    color: var(--tg-purple);
}

.nav-search svg {
    width: 20px;
    height: 20px;
    stroke: var(--tg-purple);
    fill: none;
    stroke-width: 2;
}

/* === Breadcrumb === */
.breadcrumb-bar {
    padding: 14px 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid var(--tg-gray-border);
}

.breadcrumb-bar a {
    color: var(--tg-purple);
}

.breadcrumb-bar span {
    color: var(--tg-gray-text);
    margin: 0 6px;
}

/* === Page Content (Form Page) === */
.page-content {
    padding: 30px 0 80px;
    min-height: 50vh;
}

.page-title {
    font-family: 'Bellefair', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--tg-purple-text);
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* === Sign In Box === */
.sign-in-box {

    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    background: var(--tg-white);
    max-width: 730px;
    border: 1px solid var(--Gradient-brand-surface-light, #503383);
}

.sign-in-content h2 {
    font-family: 'Bellefair', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--tg-heading-color);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.sign-in-content p {
    color: var(--tg-body-color);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2px;
}

.sign-in-content a {
    color: var(--tg-purple);
    text-decoration: underline;
}

.btn-sign-in {
    background: var(--tg-btn-gradient);
    color: var(--tg-white);
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: inline-block;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-sign-in:hover {
    opacity: 0.9;
}

/* === Booking Form === */
.booking-form {
    max-width: 750px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 16px 12px;
    border: 0.8px solid var(--tg-gray-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--tg-body-color);
    height: 58px;
    transition: border-color 0.2s;
    background: var(--tg-white);
}

.form-group input:focus {
    border-color: var(--tg-purple);
    box-shadow: 0 0 0 2px rgba(56, 27, 107, 0.1);
}

.form-group input::placeholder {
    color: var(--tg-gray-text);
    font-size: 14px;
}

.form-hints {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
    color: var(--tg-gray-text);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.form-hints li {
    margin-bottom: 2px;
}

.form-error {
    background: #fce4ec;
    border: 1px solid var(--tg-red);
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    color: var(--tg-red);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.btn-manage {
    background: var(--tg-btn-disabled);
    color: var(--tg-white);
    padding: 8px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    height: 44px;
}

.btn-manage.active,
.btn-manage:not(:disabled) {
    background: var(--tg-btn-gradient);
    cursor: pointer;
}

.btn-manage:disabled {
    background: var(--tg-btn-disabled);
    color: var(--tg-white);
    cursor: not-allowed;
}

/* ================================
   TICKET PAGE STYLES
   ================================ */

/* === Ticket Layout === */
.ticket-page-wrapper {
    display: flex;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.ticket-main {
    flex: 1;
    max-width: 850px;
}

.ticket-sidebar {
    width: 220px;
    flex-shrink: 0;
    padding-left: 30px;
    padding-top: 10px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

/* === Section Header Bars === */
.section-bar {
    background: var(--tg-section-gradient);
    color: var(--tg-white);
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: 'Bellefair', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-bar svg {
    width: 22px;
    height: 22px;
    fill: var(--tg-white);
}

.section-bar.magenta {
    background: linear-gradient(135deg, #c2185b 0%, #880e4f 100%);
}

.section-bar.confirmed {
    font-size: 20px;
    padding: 16px 20px;
}

/* === Reservation Info === */
.reservation-section {
    margin-bottom: 30px;
}

.reservation-content {
    display: flex;
    gap: 40px;
    padding: 5px 0 20px;
}

.reservation-details {
    flex: 1;
}

.reservation-details .detail-row {
    display: flex;
    margin-bottom: 6px;
    font-size: 14px;
}

.detail-row .label {
    color: var(--tg-gray-text);
    min-width: 170px;
}

.detail-row .value {
    font-weight: 700;
    color: var(--tg-body-color);
}

.detail-row .value.pnr {
    color: var(--tg-purple);
    font-size: 22px;
    font-weight: 700;
}

.passenger-info {
    margin-top: 15px;
    padding-top: 10px;
}

.passenger-info .name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.passenger-info .eticket {
    font-size: 13px;
    color: var(--tg-gray-text);
}

.passenger-info .eticket a {
    color: var(--tg-purple);
    text-decoration: underline;
}

/* Quick Links */
.quick-links {
    min-width: 220px;
}

.quick-links h3 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--tg-heading-color);
}

.quick-links a {
    display: block;
    color: var(--tg-purple);
    text-decoration: underline;
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* === Notice Sections === */
.notice-section {
    margin-bottom: 25px;
}

.notice-content {
    padding: 15px 5px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--tg-body-color);
}

.notice-content a {
    color: var(--tg-purple);
    text-decoration: underline;
}

/* === Itinerary === */
.itinerary-section {
    margin-bottom: 30px;
}

.flight-card {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tg-gray-border);
}

.flight-card:last-child {
    border-bottom: none;
}

.flight-route {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flight-route svg {
    width: 18px;
    height: 18px;
    fill: var(--tg-gray-text);
}

.flight-date {
    font-size: 14px;
    color: var(--tg-gray-text);
    margin-bottom: 18px;
}

.flight-timeline {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
    min-width: 280px;
}

.timeline-left::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--tg-gray-border);
}

.timeline-point {
    position: relative;
    margin-bottom: 25px;
}

.timeline-point::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--tg-gray-border);
    border-radius: 50%;
    background: var(--tg-white);
}

.timeline-point .time {
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-heading-color);
    display: inline;
}

.timeline-point .city {
    font-size: 18px;
    font-weight: 700;
    color: var(--tg-heading-color);
    margin-left: 8px;
    display: inline;
}

.timeline-point .next-day {
    font-size: 11px;
    color: var(--tg-magenta);
    font-weight: 600;
    vertical-align: super;
}

.timeline-point .airport {
    font-size: 13px;
    color: var(--tg-gray-text);
    display: block;
    margin-top: 2px;
}

.timeline-point .terminal {
    font-size: 13px;
    color: var(--tg-gray-text);
}

.flight-info-table {
    border: 1px solid var(--tg-gray-border);
    background: var(--tg-bg-light);
    padding: 12px 18px;
    font-size: 13px;
    align-self: flex-start;
    min-width: 280px;
}

.flight-info-table .info-row {
    display: flex;
    margin-bottom: 4px;
}

.flight-info-table .info-label {
    min-width: 120px;
    color: var(--tg-gray-text);
}

.flight-info-table .info-value {
    color: var(--tg-body-color);
    font-weight: 500;
}

.flight-info-table a {
    color: var(--tg-purple);
    text-decoration: underline;
    display: block;
    margin-top: 6px;
}

.flight-summary {
    margin-top: 10px;
    font-size: 13px;
}

.flight-summary a {
    color: var(--tg-purple);
    text-decoration: underline;
    margin-right: 30px;
}

.flight-summary .duration-text {
    color: var(--tg-gray-text);
}

.flight-summary .duration-text strong {
    color: var(--tg-heading-color);
}

/* === Traveller Section === */
.traveller-section {
    margin-bottom: 30px;
}

.traveller-card {
    padding: 20px 5px;
}

.traveller-icon {
    width: 52px;
    height: 52px;
    background: var(--tg-gray-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.traveller-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--tg-gray-text);
}

.traveller-type {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.traveller-name {
    font-size: 14px;
    color: var(--tg-gray-text);
    margin-bottom: 4px;
}

.traveller-contact {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-modify {
    border: 1px solid var(--tg-gray-border);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--tg-gray-text);
    background: var(--tg-white);
    cursor: pointer;
    margin-top: 10px;
}

/* === Services Section === */
.services-section {
    margin-bottom: 30px;
}

.services-notice {
    border: 2px solid var(--tg-magenta);
    padding: 12px 16px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--tg-magenta);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.services-notice svg {
    width: 18px;
    height: 18px;
    fill: var(--tg-magenta);
    flex-shrink: 0;
    margin-top: 2px;
}

.no-services {
    font-size: 14px;
    color: var(--tg-gray-text);
    padding: 10px 5px;
}

/* === Flight Notes === */
.flight-notes-section {
    margin-bottom: 30px;
}

.flight-notes-content {
    padding: 15px 5px;
    font-size: 13px;
    color: var(--tg-gray-text);
    line-height: 1.8;
}

/* === Baggage Section === */
.baggage-section {
    margin-bottom: 30px;
}

.baggage-passenger {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 5px 0;
}

.baggage-route {
    margin-bottom: 25px;
}

.baggage-route-header {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.baggage-route-header svg {
    width: 16px;
    height: 16px;
    fill: var(--tg-gray-text);
}

.baggage-items {
    display: flex;
    gap: 50px;
    margin-bottom: 12px;
}

.baggage-item h4 {
    font-size: 13px;
    color: var(--tg-gray-text);
    margin-bottom: 8px;
}

.baggage-icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.baggage-count {
    font-size: 36px;
    font-weight: 300;
}

.baggage-icon {
    width: 40px;
    height: 40px;
}

.baggage-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--tg-purple);
}

.baggage-desc {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.baggage-weight {
    font-size: 11px;
    color: var(--tg-gray-text);
}

.baggage-carrier {
    font-size: 11px;
    color: var(--tg-gray-text);
}

.baggage-disclaimer {
    font-size: 12px;
    color: var(--tg-gray-text);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 0;
    border-top: 1px solid var(--tg-gray-border);
    margin-top: 10px;
    line-height: 1.6;
}

/* === Sidebar Actions === */
.sidebar-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--tg-gray-border);
    font-size: 14px;
    color: var(--tg-gray-text);
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-action:first-child {
    border-top: 1px solid var(--tg-gray-border);
}

.sidebar-action:hover {
    background: var(--tg-bg-light);
}

.sidebar-action svg {
    width: 18px;
    height: 18px;
    fill: var(--tg-gray-text);
}

/* === Additional Info === */
.additional-section {
    margin-bottom: 30px;
}

.additional-bar {
    background: linear-gradient(135deg, #c2185b 0%, #880e4f 100%);
    color: var(--tg-white);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    border-radius: 4px;
    font-family: 'Bellefair', serif;
}

.additional-content {
    padding: 10px 5px;
    font-size: 13px;
    color: var(--tg-gray-text);
    line-height: 1.7;
}

.additional-content strong {
    color: var(--tg-heading-color);
}

.additional-content a {
    color: var(--tg-purple);
    text-decoration: underline;
}

/* === Collapsible === */
.collapsible-bar {
    background: var(--tg-section-gradient);
    color: var(--tg-white);
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Bellefair', serif;
}

.collapsible-bar svg {
    width: 22px;
    height: 22px;
    fill: var(--tg-white);
    transition: transform 0.3s;
}

.collapsible-bar.open svg {
    transform: rotate(180deg);
}

/* ================================
   FOOTER
   ================================ */
.main-footer {
    background: linear-gradient(180deg, #2d1161 0%, #1a0a3e 50%, #0d0520 100%);
    color: var(--tg-white);
    padding-top: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-column a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--tg-white);
}

.footer-social {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tg-gold);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.8;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: var(--tg-white);
}

.footer-newsletter {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    align-items: center;
}

.newsletter-box {
    flex: 1;
    background: linear-gradient(135deg, rgba(139, 47, 165, 0.4), rgba(200, 130, 200, 0.3));
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Bellefair', serif;
}

.newsletter-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.btn-subscribe {
    background: var(--tg-white);
    color: var(--tg-body-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.btn-unsubscribe {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.app-section {
    flex: 0 0 350px;
}

.app-section h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Bellefair', serif;
}

.app-section p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.5;
}

.app-badges {
    display: flex;
    gap: 10px;
}

/* .app-badge {
    height: 40px;
    background: #333;
    border-radius: 6px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--tg-white);
} */

.app-badge .badge-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.app-badge .badge-store {
    font-size: 13px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .ticket-page-wrapper {
        flex-direction: column;
    }

    .ticket-sidebar {
        width: 100%;
        padding-left: 0;
        position: static;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .newsletter-box {
        width: 100%;
    }

    .app-section {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sign-in-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .reservation-content {
        flex-direction: column;
        gap: 20px;
    }

    .flight-timeline {
        flex-direction: column;
    }

    .baggage-items {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}