/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1f2937;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Buttons */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-search {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 14px;
}

.btn-search:hover {
    background: #1d4ed8;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
}

.header-contacts {
    display: flex;
    gap: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #bfdbfe;
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    background: #2563eb;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1f2937;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&h=600&fit=crop');
    background-size: cover;
    background-position: center;
}

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

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    color: white;
}

.hero-text p {
    color: #bfdbfe;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Search Section */
.search-section {
    padding: 0 0 64px 0;
    margin-top: -64px;
    position: relative;
    z-index: 20;
}

.search-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 32px;
}

.trip-type-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e5e7eb;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.input-icon input[type="text"],
.input-icon input[type="date"],
.input-icon select {
    padding-left: 40px;
}

input[type="text"],
input[type="date"],
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    display: flex;
    align-items: flex-end;
}

/* Destinations Section */
.destinations-section {
    padding: 64px 0;
    background: #f9fafb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 8px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-all:hover {
    color: #1d4ed8;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

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

.destination-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 500;
}

.destination-content {
    padding: 24px;
}

.destination-content h3 {
    color: #1f2937;
    margin-bottom: 4px;
}

.destination-content p {
    color: #6b7280;
    margin-bottom: 16px;
}

.destination-content .btn {
    width: 100%;
}

/* Deals Section */
.deals-section {
    padding: 64px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    margin-bottom: 16px;
    font-weight: 500;
}

.section-badge i {
    font-size: 1.25rem;
}

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

.deal-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
    background: white;
}

.deal-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.deal-discount {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.deal-card h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.deal-airline {
    color: #6b7280;
    margin-bottom: 16px;
}

.deal-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.875rem;
}

.sale-price {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
}

.deal-expires {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ea580c;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.deal-card .btn {
    width: 100%;
}

/* Features Section */
.features-section {
    padding: 64px 0;
    background: #eff6ff;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 2rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 16px;
}

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

.social-link {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #60a5fa;
}

.footer-title {
    color: white;
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact i {
    color: #60a5fa;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact p {
    color: #9ca3af;
    margin: 0;
}

.footer-contact span {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .form-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-contacts {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .search-card {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 16px;
}

.page-hero p {
    color: #bfdbfe;
    font-size: 1.125rem;
}

/* Content Section */
.content-section {
    padding: 64px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

.content-main {
    min-width: 0;
}

.content-box {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    color: #1f2937;
    margin-bottom: 16px;
}

.content-box h3 {
    color: #374151;
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-box p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-box ul,
.content-box ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-box li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #4b5563;
}

.content-box a {
    color: #2563eb;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}

.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-box h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.quick-facts {
    list-style: none;
    margin: 0;
}

.quick-facts li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #4b5563;
}

.quick-facts i {
    color: #10b981;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon i {
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Steps List */
.steps-list {
    margin-top: 24px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
}

/* Data Table */
.table-responsive {
    overflow-x: auto;
    margin: 24px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table thead {
    background: #f9fafb;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.data-table th {
    font-weight: 600;
    color: #1f2937;
}

.data-table td {
    color: #4b5563;
}

.data-table tbody tr:hover {
    background: #f9fafb;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    text-align: center;
    border: 2px solid #2563eb;
}

.cta-box h2 {
    color: #1e40af;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.125rem;
}

/* Blog Styles */
.blog-section {
    padding: 64px 0;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    color: #1f2937;
    margin-bottom: 12px;
}

.blog-content p {
    color: #6b7280;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #9ca3af;
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Help Center Styles */
.help-search-section {
    padding: 48px 0;
    background: #f9fafb;
}

.help-search-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.help-search-box h2 {
    margin-bottom: 24px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.25rem;
}

.help-search-input {
    width: 100%;
    padding: 16px 20px 16px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.help-search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.help-categories-section {
    padding: 64px 0;
}

.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.help-category-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

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

.help-category-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.help-category-icon i {
    font-size: 2rem;
}

.help-category-card h3 {
    color: #1f2937;
    margin-bottom: 12px;
}

.help-category-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    gap: 12px;
}

/* FAQ Styles */
.faq-section {
    padding: 64px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.125rem;
}

.faq-question i {
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.8;
}

/* Contact Support Section */
.contact-support-section {
    padding: 64px 0;
    background: #eff6ff;
}

.contact-support-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-support-box h2 {
    margin-bottom: 12px;
}

.contact-support-box > p {
    margin-bottom: 48px;
}

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

.support-option {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-option i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 16px;
}

.support-option h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.support-option p {
    color: #2563eb;
    font-weight: 500;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.contact-info > p {
    margin-bottom: 32px;
}

.contact-methods {
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 1.25rem;
}

.contact-method-content h3 {
    color: #1f2937;
    margin-bottom: 4px;
    margin-top: 0;
}

.contact-method-content p {
    color: #4b5563;
    margin: 0;
}

.contact-method-content span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.social-connect h3 {
    margin-bottom: 16px;
}

.social-links-large {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link-large {
    width: 48px;
    height: 48px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.social-link-large:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
}

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

.contact-form label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.map-section {
    padding: 64px 0;
    background: #f9fafb;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    padding: 80px;
    text-align: center;
    border: 2px dashed #e5e7eb;
}

.map-placeholder i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 16px;
}

.map-placeholder p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .content-box {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-list {
    list-style: none;
    margin: 24px 0 0 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #4b5563;
}

.contact-list i {
    color: #2563eb;
    width: 20px;
}

.notice-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 16px;
    margin: 24px 0;
    display: flex;
    gap: 12px;
}

.notice-box.warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.notice-box i {
    color: #2563eb;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-box.warning i {
    color: #f59e0b;
}

.notice-box p {
    margin: 0;
    color: #1f2937;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }

    .help-categories-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Packages Page Styles */
.filter-section {
    padding: 48px 0;
    background: #f9fafb;
}

.filter-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-card h2 {
    margin-bottom: 24px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.filter-options {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-checkbox label {
    cursor: pointer;
    color: #4b5563;
    font-weight: 500;
}

.packages-section {
    padding: 64px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    z-index: 10;
    font-size: 0.875rem;
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.package-savings {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.875rem;
}

.package-content {
    padding: 24px;
}

.package-header {
    margin-bottom: 16px;
}

.package-header h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-rating i {
    color: #f59e0b;
}

.package-rating span {
    color: #1f2937;
    font-weight: 600;
}

.package-rating .reviews {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.875rem;
}

.package-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.package-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6b7280;
}

.package-detail-item i {
    color: #2563eb;
}

.package-includes h4 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 1rem;
}

.package-includes ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.package-includes i {
    color: #10b981;
    font-size: 0.75rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-note {
    color: #9ca3af;
    font-size: 0.75rem;
}

.why-packages-section {
    padding: 64px 0;
    background: #eff6ff;
}

.popular-packages-section {
    padding: 64px 0;
}

.destinations-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.destination-simple-card {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.destination-simple-card:hover {
    transform: scale(1.05);
}

.destination-simple-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-simple-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.destination-simple-overlay h3 {
    color: white;
    margin: 0 0 4px 0;
}

.destination-simple-overlay p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.875rem;
}

/* Deals Page Styles */
.hot-deals-banner {
    padding: 32px 0;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-text h2 {
    color: white;
    margin-bottom: 8px;
}

.banner-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.countdown-timer {
    display: flex;
    gap: 16px;
}

.timer-box {
    background: rgba(255,255,255,0.2);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.timer-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timer-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.deal-categories-section {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.deal-categories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    color: #6b7280;
    font-weight: 500;
}

.category-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.category-tab.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.deals-list-section {
    padding: 64px 0;
}

.deals-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.deal-list-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: all 0.3s;
}

.deal-list-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.deal-main-info {
    flex: 1;
    min-width: 0;
}

.deal-airline-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.airline-logo {
    height: 40px;
    border-radius: 4px;
}

.airline-name {
    color: #6b7280;
    font-weight: 500;
}

.deal-route-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.route-point h3 {
    color: #1f2937;
    margin: 0 0 4px 0;
    font-size: 1.5rem;
}

.route-point p {
    color: #6b7280;
    margin: 0 0 8px 0;
    font-size: 0.875rem;
}

.departure-time,
.return-time {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

.route-line i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.flight-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.flight-details span {
    color: #6b7280;
    font-size: 0.875rem;
    white-space: nowrap;
}

.deal-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.deal-discount-badge {
    background: #fee2e2;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.deal-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.seats-left {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.deal-alert-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.deal-alert-box {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.deal-alert-content i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 16px;
}

.deal-alert-content h2 {
    margin-bottom: 12px;
}

.deal-alert-content p {
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deal-alert-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.deal-alert-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.deal-alert-form input[type="email"]:focus {
    outline: none;
    border-color: #2563eb;
}

.deal-alert-form button {
    white-space: nowrap;
}

/* Responsive Packages & Deals */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .deal-route-info {
        flex-direction: column;
        gap: 16px;
    }

    .route-line {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .deal-list-card {
        flex-direction: column;
        align-items: stretch;
    }

    .deal-price-info {
        align-items: stretch;
    }

    .deal-price-info button {
        width: 100%;
    }

    .deal-alert-form {
        flex-direction: column;
    }

    .countdown-timer {
        justify-content: center;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .destinations-simple-grid {
        grid-template-columns: 1fr;
    }
}