@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary-orange: #ff6600;
    --primary-orange-hover: #e05500;
    --primary-blue: #0066ff;
    --primary-blue-hover: #0052cc;
    --dark-color: #182131;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-muted: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --card-shadow: 0 10px 30px -5px rgba(24, 33, 49, 0.08), 0 4px 12px -4px rgba(24, 33, 49, 0.03);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation Customization */
.navbar-custom {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.navbar-brand img {
    height: 40px;
    object-fit: contain;
}

.nav-link-custom {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-custom:hover {
    color: var(--primary-blue);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 12px;
    background-color: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: calc(100% - 24px);
}

.nav-link-custom.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(24, 33, 49, 0.6), rgba(24, 33, 49, 0.8)), url('../images/hero-bg.png') no-repeat center center/cover;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 100px 0 160px 0;
    text-align: center;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-weight: 500;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-desc {
    font-size: 15px;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 15px auto 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Search Engine Card */
.search-container-wrap {
    margin-top: -120px;
    position: relative;
    z-index: 100;
}

.search-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    padding: 35px;
    border: 1px solid rgba(243, 244, 246, 0.8);
}

.trip-type-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.trip-type-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--gray-muted);
    padding: 6px 16px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    font-size: 13px;
}

.trip-type-btn.active {
    background-color: rgba(0, 102, 255, 0.08);
    color: var(--primary-blue);
}

.form-label-custom {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-muted);
    margin-bottom: 6px;
    display: block;
}

.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-muted);
    font-size: 16px;
    pointer-events: none;
}

.form-control-custom {
    border: 1.5px solid var(--border-color);
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    background-color: var(--white);
}

.form-control-custom:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    outline: none;
}

/* Disabled search field styling to prevent layout shifting */
.disabled-field {
    opacity: 0.55;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.disabled-field * {
    pointer-events: none; /* Let click event bubble up to the wrapper */
}

.disabled-field .form-control-custom {
    background-color: #f1f5f9 !important;
    border-color: var(--border-color) !important;
}

/* Custom Autocomplete search panel */
.airport-search-panel {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    min-width: 320px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 15px 40px rgba(24, 33, 49, 0.15);
    border: 1px solid var(--border-color);
    z-index: 1000;
    display: none;
    padding: 16px;
    animation: fadeIn 0.2s ease-in-out;
}

.airport-search-input-wrap {
    position: relative;
    margin-bottom: 12px;
}

.airport-search-input-wrap input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.airport-search-input-wrap input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.airport-search-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-muted);
}

.airport-panel-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-muted);
    margin-bottom: 8px;
    margin-top: 12px;
}

.airport-panel-section-title:first-of-type {
    margin-top: 0;
}

.airport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.airport-chip {
    padding: 8px;
    background-color: var(--light-bg);
    border: 1.5px solid transparent;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.airport-chip:hover {
    border-color: var(--primary-orange);
    background-color: rgba(255, 102, 0, 0.03);
}

.airport-list-item {
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
    border: 1.5px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.airport-list-item:hover {
    border-color: var(--primary-orange);
    background-color: rgba(255, 102, 0, 0.02);
}

.airport-item-iata {
    background-color: rgba(24, 33, 49, 0.05);
    color: var(--dark-color);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Highlight matching search text */
.highlight-text {
    background-color: rgba(255, 102, 0, 0.15);
    color: var(--primary-orange);
    font-weight: 700;
    border-radius: 2px;
    padding: 0 2px;
}

/* Passenger Counter Modal Layout */
.passenger-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(24, 33, 49, 0.45);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.passenger-modal-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(24, 33, 49, 0.25);
    width: 90%;
    max-width: 440px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.passenger-counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition-smooth);
}

.counter-btn:hover:not(:disabled) {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background-color: rgba(255, 102, 0, 0.03);
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    font-size: 15px;
    font-weight: 700;
    width: 18px;
    text-align: center;
}

/* Search Route summary card */
.route-summary-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(255, 102, 0, 0.03) 100%);
    border: 1.5px dashed var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    margin-top: 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.4s ease-in-out forwards;
}

/* Premium Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8000 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover) 0%, var(--primary-orange) 100%);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary-custom {
    background-color: var(--primary-blue);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Featured / Popular destinations Swiper style */
.swiper-container-wrap {
    padding: 20px 0 50px 0;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 420px;
    box-shadow: var(--card-shadow);
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 33, 49, 0.95) 0%, rgba(24, 33, 49, 0.4) 50%, rgba(24, 33, 49, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
}

.destination-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.destination-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Features & Services styling */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(241, 245, 249, 0.6);
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
}

/* Welcome Image Box effects */
.welcome-img-box {
    transition: var(--transition-smooth);
}
.welcome-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(24, 33, 49, 0.15) !important;
}
.welcome-img {
    transition: var(--transition-smooth);
}
.welcome-img-box:hover .welcome-img {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(24, 33, 49, 0.12);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(0, 102, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* FAQ Section */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--dark-color);
    padding: 18px 24px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(0, 102, 255, 0.03);
    color: var(--primary-blue);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Results View Card & Layouts */
.results-summary-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow);
    padding: 24px 30px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 76px;
    z-index: 90;
}

.filter-sidebar {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow);
    padding: 24px;
    border: 1px solid var(--border-color);
}

.filter-section-title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--dark-color);
    border-bottom: 1.5px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 8px;
}

/* Loading Skeletons */
.skeleton-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-bar {
    height: 16px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 12px;
}

@keyframes skeleton-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Flight Itinerary Cards */
.flight-card {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.flight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(24, 33, 49, 0.12);
    border-color: rgba(0, 102, 255, 0.3);
}

.flight-timeline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 15px;
}

.flight-timeline-line {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    position: relative;
}

.flight-timeline-line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.flight-timeline-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.flight-timeline-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--gray-muted);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flight-timeline-stops {
    font-size: 10px;
    color: var(--primary-orange);
    position: absolute;
    top: -18px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.flight-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Airplane seats selector grid */
.seat-map-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    padding: 40px;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.plane-cabin-box {
    background-color: #f1f5f9;
    border-radius: 120px 120px 24px 24px;
    padding: 60px 20px 40px 20px;
    border: 2px solid var(--border-color);
}

.cabin-exit-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gray-muted);
    text-transform: uppercase;
    padding: 10px 0;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin: 15px 0;
}

.seat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.seat-row-number {
    width: 24px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-muted);
}

.seat-group {
    display: flex;
    gap: 8px;
}

.seat-btn {
    width: 32px;
    height: 32px;
    border: 1.5px solid #cbd5e1;
    background-color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    color: var(--dark-color);
    transition: var(--transition-smooth);
}

.seat-btn:hover:not(.occupied) {
    border-color: var(--primary-blue);
    background-color: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
}

.seat-btn.occupied {
    background-color: #e2e8f0;
    border-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
}

.seat-btn.selected {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.seat-btn.premium {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.seat-btn.premium.selected {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

/* Flipping Credit Card Visual Mock */
.checkout-card-preview-box {
    perspective: 1000px;
    margin-bottom: 30px;
}

.credit-card-preview {
    width: 100%;
    max-width: 380px;
    height: 220px;
    border-radius: var(--border-radius-md);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(24, 33, 49, 0.15);
    margin: 0 auto;
}

.credit-card-preview.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius-md);
    padding: 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2e3c52 100%);
}

.card-back {
    background: linear-gradient(135deg, #0f172a 0%, var(--dark-color) 100%);
    transform: rotateY(180deg);
    padding: 24px 0;
}

.card-chip {
    width: 48px;
    height: 38px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 6px;
}

.card-number {
    font-size: 20px;
    letter-spacing: 2px;
    font-family: monospace;
    margin: 20px 0;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-label {
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 1px;
}

.card-value {
    font-size: 14px;
    font-weight: 500;
}

.card-magnetic-strip {
    background-color: #000;
    height: 44px;
    width: 100%;
    margin-top: 10px;
}

.card-signature-box {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.card-signature-line {
    background-color: var(--white);
    height: 36px;
    width: 75%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--dark-color);
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Success Confirmation Ticket details */
.ticket-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.ticket-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 24px 30px;
}

.ticket-divider-dashed {
    border-top: 2.5px dashed var(--border-color);
    position: relative;
    margin: 24px 0;
}

.ticket-divider-dashed::before, .ticket-divider-dashed::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--light-bg);
    top: -12px;
    border: 1px solid var(--border-color);
}

.ticket-divider-dashed::before { left: -13px; }
.ticket-divider-dashed::after { right: -13px; }

/* Static and Legal document page content styling */
.document-content-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    padding: 50px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.document-content-card h1, .document-content-card h2, .document-content-card h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 30px;
    margin-bottom: 16px;
}

.document-content-card p {
    margin-bottom: 20px;
    color: rgba(24, 33, 49, 0.85);
}

.footer-text {
    font-size: 11px;
    line-height: 1.6;
    color: var(--gray-muted);
}

.footer-link {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-blue);
}

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

/* Redesigned About page styles */
.about-hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    margin-top: 68px;
}

.about-card {
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(24, 33, 49, 0.1) !important;
    border-color: rgba(0, 102, 255, 0.2) !important;
}

.about-card:hover .about-icon-box {
    background-color: var(--primary-orange) !important;
    transform: scale(1.1);
}

@media print {
    body * { visibility: hidden; }
    .ticket-card, .ticket-card * { visibility: visible; }
    .ticket-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        border: none;
    }
    .btn { display: none !important; }
}
