* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* Header Styles */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.header-logo p {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: var(--text-main);
}

.header-logo span {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-list li {
    opacity: 0;
    transform: translateY(-10px);
    animation: navEnter 0.6s forwards;
}

.nav-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-list li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-list li:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-list li:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-list li:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-list li:nth-child(6) {
    animation-delay: 0.35s;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: all var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-secondary);
    font-weight: bold;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.themeSwitcher {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--text-main);
    font-size: 18px;
    transition: all var(--transition);
}

.themeSwitcher:hover {
    background: var(--color-secondary);
    color: white;
}

.ticket-btn,
.user-profile-btn {
    background: var(--color-secondary);
    border-radius: 50%;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 40px;
    overflow: hidden;
    border: none;
    color: white;
    text-decoration: none;
    transition: all var(--transition);
}

.ticket-btn span,
.user-profile-btn span {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
    font-weight: bold;
}

.ticket-btn i,
.user-profile-btn i {
    font-size: 20px;
    color: white;
    margin-left: -1px;
}

.ticket-btn:hover,
.user-profile-btn:hover {
    background: var(--color-accent);
    border-radius: 50px;
}

.user-profile-btn:hover {
    width: 110px;
    padding: 8px 12px;
}

.ticket-btn:hover {
    width: 125px;
    padding: 8px 12px;
}

.ticket-btn:hover span,
.user-profile-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

header.sidebar {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 260px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 40px 20px;
}

header.sidebar .nav-list {
    flex-direction: column;
    margin-top: 60px;
    width: 100%;
    gap: 15px;
}

header.sidebar .header-buttons {
    flex-direction: column;
    margin-top: auto;
    width: 100%;
    align-items: flex-start;
}

header.sidebar .ticket-btn,
header.sidebar .user-profile-btn {
    width: 100%;
    border-radius: 12px;
    justify-content: flex-start;
}

header.sidebar .ticket-btn span,
header.sidebar .user-profile-btn span {
    opacity: 1;
    transform: translateX(0);
}

body.has-sidebar {
    padding-left: 260px;
    transition: padding var(--transition);
}

header.sidebar .nav-link::after {
    bottom: 0;
    left: -20px;
    width: 4px;
    height: 0;
}

header.sidebar .nav-link:hover::after,
header.sidebar .nav-link.active::after {
    height: 100%;
    width: 4px;
}


/* Home Styles */

.homecontent {
    background: url("../Imgs/home.jpg") center/cover no-repeat fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    height: 100vh;
}

.overlay {
    background: linear-gradient( to right, rgba(8, 39, 80, 0.8), rgba(8, 39, 80, 0.4));
    width: 100%;
    height: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-text {
    animation: fadeIn 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    color: var(--text-on-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text h1 span {
    color: var(--color-accent);
}

.hero-text p {
    color: var(--text-on-dark);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.home-btn {
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.home-btn:hover {
    background-color: var(--color-surface);
    transform: scale(1.08);
}

.stats-section {
    margin-top: -60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--color-surface);
    padding: 40px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--color-secondary);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--color-accent);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-on-inv);
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.why-us {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-header p {
    color: #fff;
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--text-on-inv);
    margin: 0 auto 40px;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-box:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--text-on-inv);
    font-weight: bold;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* TimeTable Styles */

.BD::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../Imgs/40.jpg") no-repeat center center / cover;
    filter: blur(7px);
}

.cap {
    font-family: "Nunito Sans", sans-serif;
    font-size: 3.3rem;
    color: var(--color-primary);
    margin: 1rem;
    text-align: center;
    font-weight: 800;
}

.TP {
    font-family: "Nunito Sans", sans-serif;
    text-align: center;
    width: 95%;
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: none;
}

.TP th {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    padding: 1.2rem;
}

.TP td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.TP #extra-rows tr:nth-child(even),
.TP tbody tr:nth-child(odd) {
    background-color: var(--color-surface);
    color: var(--text-main);
}

.TP #extra-rows tr:nth-child(odd),
.TP tbody tr:nth-child(even) {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
}

.TP tbody tr {
    transition: var(--transition);
    cursor: context-menu;
}

.TP tbody tr:hover,
.TP #extra-rows tr:hover {
    background-color: var(--color-secondary);
    color: var(--text-on-dark);
    transform: scale(1.02);
}

.MB {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    width: 100%;
}

.BT {
    font-family: "Nunito Sans", sans-serif;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563eb 100%);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.BT:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-load {
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Nunito Sans", sans-serif;
}

.btn-load:hover {
    background-color: transparent;
    color: var(--color-primary);
}


/* Boarding Styles */

.booking-container {
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../Imgs/16.jpg") center / cover no-repeat;
}

.booking-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.booking-header h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.booking-header p {
    color: var(--text-on-dark);
    font-size: 1.1rem;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.ticket-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 50px 30px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-secondary);
}

.ticket-card.featured::before {
    content: "MOST PURCHASED";
    position: absolute;
    top: 30px;
    left: -40px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(-45deg);
}

.ticket-card.firstone {
    animation: faderight 1s ease;
}

.ticket-card.secondone {
    animation: fadeup 1s ease;
}

.ticket-card.thirdone {
    animation: fadeleft 1s ease;
}

.ticket-type {
    font-size: 1.4rem;
    font-weight: bolder;
    letter-spacing: 1.5px;
    color: var(--color-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ticket-price {
    margin-bottom: 30px;
    color: var(--text-main);
}

.ticket-price .currency {
    font-size: 2.5rem;
}

.ticket-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.ticket-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.ticket-features i {
    width: 15px;
    font-size: 1rem;
}

.ticket-features .fa-check {
    color: var(--status-success);
}

.ticket-features .fa-times {
    color: var(--status-danger);
}

.ticket-type.economy {
    color: #8e8e8e;
}

.ticket-type.business {
    color: var(--color-secondary);
}

.ticket-type.first {
    color: var(--color-accent);
}

.btn-buy {
    background-color: var(--color-secondary);
    color: var(--text-on-dark);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-buy:hover {
    background-color: var(--color-accent);
}

.ticket-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.ticket-grid.list-view .ticket-card {
    flex-direction: row;
    padding: 0;
    min-height: 140px;
    text-align: left;
    align-items: center;
}

.ticket-grid.list-view .ticket-type {
    flex: 0 0 220px;
    margin: 0;
    padding-left: 40px;
    display: flex;
    align-items: center;
    height: 100%;
    border-right: 1px dashed rgba(255, 255, 255, 0.2);
}

.ticket-grid.list-view .ticket-price {
    flex: 0 0 200px;
    margin: 0;
    padding: 0 30px;
    display: flex;
    gap: 5px;
}

.ticket-grid.list-view .ticket-price .amount {
    font-size: 2.8rem;
}

.ticket-grid.list-view .ticket-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin: 0;
    padding: 0 30px;
    border-top: none;
}

.ticket-grid.list-view .ticket-features li {
    margin-bottom: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-grid.list-view .btn-buy {
    margin-right: 40px;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.ticket-grid.list-view .ticket-card.featured::before {
    top: 25px;
    left: -45px;
    padding: 5px 35px;
}


/* Map Styles */

.mapcontainer {
    background: linear-gradient( 135deg, var(--color-bg-main) 0%, var(--color-secondary) 100%);
    height: 130vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-title {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 37px;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
}

.map-content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

.map-container {
    flex: 1.8;
    min-width: 350px;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.locations-cards-container {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 700px;
    overflow-y: auto;
    padding-right: 10px;
}

.airport-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    min-height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeleft 0.5s ease forwards;
}

.airport-card:nth-child(1) {
    animation-delay: 0.1s;
}

.airport-card:nth-child(2) {
    animation-delay: 0.2s;
}

.airport-card:nth-child(3) {
    animation-delay: 0.3s;
}

.airport-card:nth-child(4) {
    animation-delay: 0.4s;
}

.airport-card:nth-child(5) {
    animation-delay: 0.5s;
}

.airport-card:nth-child(6) {
    animation-delay: 0.6s;
}

.card-img {
    width: 40%;
    height: auto;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.airport-card:hover {
    transform: scale(1.02);
    min-height: 155px;
}

.airport-card:hover .card-img {
    filter: brightness(1.05);
}

.card-info {
    width: 60%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-info h3 {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-on-inv);
    margin: 0;
    transition: margin 0.3s ease;
}

.card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.airport-card:hover .card-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.card-info i {
    width: 20px;
    margin-right: 8px;
    color: var(--color-accent);
    text-align: center;
}

.card-info span {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
    color: var(--text-on-inv);
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
}


/* Overview Styles */

.overview {
    padding: 70px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 15, 25, 0.8), rgba(10, 15, 25, 0.7)), url("../Imgs/60.jpg") center / cover no-repeat fixed;
    color: white;
}

.overview .container h1 {
    text-align: center;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
}

.overview-subtitle {
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.5rem;
    margin: 60px 0 30px;
    color: var(--color-secondary);
}

.top-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    /* align-items: stretch; By default */
}

.top-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: var(--shadow-soft);
}

.top-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--color-secondary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.top-img {
    height: 200px;
}

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

.top-info {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.7s ease-in-out;
}

.top-card:hover .top-info {
    max-height: 300px;
    padding: 25px;
    opacity: 1;
}

.top-info h3,
.top-info p {
    color: var(--text-on-inv);
    margin-bottom: 10px;
}

.specs {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-weight: bold;
}

.specs i {
    color: var(--color-accent);
    margin-right: 5px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.timeline-content p,
.timeline-content h3 {
    color: var(--text-on-inv);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border: 4px solid var(--color-surface);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
}

.timeline-date {
    width: 45%;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    color: var(--color-secondary);
    text-align: center;
    align-self: center;
}

.gallery-grid {
    display: flex;
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Support & Feedback Styles */

.support {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url("../Imgs/61.jpg") center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.support-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.feedback-form,
.faq-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 320px;
}

.feedback-title,
.faq-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--text-on-dark);
    margin-bottom: 10px;
}

.faq-title {
    color: var(--color-accent);
}

.feedback-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0 0 8px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label i {
    margin-right: 5px;
}

.feedback-input,
.feedback-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    color: var(--text-on-dark);
    font-family: inherit;
    transition: all var(--transition);
    outline: none;
    border: 1px solid transparent;
}

.feedback-input:focus,
.feedback-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
}

.send-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all var(--transition);
}

.send-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.send-btn:active {
    transform: translateY(-1px);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-on-dark);
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
    font-size: 14px;
    padding: 0 5px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

.feedback-form {
    animation: slideInLeft 0.8s ease-out;
}

.faq-card {
    animation: slideInRight 0.8s ease-out;
}


/* Profile Styles */

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url("../Imgs/62.jpg") center / cover no-repeat;
}

.profilemain {
    animation: fadeup 1s ease-in-out;
    margin: 50px auto;
    width: 90%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    border-radius: 50px;
}

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

.profileheader .logout-btn {
    border-radius: 12px;
    padding: 10px 25px;
    background-color: var(--color-accent);
    color: var(--text-on-dark);
    border: none;
    transition: all 0.3s ease;
}

.profileheader .logout-btn:hover {
    background: var(--color-border);
    transform: scale(1.06);
}

.profileheader .identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profileheader .identity .identitle p {
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.profileheader .identity .idenimg .proimg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border);
}

.profilecards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px;
    justify-items: center;
    align-items: center;
}

.profilecards .profcard {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profcard:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.25);
}

.profcard p:first-of-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

.profcard p:last-of-type {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.upcoming-booking h3,
.documents-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-on-dark);
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.booking-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.route {
    font-size: 1.4rem;
    margin: 0;
}

.route i {
    font-size: 1rem;
    margin: 0 10px;
    color: var(--color-border);
}

.details {
    color: var(--text-muted);
}

.btn-checkin {
    background: white;
    color: var(--color-primary);
    font-weight: bold;
    border-radius: 10px;
    padding: 8px 20px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn-checkin:hover {
    background: var(--color-border);
    transform: scale(1.02);
    color: var(--text-main);
}

.documents-section {
    margin-top: 30px;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-icon {
    color: var(--status-success);
    font-size: 1.3rem;
}

.signin-container {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px;
    background: url(../Imgs/34.jpg) center / cover no-repeat;
    min-height: 100vh;
}

.signin-card {
    animation: fadeup 1s ease;
    margin-left: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    color: var(--text-on-dark);
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.feedback-form:hover,
.signin-card:hover {
    backdrop-filter: blur(50px);
}

.signin-header h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.signin-header p {
    font-size: 0.9rem;
    color: var(--text-on-dark);
    margin-bottom: 30px;
}

.input-group-custom {
    text-align: left;
    margin-bottom: 20px;
}

.input-group-custom label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-on-dark);
    opacity: 0.9;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--text-on-dark);
    outline: none;
    transition: var(--transition);
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-pass {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.btn-signin {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    background-color: var(--color-secondary);
    color: var(--text-on-dark);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-signin:hover {
    background-color: #3694bc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.signin-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.signin-footer a {
    color: var(--text-on-dark);
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
}

.signin-footer a:hover {
    color: var(--color-accent);
}


/* My Ticket Styles */

.my-tickets {
    background: linear-gradient( 135deg, var(--color-bg-main) 0%, var(--color-secondary) 70%, var(--color-accent) 150%);
}

#next {
    padding-bottom: 50px;
}

#next h2 {
    color: var(--text-on-inv);
    text-align: center;
    padding: 10px 0;
}

#next .table-contianer {
    animation: fadedown 0.5s forwards;
}

#next .table-contianer .table {
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    max-width: 1000px;
    background-color: rgba(255, 255, 255, 0.8);
    height: 250px;
    overflow: hidden;
}

#next .table th,
td {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
}

#last {
    padding: 80px 0;
}

#last h2 {
    text-align: center;
    margin-bottom: 10px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
}

#last .row .item {
    background-color: #c5d7f2;
    padding: 20px 5px;
    margin: 10px 0;
    box-shadow: var(--shadow-soft);
    border-radius: 10px;
    transition-duration: 0.5s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#last .row .item:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translatey(-10px);
    transform: scale(1.08);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.ticketcards {
    animation: fadedown 1s forwards;
}

.ticketcards:nth-child(1) {
    animation-delay: 0.1s;
}

.ticketcards:nth-child(2) {
    animation-delay: 0.2s;
}

.ticketcards:nth-child(3) {
    animation-delay: 0.3s;
}

.ticketcards:nth-child(4) {
    animation-delay: 0.4s;
}

.ticketcards:nth-child(5) {
    animation-delay: 0.5s;
}

#last h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-on-inv);
}

#last .row .item h3,
#last .row .item h5 {
    text-align: center;
    color: #183153;
}

#last .row .item p {
    padding-left: 80px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 18px;
    border-bottom: 1.6px dashed var(--color-border);
    color: #183153;
}

#last .row .item p span {
    color: #486893;
}

#last .row .item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 1px;
}

#last .row .item h5 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

#last .row .item p span {
    color: var(--color-secondary);
    font-weight: 600;
}

#last .row .item i {
    color: var(--color-primary);
    margin-left: 10px;
    font-size: 1.1rem;
    transition: transform var(--transition);
}

#last .row .item:hover i {
    transform: scale(1.2);
}


/* Booking Styles  */

.Booking {
    background-image: url("../Imgs/34.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: var(--color-bg-main);
}

.Book {
    background-color: rgba(44, 125, 160, 0.9);
    width: 100%;
    max-width: 650px;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    color: var(--text-on-dark);
    backdrop-filter: blur(10px);
    transition: transform var(--transition);
}

.Book h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    color: var(--text-on-dark);
}

.block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.Book label {
    font-size: 12px;
    font-weight: bold;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Book input,
.Book select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-on-dark);
    font-size: 15px;
    transition: all var(--transition);
    box-sizing: border-box;
}

.Book input:focus,
.Book select:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.25);
}

.full-width {
    grid-column: span 2;
}

#visadetails {
    display: grid;
}

.radio {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    border: 1px solid var(--color-border);
}

.radio h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-accent);
}

#visadetails {
    display: block;
}

.btn-confirm {
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    border: none;
    border-radius: var(--radius-md);
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    text-align: center;
}

.btn-confirm:hover {
    background-color: var(--color-secondary);
    /* Lighter Blue */
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

select option {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
}


/* Footer Styles */

.site-footer {
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.section-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 14px;
}

.nav-links li a:hover {
    color: var(--color-secondary);
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details li i {
    width: 20px;
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    transition: all var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 30px;
    text-align: center;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 13px;
}

@keyframes navEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-200px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadedown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}