:root {
    --ram-red: #C8102E;
    --ram-red-dark: #a00d25;
    --ram-red-light: #f8d7da;
    --ram-blue: #002D62;
    --ram-blue-dark: #001a3d;
    --ram-blue-light: #e8eef7;
    --ram-gold: #D4A843;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F7F8FA;
    --bg-warm: #FDF8F3;
    --white: #ffffff;
    --grey: #d3d5d9;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; border: none; font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

.topbar {
    background: var(--ram-red);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1060;
}
.topbar a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}
.topbar a:hover { color: var(--white); }
.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}
.topbar-item i { font-size: 0.82rem; color: var(--ram-gold); }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}
.topbar-lang-btn {
    background: none;
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.15rem 0;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
    font-family: var(--font-body);
}
.topbar-lang-btn:hover { color: var(--white); }
.topbar-lang-btn i { font-size: 0.72rem; }
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.topbar-socials a {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
}
.topbar-socials a:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

@media (max-width: 767px) {
    .topbar { display: none; }
}

.site-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--ram-red);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-text span { color: var(--ram-blue); }
.logo-star { color: var(--ram-gold); font-size: 1.1rem; }

.logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
    display: block;
}

.logo-img-w {
    height: 60px; /* Adjust as needed */
    width: auto;
    display: block;
}

.nav-main .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ram-blue);
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.25s;
}
.nav-main .nav-link:hover {
    color: var(--ram-red);
    background: rgba(200,16,46,0.06);
}
.nav-main .nav-link.active-link {
    color: var(--ram-red);
    background: rgba(200,16,46,0.08);
}

.btn-header-login {
    padding: 0.45rem 1.3rem;
    border: 1.5px solid var(--ram-red);
    color: var(--ram-red);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.btn-header-login:hover {
    background: var(--ram-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,45,98,0.25);
}

.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ram-blue);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../image/bg-1.jpg') center/cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(76 0 0 / 94%) 0%, rgb(150 8 26 / 78%) 50%, rgba(200, 16, 46, 0.5) 100%); /*linear-gradient(135deg, rgba(0,45,98,0.88) 0%, rgba(0,45,98,0.7) 40%, rgba(0,45,98,0.5) 100%);*/
    z-index: 1;
}
.hero-decor {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}
.hero-decor-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 0;
}

.hero-text { padding-right: 2rem; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,168,67,0.15);
    border: 1px solid rgba(212,168,67,0.3);
    color: var(--ram-gold);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}
.hero-text h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-text h1 em {
    font-style: normal;
    color: var(--ram-gold);
}
.hero-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 440px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.btn-hero-primary {
    padding: 0.7rem 1.8rem;
    background: var(--ram-red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-hero-primary:hover {
    background: var(--ram-red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.btn-hero-outline {
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.25rem;
    max-width: 420px;
    width: 100%;
    animation: fadeInRight 0.7s ease-out 0.2s both;
}

.search-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    background: var(--grey);
    padding: 3px;
    border-radius: 10px;
}
.tab-btn {
    flex: 1;
    background: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    transition: all 0.25s;
    text-align: center;
}
.tab-btn.active {
    background: var(--white);
    color: var(--ram-blue);
    box-shadow: var(--shadow-sm);
}
.tab-btn:hover:not(.active) { color: var(--text-dark); }

.search-form { display: flex; flex-direction: column; gap: 0.6rem; }

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.input-group-sm label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.input-wrap-sm {
    position: relative;
}
.input-wrap-sm i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
}
.input-sm {
    width: 100%;
    padding: 0.55rem 0.6rem 0.55rem 2.2rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
}
.input-sm:focus {
    border-color: var(--ram-blue);
    box-shadow: 0 0 0 3px rgba(0,45,98,0.1);
}
.input-sm::placeholder { color: #b0b0b0; }

.passenger-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

input[type="date"].input-sm {
    width: 152px;
}

.btn-search-flight {
    width: 100%;
    background: var(--ram-red);
    color: var(--white);
    padding: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.btn-search-flight:hover {
    background: var(--ram-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.3);
}

.search-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.search-meta a { color: var(--ram-blue); font-weight: 600; }
.search-meta a:hover { color: var(--ram-red); }

.trust-bar {
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-item i {
    color: var(--ram-gold);
    font-size: 1.1rem;
}

.benefits-section { padding: 5rem 0; background: var(--white); }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ram-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--ram-red);
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ram-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
}

.benefit-card {
    padding: 2rem;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.35s;
    height: 100%;
}
.benefit-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}
.benefit-icon.red { background: var(--ram-red-light); color: var(--ram-red); }
.benefit-icon.blue { background: var(--ram-blue-light); color: var(--ram-blue); }
.benefit-icon.gold { background: #fef3c7; color: #b45309; }
.benefit-icon.green { background: #d1fae5; color: #065f46; }

.benefit-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-section {
    background: linear-gradient(135deg, var(--ram-red) 0%, #4c0000 100%);/*linear-gradient(135deg, var(--ram-blue) 0%, #003d82 100%);*/
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
}
.about-section .section-label { color: var(--ram-gold); }
.about-section .section-label::before { background: var(--ram-gold); }
.about-section .section-title { color: var(--white); }
.about-section .section-subtitle { color: rgba(255,255,255,0.7); }
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.about-feat i {
    color: var(--ram-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.destinations-section { padding: 5rem 0; background: var(--bg-light); }

.dest-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s;
    height: 100%;
}
.dest-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.dest-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.dest-img-wrap img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.dest-card:hover .dest-img-wrap img { transform: scale(1.08); }
.dest-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.dest-country {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}
.dest-info {
    padding: 1.25rem 1.25rem 1rem;
}
.dest-info h3 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}
.dest-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.dest-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dest-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ram-blue);
}
.dest-price small {
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.btn-dest {
    padding: 0.4rem 1rem;
    background: var(--ram-blue-light);
    color: var(--ram-blue);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    transition: all 0.25s;
}
.btn-dest:hover {
    background: var(--ram-blue);
    color: var(--white);
}

.offers-section { padding: 5rem 0; background: var(--white); }

.offer-card {
    border: 1.5px solid var(--border);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.offer-card:hover {
    border-color: var(--ram-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.offer-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.offer-badge.best { background: var(--ram-red); color: var(--white); }
.offer-badge.discount { background: var(--ram-blue); color: var(--white); }
.offer-badge.new { background: var(--ram-gold); color: var(--text-dark); }

.offer-route {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.offer-airport {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}
.offer-airport small {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.offer-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    color: #d1d5db;
}
.offer-arrow .line { flex: 1; height: 1.5px; background: #d1d5db; }
.offer-arrow i { font-size: 0.85rem; }

.offer-dates {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.offer-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ram-red);
    margin-bottom: 0.15rem;
}
.offer-price-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.offer-perks {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.offer-perks span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.offer-perks i { color: #10b981; font-size: 0.85rem; }

.mt-auto { margin-top: auto; }
.btn-offer {
    width: 100%;
    padding: 0.7rem;
    background: var(--ram-red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-offer:hover {
    background: var(--ram-blue-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0,45,98,0.25);
}

.newsletter-section {
    background: var(--bg-warm);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}
.newsletter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 3rem;
}
.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ram-blue);
    margin-bottom: 0.4rem;
}
.newsletter-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 320px;
}
.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--ram-blue); }
.btn-newsletter {
    padding: 0.7rem 1.5rem;
    background: var(--ram-red);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-newsletter:hover {
    background: var(--ram-red-dark);
    color: var(--white);
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 0;
}
.footer-brand {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-brand span { color: var(--ram-red); }
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-socials {
    display: flex;
    gap: 0.5rem;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #94a3b8;
    transition: all 0.25s;
}
.footer-socials a:hover {
    background: var(--ram-red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: #94a3b8;
    transition: all 0.2s;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a { color: #64748b; }
.footer-bottom-links a:hover { color: var(--white); }

.toast-custom {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: #1e293b;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 9999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.toast-custom.show {
    transform: translateX(-50%) translateY(0);
}
.toast-custom i { color: #10b981; font-size: 1.1rem; }

.no {
    display:none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-text { padding-right: 0; margin-bottom: 2rem; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .search-widget { max-width: 100%; margin: 0 auto; }
    .about-features { grid-template-columns: 1fr; }
    .newsletter-card { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: auto; width: 100%; }
}
@media (max-width: 767px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero-section { min-height: auto; }
    .section-title { font-size: 1.7rem; }
    .hero-stats { gap: 1.25rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .search-row { grid-template-columns: 1fr; }
    .passenger-row { grid-template-columns: 1fr; }
}