/* Global Styles */
:root {
    --primary-color: #3a86ff;
    --primary-dark: #2a65cc;
    --secondary-color: #ff9e00;
    --secondary-dark: #e58e00;
    --text-color: #333333;
    --text-light: #666666;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #888888;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

button, .button-primary, .button-secondary {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 12px 20px;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.button-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.button-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button-secondary:hover {
    background-color: var(--light-gray);
}

.button-text {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 5px 0;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.button-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.button-text:hover::after {
    width: 100%;
}

.required {
    color: var(--error-color);
}

section {
    padding: 60px 0;
}

.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.search-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    flex: 1 0 200px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-form button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    width: 100%;
}

.search-form button:hover {
    background-color: var(--secondary-dark);
}

/* Advantages Section */
.advantages {
    background-color: var(--light-gray);
    padding: 70px 0;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta {
    text-align: center;
    margin-top: 50px;
}

/* About Flights Section */
.about-flights {
    padding: 70px 0;
}

.about-flights h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-flights p {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 20px;
}

.certification-info {
    margin-top: 40px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
}

.certification-info h3 {
    margin-bottom: 20px;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge svg {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Daily Tip Section */
.daily-tip {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
}

.daily-tip h2 {
    text-align: center;
    margin-bottom: 30px;
}

.tip-content {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tip-icon {
    margin-right: 30px;
    flex-shrink: 0;
}

.tip-text h3 {
    margin-bottom: 15px;
}

/* Calculator Section */
.calculator {
    background-color: var(--light-gray);
    padding: 70px 0;
}

.calculator h2 {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    flex: 1 0 400px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.calculator-result {
    flex: 1 0 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.result-breakdown {
    margin-top: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.result-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.calculator-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
}

#calculate-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px;
    width: 100%;
    margin-top: 20px;
}

#calculate-btn:hover {
    background-color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: 70px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info h3 a {
    color: var(--text-color);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.flight-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: normal;
    margin-left: 5px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}

.add-to-cart:hover {
    background-color: var(--primary-dark);
}

.view-details {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 12px;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    flex: 1;
}

.view-details:hover {
    background-color: var(--light-gray);
}

/* Product Detail Page */
.product-detail {
    padding: 70px 0;
}

.product-detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.product-detail-image {
    flex: 1 0 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-detail-info {
    flex: 1 0 400px;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-meta .label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.product-price {
    margin-bottom: 20px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.save-price {
    color: var(--success-color);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.product-availability {
    margin-bottom: 30px;
}

.in-stock {
    display: inline-block;
    background-color: var(--success-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.seats-left {
    display: block;
    color: var(--warning-color);
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
}

.add-to-cart-large, .buy-now {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.add-to-cart-large {
    background-color: var(--primary-color);
    color: var(--white);
}

.add-to-cart-large:hover {
    background-color: var(--primary-dark);
}

.buy-now {
    background-color: var(--secondary-color);
    color: var(--white);
}

.buy-now:hover {
    background-color: var(--secondary-dark);
}

.product-tabs {
    margin-bottom: 50px;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-pane {
    display: none;
    padding: 20px 0;
}

.tab-pane.active {
    display: block;
}

.flight-schedule {
    margin-bottom: 30px;
}

.flight-leg {
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.flight-points {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.departure, .arrival {
    flex: 1;
}

.airport-code {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.airport-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.datetime {
    font-size: 0.9rem;
    color: var(--text-light);
}

.flight-line {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.flight-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--medium-gray);
    z-index: 1;
}

.airline-logo, .flight-duration {
    background-color: var(--white);
    padding: 5px 10px;
    position: relative;
    z-index: 2;
}

.airline-logo {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.flight-duration {
    font-size: 0.9rem;
    color: var(--text-light);
}

.amenities-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.amenities-list li {
    margin-bottom: 5px;
}

.baggage-info, .policy-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.baggage-item, .policy-item {
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.policy-note {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--warning-color);
    font-size: 0.9rem;
}

.related-products h2 {
    margin-bottom: 30px;
}

/* Cart Page */
.cart-section {
    padding: 70px 0;
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    margin-bottom: 20px;
    color: var(--text-light);
}

.cart-items {
    margin-top: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid var(--medium-gray);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--medium-gray);
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
}

.cart-item-info h3 {
    margin-bottom: 5px;
}

.cart-item-info .flight-details {
    margin-bottom: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-quantity-controls button {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.cart-quantity-controls input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
}

.cart-item-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-summary {
    margin-top: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
}

.cart-totals {
    margin-bottom: 30px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-total-row.grand-total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.cart-actions a {
    flex: 1;
    text-align: center;
}

.cart-notes {
    margin-top: 50px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
}

.cart-notes h3 {
    margin-bottom: 20px;
}

.cart-notes ul {
    list-style: disc;
    padding-left: 20px;
}

.cart-notes li {
    margin-bottom: 10px;
}

/* Checkout Page */
.checkout-section {
    padding: 70px 0;
}

.checkout-header {
    margin-bottom: 40px;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 2px;
    background-color: var(--medium-gray);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background-color: var(--medium-gray);
    color: var(--text-light);
    font-weight: 600;
}

.step.completed .step-number {
    background-color: var(--success-color);
    color: var(--white);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-label {
    font-weight: 600;
}

.checkout-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.checkout-form-container {
    flex: 2 0 600px;
}

.checkout-summary {
    flex: 1 0 300px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.summary-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
}

.summary-header h3 {
    margin-bottom: 0;
}

.summary-body {
    padding: 20px;
}

.checkout-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.checkout-item-image {
    width: 70px;
    height: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.checkout-item-details {
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-totals {
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-row.grand-total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.summary-security {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.security-icon {
    color: var(--success-color);
}

.summary-security p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.form-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
}

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

.form-row .form-group {
    flex: 1;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.checkout-actions a, .checkout-actions button {
    flex: 1;
    text-align: center;
}

/* Success Page */
.success-section {
    padding: 70px 0;
}

.success-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-details {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.success-next-steps {
    margin-bottom: 30px;
}

.success-next-steps h3 {
    margin-bottom: 20px;
}

.success-next-steps ul {
    list-style: disc;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.success-next-steps li {
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.related-offers {
    margin-top: 60px;
}

.related-offers h2 {
    text-align: center;
    margin-bottom: 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offer-card h3 {
    margin-bottom: 10px;
}

.offer-card p {
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    padding: 70px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
}

.contact-info {
    flex: 1 0 400px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.contact-form-container {
    flex: 1 0 500px;
}

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-success {
    text-align: center;
    padding: 50px 0;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.faq-section {
    margin-top: 70px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light-gray);
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    padding: 20px;
    display: none;
    border-top: 1px solid var(--medium-gray);
}

/* About Page */
.about-story {
    padding: 70px 0;
}

.about-story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.about-story-text {
    flex: 1 0 500px;
}

.about-story-highlights {
    flex: 1 0 400px;
}

.highlight-item {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.highlight-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-numbers {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.about-numbers h2 {
    margin-bottom: 50px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-section {
    padding: 70px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    margin-bottom: 5px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials {
    background-color: var(--light-gray);
    padding: 70px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -5px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.partners {
    padding: 70px 0;
}

.partners h2 {
    text-align: center;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.partner-item {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .button-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .button-primary:hover {
    background-color: var(--light-gray);
}

/* Footer */
footer {
    background-color: #2b2b2b;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 0 250px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2 0 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1 0 180px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

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

.footer-column a {
    color: var(--white);
    opacity: 0.8;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-column p {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.6;
}

.footer-bottom .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-bottom .social-links a:hover {
    background-color: var(--white);
    color: #2b2b2b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    flex: 1 0 400px;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

#accept-cookies {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

#customize-cookies {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

#customize-cookies:hover {
    background-color: var(--light-gray);
}

#reject-cookies {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

#reject-cookies:hover {
    background-color: var(--light-gray);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-header-item.quantity, .cart-header-item.actions, .cart-item-quantity, .cart-item-remove {
        display: none;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .advantage-grid, .product-grid, .offer-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-header-item.flight, .cart-item-details {
        margin-bottom: 10px;
    }
    
    .cart-header-item.price, .cart-header-item.total, .cart-item-price, .cart-item-total {
        padding: 5px 0;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .footer-content, .footer-links {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}
