/* --- Variables --- */
:root {
    --color-blue: #3498db;      /* Sky Blue */
    --color-blue-dark: #2980b9;
    --color-orange: #f39c12;    /* Sunny Orange */
    --color-white: #ffffff;
    --color-grey-light: #f7f9fa;
    --color-text: #333333;
    
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-grey-light);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Top Bar --- */
.top-bar { background-color: var(--color-blue-dark); color: #fff; padding: 8px 0; font-size: 0.85rem; }
.top-flex { display: flex; justify-content: space-between; }
.user-links a { color: #fff; margin-left: 15px; }

/* --- Header --- */
.travel-header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky; top: 0; z-index: 1000;
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--color-blue); display: flex; align-items: center; gap: 5px; }
.orange-text { color: var(--color-orange); }
.icon-plane { font-size: 1.5rem; transform: rotate(-45deg); display: inline-block; }

.travel-nav ul { display: flex; gap: 25px; align-items: center; }
.travel-nav a { font-weight: 600; color: var(--color-text); font-size: 0.95rem; }
.travel-nav a:hover, .travel-nav a.active { color: var(--color-blue); }

.btn-blue { background-color: var(--color-blue); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; }
.btn-blue:hover { background-color: var(--color-blue-dark); box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--color-text); border-radius: 2px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--color-orange);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--color-blue); }
.mobile-menu a { font-weight: 600; border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* --- Hero --- */
.hero-travel {
    position: relative; height: 550px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; padding: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; color: var(--color-white); text-shadow: 0 2px 10px rgba(0,0,0,0.5); margin-bottom: 15px; }
.hero-content p { color: var(--color-white); font-size: 1.3rem; margin-bottom: 40px; font-weight: 600; }

.booking-mask { background-color: var(--color-white); padding: 20px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.mask-row { display: flex; gap: 15px; align-items: flex-end; }
.mask-col { flex: 1; text-align: left; }
.mask-col label { display: block; font-size: 0.85rem; font-weight: 700; color: #777; margin-bottom: 5px; }
.mask-col input, .mask-col select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.btn-search { background-color: var(--color-orange); color: var(--color-white); border: none; padding: 12px 30px; font-weight: bold; border-radius: 4px; cursor: pointer; height: 48px; }
.btn-search:hover { background-color: #e67e22; }

/* --- Deals --- */
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--color-text); margin-bottom: 10px; }
.line-orange { width: 60px; height: 4px; background-color: var(--color-orange); margin: 0 auto; border-radius: 2px; }
.line-orange.left { margin: 0; }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.deal-card { background-color: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.deal-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.deal-img { position: relative; height: 200px; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 15px; right: 15px; background-color: var(--color-orange); color: var(--color-white); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-family: var(--font-head); }

.deal-info { padding: 25px; }
.deal-info h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; }
.deal-info p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }
.features { display: flex; gap: 10px; margin-bottom: 20px; font-size: 0.85rem; color: var(--color-blue); font-weight: 600; }
.btn-book { display: block; text-align: center; border: 2px solid var(--color-blue); color: var(--color-blue); padding: 10px; border-radius: 4px; font-weight: bold; transition: 0.3s; }
.btn-book:hover { background-color: var(--color-blue); color: var(--color-white); }

/* --- Benefits --- */
.benefits-section { background-color: var(--color-white); padding: 60px 0; margin-top: 50px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.benefits-grid { display: flex; justify-content: space-around; text-align: center; }
.benefit .icon { font-size: 3rem; margin-bottom: 15px; }
.benefit h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 5px; }
.benefit p { color: #777; font-size: 0.95rem; }

/* --- About Page --- */
.about-container { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; }
.about-text { flex: 1; }
.about-text h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--color-blue); margin-bottom: 15px; }
.about-img { flex: 1; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }

.stats-bar { display: flex; justify-content: space-around; background-color: var(--color-blue); color: var(--color-white); padding: 40px; border-radius: var(--radius); text-align: center; }
.stat strong { font-family: var(--font-head); font-size: 3rem; display: block; line-height: 1; }
.stat span { font-size: 1rem; opacity: 0.9; }

/* --- Reviews --- */
.reviews-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.review-box { background-color: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 5px solid var(--color-orange); }
.stars { color: #f1c40f; letter-spacing: 2px; margin-bottom: 10px; }
.review-box h3 { font-family: var(--font-head); margin-bottom: 10px; }
.reviewer { margin-top: 15px; display: flex; justify-content: space-between; font-size: 0.9rem; color: #777; border-top: 1px solid #eee; padding-top: 10px; }
.reviewer .name { font-weight: bold; color: var(--color-blue); }

/* --- Contact & Legal --- */
.contact-card, .legal-text { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-info { text-align: center; margin-bottom: 40px; }
.info-row { margin-top: 10px; font-size: 1.1rem; }

.booking-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.booking-form .col { flex: 1; }
.booking-form label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.btn-submit { width: 100%; background-color: var(--color-orange); color: var(--color-white); padding: 15px; border: none; font-weight: bold; border-radius: 4px; cursor: pointer; transition: 0.3s; font-size: 1rem; }
.btn-submit:hover { background-color: #e67e22; }

.legal-text h1 { font-family: var(--font-head); color: var(--color-blue); }
.legal-text h3 { margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.travel-footer { background-color: #2c3e50; color: #bdc3c7; padding: 50px 0; margin-top: auto; text-align: center; }
.f-logo { font-family: var(--font-head); font-size: 1.8rem; color: #fff; margin-bottom: 15px; }
.f-links a { color: #bdc3c7; margin: 0 10px; transition: 0.3s; }
.f-links a:hover { color: var(--color-orange); }
.copyright { margin-top: 20px; font-size: 0.8rem; }

@media (max-width: 992px) {
    .travel-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .mask-row { flex-direction: column; }
    .btn-search { width: 100%; }
    .about-container { flex-direction: column; }
    .benefits-grid { flex-direction: column; gap: 30px; }
    .booking-form .form-row { flex-direction: column; gap: 15px; }
}