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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    color: #004080;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Call Now Button */
.call-now {
    margin-left: auto;
    margin-right: 20px;
}

.call-now a {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.call-now a:hover {
    background-color: #003d7a;
}

.call-now i {
    margin-right: 5px;
}

header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #0066cc;
    font-size: 24px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0066cc;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

/* Flight Search Form */
.search-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.search-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.search-group {
    flex: 1;
    position: relative;
}

.search-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.search-group input,
.search-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.search-group input:focus,
.search-group select:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.search-btn {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    flex: 1;
}

.search-btn:hover {
    background-color: #0b5ed7;
}

.quote-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
    flex: 1;
    display: inline-block;
}

.quote-btn:hover {
    background-color: #218838;
}

.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.airport-suggestions.active {
    display: block;
}

.airport-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.airport-suggestion-item:hover {
    background-color: #f8f9fa;
}

.airport-suggestion-item .code {
    font-weight: bold;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .search-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-group {
        width: 100%;
    }
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.content-section:nth-child(even) {
    background-color: #f5f5f5;
}

.content-section h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 28px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Reviews Section */
.review-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

/* Quote Modal */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Search Results Page */
.search-results-hero {
    background-color: #0066cc;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.search-results-hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.search-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.summary-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}

.summary-label {
    font-weight: bold;
    margin-right: 5px;
}

.booking-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.booking-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.call-to-action {
    margin-top: 20px;
}

.cta-button {
    background-color: #28a745;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #218838;
}

.form-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.form-section h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}

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

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0b5ed7;
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-message i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.success-message p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

.back-link {
    margin-top: 30px;
}

.back-link a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .summary-item {
        width: 100%;
    }
}

.quote-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #333;
}

.quote-modal h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.quote-modal .form-group {
    margin-bottom: 20px;
}

.quote-modal label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quote-modal input,
.quote-modal textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.quote-modal input:focus,
.quote-modal textarea:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.trip-details {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #0d6efd;
}

.submit-quote-btn,
.close-btn {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-quote-btn:hover,
.close-btn:hover {
    background-color: #0b5ed7;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0066cc;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Privacy Policy Styles */
.page-hero {
    background-color: #0066cc;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.8;
}

.privacy-content {
    padding: 50px 0;
    background-color: #fff;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-section h4 {
    margin: 20px 0 10px;
    font-size: 1.3rem;
    color: #333;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.privacy-section address {
    font-style: normal;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .call-now {
        order: 2;
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
        margin-left: 15px;
    }
    
    nav {
        order: 4;
        width: 100%;
        display: none;
        margin-top: 10px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 0;
        padding: 10px 0;
        text-align: center;
        border-top: 1px solid #eee;
    }
    
    .page-hero h2 {
        font-size: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.5rem;
    }
    
    .privacy-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
}