/* ============================================
   AIRPORT VIP SERVICE - MAIN STYLESHEET
   ============================================ */

:root {
    --primary: #C9A14A;
    --primary-hover: #B68A2E;
    --dark-bg: #0B1320;
    --secondary-bg: #1A2434;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --text: #2D3748;
    --border: #E5E7EB;
    --success: #10B981;
    --danger: #EF4444;
    --radius-btn: 12px;
    --radius-card: 18px;
    --radius-input: 12px;
    --shadow: 0 15px 35px rgba(0,0,0,.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,.12);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(11, 19, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(11, 19, 32, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: var(--radius-btn);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,161,74,0.3);
}

.btn-outline-light {
    border-radius: var(--radius-btn);
    padding: 10px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-dark {
    background: var(--dark-bg);
    border: none;
    border-radius: var(--radius-btn);
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--secondary-bg);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 50%, #0f1a2a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,161,74,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,161,74,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201,161,74,0.1);
    border-radius: 30px;
    border: 1px solid rgba(201,161,74,0.2);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 5px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: var(--radius-card);
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 20px 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 1.5s;
}

.hero-floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.hero-floating-card .card-info h6 {
    font-size: 0.85rem;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hero-floating-card .card-info p {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   BOOKING FORM SECTION
   ============================================ */
.booking-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-control, .form-select {
    border-radius: var(--radius-input);
    border: 1px solid var(--border);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.15);
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.service-checkbox:hover {
    border-color: var(--primary);
    background: rgba(201,161,74,0.05);
}

.service-checkbox i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.service-checkbox span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201,161,74,0.1), rgba(201,161,74,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .read-more:hover {
    gap: 10px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-section .section-title,
.why-section .section-subtitle,
.why-section .section-desc {
    color: var(--white);
}

.why-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-card);
    padding: 35px 30px;
    transition: all 0.4s ease;
    height: 100%;
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   AIRPORTS SECTION
   ============================================ */
.airports-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.airport-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.airport-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.airport-image i {
    font-size: 3rem;
    color: var(--primary);
}

.airport-image .airport-code {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.airport-info {
    padding: 25px;
}

.airport-info h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.airport-info .location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.airport-info .location i {
    color: var(--primary);
}

.airport-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.airport-services span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-author-info h6 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: #888;
}

/* ============================================
   PARTNERS
   ============================================ */
.partners-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 15px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-weight: 700;
    color: #aaa;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.partner-logo:hover {
    box-shadow: var(--shadow);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-card) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.accordion-button {
    padding: 22px 25px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-bg);
    background: var(--white);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(201,161,74,0.05);
    color: var(--primary);
}

.accordion-button::after {
    background-size: 1.2rem;
    filter: invert(0.5);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(10deg);
}

.accordion-body {
    padding: 0 25px 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   LOGIN / REGISTER PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    padding: 40px 20px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-hover);
    padding: 50px 40px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
}

.auth-logo {
    text-align: center;
    margin-bottom: 35px;
}

.auth-logo i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.auth-logo h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.auth-logo p {
    color: #888;
    font-size: 0.9rem;
}

.auth-form .form-control {
    padding: 14px 18px;
}

.auth-form .input-group-text {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-input) 0 0 var(--radius-input);
    color: var(--primary);
    padding: 14px 16px;
}

.auth-form .input-group .form-control {
    border-radius: 0 var(--radius-input) var(--radius-input) 0;
}

.auth-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #888;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: var(--radius-input);
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(16,185,129,0.1);
    color: var(--success);
}

.alert-danger {
    background: rgba(239,68,68,0.1);
    color: var(--danger);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section {
    padding: 120px 0 100px;
    background: var(--light-gray);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.pricing-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.85rem;
}

.pricing-features li.not-included {
    color: #bbb;
}

.pricing-features li.not-included i {
    color: var(--danger);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 100px 0;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 4px solid var(--primary);
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--white);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.team-info {
    padding: 0 25px 30px;
}

.team-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.team-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 120px 0 100px;
    background: var(--light-gray);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    width: 55px;
    height: 55px;
    background: rgba(201,161,74,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-info-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-map {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 300px;
    background: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    margin-top: 30px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
    color: var(--white);
}

.services-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-page-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-detail-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--dark-bg), var(--secondary-bg));
    color: var(--white);
    text-align: center;
}

.service-detail-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail-header h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-detail-body ul {
    list-style: none;
    padding: 0;
}

.service-detail-body ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.service-detail-body ul li:last-child {
    border-bottom: none;
}

.service-detail-body ul li i {
    color: var(--success);
    font-size: 0.85rem;
}

/* ============================================
   AIRPORTS PAGE
   ============================================ */
.airports-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
    color: var(--white);
}

.airports-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.airports-hero p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.airports-page-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.airport-search {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
