* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004499;
    --accent-color: #ff6600;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.main-nav {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.live-chat-link {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.phone-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.phone-call i {
    color: var(--primary-color);
}

.phone-call a {
    text-decoration: none;
    color: var(--text-dark);
}

.phone-call a strong {
    color: var(--primary-color);
}

.language-selector select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
    position: relative;
}

.user-menu:hover {
    background: var(--bg-light);
}

.user-menu i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: none;
    z-index: 1001;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-welcome {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.3s;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.user-dropdown hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.user-dropdown .logout {
    color: #dc3545;
}

.menu-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1002;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.mobile-nav-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.75rem 0;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--primary-color);
}

.mobile-phone {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-phone i {
    color: var(--primary-color);
}

.mobile-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Search Section */
.search-section {
    background: var(--bg-white);
    padding: 2rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 100;
}

.search-form-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trip-type-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.trip-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.trip-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.flight-search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-white);
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.swap-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.swap-btn:hover {
    background: var(--secondary-color);
    transform: rotate(180deg);
}

.date-group {
    position: relative;
}

.date-group input[type="date"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.date-display {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.date-display:hover {
    border-color: var(--primary-color);
}

.passengers-group {
    position: relative;
}

.passengers-display {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.passengers-display:hover {
    border-color: var(--primary-color);
}

.passengers-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
}

.passengers-panel.active {
    display: block;
}

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.passenger-type:last-of-type {
    border-bottom: none;
}

.passenger-type strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.passenger-type small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-minus,
.btn-plus {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-minus:hover,
.btn-plus:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-minus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.passenger-controls .count {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.btn-done {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-done:hover {
    background: var(--secondary-color);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.search-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--bg-light);
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Deals Section */
.deals-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.deals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deals-column {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.deals-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.deal-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.airline-code {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
}

.deal-info {
    flex: 1;
}

.deal-route {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.deal-dates {
    font-size: 0.875rem;
    color: var(--text-light);
}

.deal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

.deal-price small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.help-section {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.help-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.help-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.help-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem 0;
}

.help-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
}

/* Flight Types Section */
.flight-types-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.flight-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.flight-type-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.flight-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.flight-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 2rem;
}

.flight-type-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.flight-type-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-flight-type {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-flight-type:hover {
    background: var(--secondary-color);
}

/* Events Section */
.events-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-date {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-event {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-event:hover {
    background: var(--secondary-color);
}

/* App Section */
.app-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.app-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.app-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.app-features {
    list-style: none;
    margin: 1.5rem 0;
}

.app-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.app-features i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.app-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--bg-white);
    transition: all 0.3s;
}

.app-btn:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn small {
    display: block;
    font-size: 0.75rem;
}

.app-btn strong {
    display: block;
    font-size: 1rem;
}

.app-image {
    text-align: center;
}

.app-qr {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-light);
}

.app-qr p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Travel Guide Section */
.travel-guide-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-content > p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.guide-features {
    display: grid;
    gap: 2rem;
}

.guide-feature {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.guide-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guide-feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.social-links li {
    margin-bottom: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--bg-white);
}

.app-stores {
    display: flex;
    gap: 1rem;
}

.app-store-link,
.play-store-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    transition: background 0.3s;
}

.app-store-link:hover,
.play-store-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--primary-color);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
    transition: background 0.3s;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #aaaaaa;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-reject,
.btn-accept {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-reject:hover {
    background: var(--border-color);
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: var(--secondary-color);
}

/* Page Content */
.page-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.nav-links .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Styles */
.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-post-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--accent-color);
}

.blog-post-content {
    line-height: 1.8;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-post-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-post-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.blog-post-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
    
    .menu-icon {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .form-row-main {
        grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .form-row-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .swap-btn {
        grid-column: 1 / -1;
        justify-self: center;
        transform: rotate(90deg);
    }
    
    .app-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .form-row-main {
        grid-template-columns: 1fr;
    }
    
    .deals-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .search-form-wrapper {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .passengers-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }
}
