/* General Reset & Font */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navbar */
header {
    background: #00398C;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.logo {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}
.nav-links li a:hover,
.nav-links li .social-icon:hover {
    color: #ffd700;
}
.social-icon {
    font-size: 1.2rem;
    margin-left: .5rem;
    transition: color 0.2s;
}
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #00398C 55%, #fff 100%);
    color: #fff;
    padding: 4rem 0 5rem 0;
    text-align: left;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #fff;
    color: #00398C;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,57,140,0.13);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}
.cta-btn:hover {
    background: #ffd700;
    color: #00398C;
    transform: translateY(-2px) scale(1.05);
}

/* Sections General */
section {
    padding: 4rem 0;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.2rem;
}
h2 {
    color: #00398C;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,57,140,0.04);
}

/* About Us */
.about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    text-align: center;
}

/* Forms */
form {
    background: #f5f8fa;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,57,140,0.07);
    padding: 2rem;
    max-width: 480px;
    margin: 1.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
label {
    color: #00398C;
    font-weight: 600;
    font-size: 1rem;
}
input[type="text"], input[type="date"], select {
    padding: 0.7rem;
    border: 1px solid #c5d2e7;
    border-radius: 7px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s;
}
input:focus, select:focus {
    border-color: #00398C;
    outline: none;
}
.form-btn {
    background: #00398C;
    color: #fff;
    padding: 0.8rem 0;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,57,140,0.09);
}
.form-btn:hover {
    background: #0056d6;
    transform: translateY(-2px) scale(1.03);
}
.form-message {
    margin-top: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #d9534f;
    min-height: 24px;
}

/* Reviews Carousel/Grid */
.reviews-carousel {
    position: relative;
    margin: 2rem auto 0 auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn {
    background: transparent;
    border: none;
    color: #00398C;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 0 0.7rem;
    z-index: 2;
}
.carousel-btn:hover {
    color: #ffd700;
    transform: scale(1.1);
}
.carousel-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    min-height: 180px;
    flex: 1;
    justify-content: center;
}
.review-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,57,140,0.07);
    padding: 1.3rem 1.1rem;
    margin: 0 0.7rem;
    min-width: 260px;
    max-width: 350px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.review-card:hover {
    box-shadow: 0 8px 24px rgba(0,57,140,0.19);
    transform: translateY(-4px) scale(1.04);
}
.review-user {
    font-weight: 700;
    color: #00398C;
    margin-bottom: .4rem;
}
.review-rating {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: .7rem;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.stat-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,57,140,0.08);
    text-align: center;
    padding: 2rem 2.5rem;
    min-width: 160px;
    margin: 1rem 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.stat-box:hover {
    box-shadow: 0 8px 32px rgba(0,57,140,0.19);
    transform: scale(1.04) translateY(-3px);
}
.stat-counter {
    font-size: 2.4rem;
    font-weight: 700;
    color: #00398C;
}
.stat-label {
    color: #222;
    font-size: 1.1rem;
    margin-top: .5rem;
}

/* Footer */
footer {
    background: #00398C;
    color: #fff;
    padding: 2rem 0 1rem 0;
}
.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 0 1.2rem;
}
.footer-social a {
    color: #fff;
    font-size: 1.7rem;
    margin-right: 1.1rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #ffd700;
}
.footer-contact {
    font-size: 1rem;
    text-align: right;
}
.footer-contact p {
    margin: 0.2rem 0;
}


/* Responsive Styles */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .navbar {
        padding: 1rem 1rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        background: #00398C;
        position: absolute;
        left: 0;
        top: 60px;
        box-shadow: 0 8px 36px rgba(0,57,140,0.14);
        z-index: 100;
    }
    .nav-links li {
        margin: 1rem 0;
    }
    .menu-toggle {
        display: block;
        align-self: flex-end;
    }
    .nav-links.active {
        display: flex;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-contact {
        text-align: left;
    }
    .hero-content {
        padding: 1.1rem;
    }
}
@media (max-width: 600px) {
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    .stat-box {
        padding: 1.3rem 1rem;
        min-width: 120px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .container, .footer-container {
        padding: 0 0.6rem;
    }
}

/* ...keep previous styles... */

/* Add to all transitions for smoothness */
a, button, .form-btn, .review-card, .stat-box, input, select {
    transition: 
        color 0.22s cubic-bezier(0.4,0,0.2,1), 
        background 0.22s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.22s cubic-bezier(0.4,0,0.2,1),
        transform 0.22s cubic-bezier(0.4,0,0.2,1),
        border-color 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* Section fade-in animation */
.section-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel smooth sliding */
.carousel-track {
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Form message fade */
.form-message {
    opacity: 0;
    transition: opacity 0.42s cubic-bezier(0.4,0,0.2,1);
}
.form-message.visible {
    opacity: 1;
}

/* Button hover effect refined */
.form-btn, .cta-btn {
    box-shadow: 0 4px 24px rgba(0,57,140,0.08);
}
.form-btn:hover, .cta-btn:hover {
    transform: translateY(-2px) scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(0,57,140,0.13);
}

/* Softer card and stat box */
.review-card, .stat-box, form {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,57,140,0.06);
}

/* Hero background softer gradient */
.hero {
    background: linear-gradient(105deg, #00398C 52%, #fff 100%);
}

/* Add this for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add for airline admin table styling */
.airlines-admin {
    margin-top: 2rem;
}
.airlines-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,57,140,0.08);
    overflow: hidden;
}
.airlines-admin-table th, .airlines-admin-table td {
    padding: 0.7rem 1rem;
    text-align: left;
    border-bottom: 1px solid #c5d2e7;
}
.airlines-admin-table th {
    background: #00398C;
    color: #fff;
    font-weight: 600;
}
.airlines-admin-table tr:last-child td {
    border-bottom: none;
}
.approved {
    color: #28a745;
    font-weight: bold;
}
.not-approved {
    color: #d9534f;
    font-weight: bold;
}
.approve-btn, .reject-btn {
    padding: 0.4rem 0.9rem;
    border: none;
    border-radius: 6px;
    margin-right: 0.5rem;
    font-size: 0.96rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.approve-btn {
    background: #28a745;
    color: #fff;
}
.approve-btn:disabled {
    background: #a9dfbf;
    color: #404040;
    cursor: not-allowed;
}
.reject-btn {
    background: #d9534f;
    color: #fff;
}
.reject-btn:disabled {
    background: #f5b7b1;
    color: #404040;
    cursor: not-allowed;
}
/* Responsive admin table */
@media (max-width: 700px) {
    .airlines-admin-table th, .airlines-admin-table td {
        font-size: 0.97rem;
        padding: 0.5rem 0.3rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* space between image and text */
}

.logo-img {
    height: 38px;    /* adjust as needed */
    width: auto;
    display: block;
}

.logo-text {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    /* Add any extra styling you want */
}

.review-card, .stat-box, .glass-card {
  transition: box-shadow 0.25s cubic-bezier(.4,0,.2,1), transform 0.2s cubic-bezier(.4,0,.2,1);
}
.review-card:hover, .stat-box:hover, .glass-card:hover {
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.19);
  transform: translateY(-4px) scale(1.04);
}

.discord-section {
  padding: 4rem 0;
  background: linear-gradient(100deg, hsl(0, 0%, 100%) 70%, #ffffff 100%);
  color: #fff;
  text-align: center;
}
.discord-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.discord-description {
  font-size: 1.14rem;
  margin-bottom: 2.2rem;
  color: #122f6c;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.discord-btn {
  display: inline-block;
  background: #5865F2;
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(88,101,242,0.13);
  transition: background 0.22s, transform 0.18s;
}
.discord-btn i {
  font-size: 1.5rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.discord-btn:hover {
  background: #404eed;
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}