.hero-search-wrapper {
    margin: 40px auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.top-deals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.hello {
    margin-bottom: 0;
}

.top-deals-a {
    color: #0f172a;
    font-size: 20px;
}

.weekly-travel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.hero-search-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 10px 10px 25px;
    display: flex;
    align-items: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid #e2e8f0;
}

.hero-search-icon {
    color: #64748b;
    font-size: 22px;
    margin-right: 15px;
}

.hero-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 18px;
    color: #334155;
    background: transparent;
    height: 50px;
}

.hero-search-bar input::placeholder {
    color: #94a3b8;
}

.hero-search-btn {
    background: #2eb67c;
    color: #ffffff;
    border: none;
    padding: 0 35px;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.hero-search-btn:hover {
    background: #2eb67c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

#hero-search-results-container {
    text-align: left;
    top: 100%;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

#hero-search-results-container.active {
    display: block;
}

@media (max-width: 768px) {
    .hero-search-bar {
        padding: 8px 8px 8px 15px;
        flex-wrap: wrap;
    }

    .hero-search-bar input {
        font-size: 16px;
        height: 45px;
    }

    .hero-search-btn {
        padding: 0 20px;
        font-size: 16px;
        height: 45px;
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .hero-search-icon {
        font-size: 18px;
        margin-right: 10px;
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #cbd5e1;
    margin-top: -25px;
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
        margin-top: -15px;
        margin-bottom: 25px;
    }
}

/* Browse by Category Section Styles */
.browse-category-section {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.category-header p {
    font-size: 18px;
    color: #64748b;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1249px;
    margin: 0 auto;
    padding: 0 10px;
}

.category-card {
    background: #2eb67c;
    border: 1px solid #003566;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #ffffff;
}

.category-card:hover {
    border-color: #2eb67c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.category-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    z-index: 2;
}

.category-content {
    z-index: 2;
}

.category-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.category-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Decorative Circles */
.category-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-header h2 {
        font-size: 32px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        padding: 25px;
    }
}

/* Top Travel Stores Section Styles */
.top-stores-section {
    padding: 60px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.top-stores-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}

.stores-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1249px;
    margin: 0 auto;
    padding: 0 10px;
}

.store-logo-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px 30px;
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #2eb67c;
}

.store-logo-card span {
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.5px;
}

/* Trending Deals Section Styles */
.trending-deals-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.trending-header {
    text-align: center;
    margin-bottom: 50px;
}

.trending-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.trending-header p {
    font-size: 16px;
    color: #64748b;
}

.trending-slider-wrapper {
    position: relative;
    max-width: 1249px;
    margin: 0 auto;
    padding: 0 20px;
}

.trending-slider-container {
    overflow: hidden;
}

.trending-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.trending-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trending-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.12);
    border-color: #0f172a;
}

.trending-store {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.trending-store i {
    font-size: 20px;
    color: #0f172a;
}

.trending-store span {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.trending-discount {
    font-size: 32px;
    font-weight: 800;
    color: #2eb67c;
    margin: 0 0 5px 0;
}

.trending-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: auto;
}

.btn-trending-deal {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: #2eb67c;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2eb67c;
}

.btn-trending-deal:hover {
    background: #0f172a;
    border-color: #2eb67c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 94, 20, 0.3);
}

/* Slider Arrows */
.trending-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #0f172a;
    font-size: 18px;
}

.trending-nav-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.trending-nav-btn.prev {
    left: 0;
}

.trending-nav-btn.next {
    right: 0;
}

@media (max-width: 1024px) {
    .trending-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .trending-card {
        flex: 0 0 100%;
    }

    .trending-slider-wrapper {
        padding: 0 20px;
    }

    .trending-nav-btn {
        display: none;
    }
}

/* Newsletter Subscription Section Styles */
.newsletter-section {
    background-color: #2eb67c;
    padding: 70px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.newsletter-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.newsletter-form-wrapper {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 12px;
    max-width: 550px;
    width: 100%;
}

.newsletter-form {
    display: flex;
    gap: 6px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 8px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    background-color: #152a66;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form-wrapper {
        padding: 4px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 6px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-form button {
        padding: 12px 20px;
    }
}

/* Product Comparison Banner Section */
.comparison-banner-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
}

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

.banner-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #001e42;
    letter-spacing: -1px;
}

.promo-banner {
    background: linear-gradient(135deg, #003566 0%, #001e42 100%);
    border-radius: 40px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 53, 102, 0.2);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.banner-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    text-align: left;
}

.expert-tested-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #2eb67c;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: #ffffff;
}

.banner-content h2 span {
    color: #2eb67c;
}

.banner-content p.banner-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-promo {
    display: inline-block;
    background: #2eb67c;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.3);
}

.btn-promo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 94, 20, 0.4);
    background: #2eb67c;
    color: #fff;
}

.banner-footer-text {
    margin-top: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Visual Area */
.banner-visuals {
    flex: 1.3;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    z-index: 2;
    perspective: 1000px;
}

.visual-card {
    flex: 1;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-card:nth-child(even) {
    transform: translateY(20px);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.visual-card:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 94, 20, 0.3);
}

.visual-card:hover img {
    transform: scale(1.15);
}

/* Slider Controls */
.comparison-slider-main {
    position: relative;
    padding: 0 40px;
}

.comparison-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.comparison-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.comparison-slide {
    flex: 0 0 100%;
    width: 100%;
}

.slider-nav-btns {
    position: absolute;
    top: 48%;
    left: -15px;
    right: -15px;
    width: calc(100% + 30px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.comp-nav-btn {
    width: 50px;
    height: 50px;
    background: #2eb67c;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.3);
    pointer-events: auto;
    transition: all 0.3s ease;
    font-size: 18px;
}

.comp-nav-btn:hover {
    background: #003566;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 53, 102, 0.2);
}

.comparison-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.comp-dot {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comp-dot.active {
    width: 40px;
    background: #2eb67c;
}

/* Responsive */
@media (max-width: 1200px) {
    .promo-banner {
        padding: 60px;
        gap: 40px;
    }

    .banner-content h2 {
        font-size: 40px;
    }

    .visual-card {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .banner-content {
        text-align: center;
        max-width: 100%;
    }

    .banner-content p.banner-subtitle {
        margin: 0 auto 35px;
    }

    .banner-visuals {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .visual-card {
        max-width: 200px;
        height: 280px;
    }

    .visual-card:nth-child(even) {
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .banner-content h2 {
        font-size: 32px;
    }

    .promo-banner {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .visual-card {
        height: 220px;
    }

    .comp-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .promo-banner {
        padding: 40px 20px;
    }

    .banner-content h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .banner-visuals {
        flex-wrap: wrap;
    }

    .visual-card {
        flex: 0 0 calc(50% - 6px);
        height: 200px;
    }

    .visual-card:last-child {
        flex: 0 0 100%;
    }
}
