:root {
    --primary-color: #610b8a;
    /* Professional purple */
    --secondary-color: #4A148C;
    /* Medium slate blue - lighter purple */
    --accent-color: #e74c3c;
    /* Keeping your accent color */
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #4A148C, #7B1FA2);
    /* Deep purple gradient */
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.15);
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-speed: 0.3s;
    overflow-x: hidden;
}

/* ================== Redesign Overrides: Cleaner Professional UI ================== */

/* Make layout responsive and remove forced min-width */
html,
body {
    min-width: 0;
    background: #f6f7fb;
    color: var(--text-primary);
}

.Header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #eef0f4;
    position: sticky;
    top: 0;
    z-index: 50;
}

.company-logo img {
    height: 42px;
    display: block;
}

.Header-nav ul {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.Header-nav a {
    color: #243142;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
}

.Header-nav a:hover {
    background: rgba(74, 20, 140, 0.06);
}

.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-icons .announcement-btn button,
.header-icons a {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    padding: 8px;
    border-radius: 8px;
}

.header-icons a:hover,
.header-icons .announcement-btn button:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Main container to center content */
.travel-container {
    max-width: var(--container-width);
    margin: 28px auto;
    padding: 0 20px;
}

/* ===== HERO SECTION (Full-width, Prominent) ===== */
.hero-section {
    width: 100%;
    height: 380px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 40px;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.hero-overlay {
    padding: 36px 48px;
    max-width: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0;
    box-shadow: none;
}

/* ===== TOP DESTINATIONS SECTION ===== */
.places-section {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 40px;
    background-color: transparent;
}

.places-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.places-section .places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

@media (max-width: 600px) {
    .places-section .places-grid {
        grid-template-columns: 1fr;
    }
}

.hero-overlay h1 {
    font-size: 2.2rem;
    margin: 0 0 8px;
    color: #081228;
    font-weight: 700;
}

.hero-overlay p {
    margin: 0 0 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.search-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    width: 100%;
}

.search-input {
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.search-input i {
    margin-right: 12px;
    color: #98a3b3;
}

.search-input input {
    border: 0;
    outline: 0;
    font-size: 1rem;
    color: #0f1720;
}

.suggestions {
    margin-top: 0;
    color: var(--text-secondary);
}

/* Places grid (Top Destinations) */
.places-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.place-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.place-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.place-info h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #081228;
}

.place-info .rate {
    color: #4b5563;
    font-weight: 600;
    margin: 4px 0;
    font-size: 0.9rem;
}

.place-info .visa-info {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin: 2px 0;
}

.view-details-btn {
    display: block;
    margin: 12px;
    padding: 8px 14px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.like-btn {
    position: relative;
    background: transparent;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    cursor: pointer;
    margin-left: 8px;
}

.like-btn i {
    color: #e45757;
    font-size: 16px;
}

.show-more-btn {
    display: block;
    margin: 22px auto;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

/* Destinations grid (featured) */
.destination-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.card-overlay {
    padding: 16px;
    border-radius: 0 0 10px 10px;
}

.explore-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
}

/* Sections spacing */
section {
    margin-bottom: 28px;
}

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

.section-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #0b1220;
}

/* Visa cards & guides */
.visa-card,
.guide-card,
.package-card,
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

/* Footer tweaks */
.footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: 28px 20px;
}

.footer a {
    color: #cbd5e1;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-section {
        height: auto;
    }

    .hero-overlay {
        padding: 20px;
    }

    .travel-container {
        padding: 0 14px;
    }
}

@media (max-width: 560px) {
    .Header-nav ul {
        display: none;
    }

    .search-input {
        padding: 10px 12px;
    }

    .place-card img {
        height: 140px;
    }
}

/* End redesign overrides */

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    min-width: 1200px;
    overflow-x: auto;

}

/* Accessible focus styles */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}



.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.filter-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-card:hover {
    transform: translateY(-5px);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.visa-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
}


.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.guide-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.card-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: white;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

/* Budget Calculator Card - Fixed Styling */
/* .guide-card.budget {
    position: relative;
    max-height: 360px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
} */

/* Form layout */
.calculator-form {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Fixed Budget Result Display */
.budget-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    padding: 0 !important;
    z-index: 20;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* Hide by default */
    flex-direction: column;
    justify-content: center;
    overflow-y: auto !important;
}

/* Make sure active class works independently of hover state */
.budget-result.active {
    display: block !important;
    padding-top: 0 !important;
}

/* Remove any hover selectors that might be showing the results */
.guide-card.budget:hover .budget-result,
.calculator-form:hover .budget-result {
    display: none;
    /* Override any hover-based display */
}

/* Fix any potential z-index issues */
.guide-card.budget {
    position: relative;
    z-index: 1;
}

.calculate-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    height: 36px;
    font-size: 0.95rem;
}

.calculate-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 236, 0.3);
}


/* Adjust content spacing */
.result-header {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 70px !important;
    padding-top: 10px !important;
    text-align: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Result overlay */
.result-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    border-radius: 8px 8px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 25;
}

.result-banner i {
    font-size: 1.5rem;
}

.result-banner h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.result-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 5px !important;
    margin-bottom: 15px;
    text-align: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.result-breakdown {
    border-top: 1px solid #e9ecef;
    padding: 0px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 15px 0px !important;
    width: calc(100% - 40px) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.breakdown-item span:first-child {
    color: #495057;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.breakdown-item span:last-child {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
}

/* Budget Result Header Styling */
.result-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    border-radius: 8px 8px 0 0;
    margin-top: 32px;
    margin-bottom: 0px !important;
    margin-left: 30px !important;
    margin-right: 30px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.result-banner i {
    font-size: 1.5rem;
}

.result-banner h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Adjust the close button position */


.close-result:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: scale(1.1);
}

.close-result {
    position: absolute;
    top: 550px;
    right: 15px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 30;
    transition: all 0.2s ease;
}

.close-result:hover {
    background: var(--secondary-color);
    color: #ff6969;
    transform: scale(1.1);
}

/* Destination tip styling */
.destination-tip {
    margin: 10px 20px !important;
    padding: 8px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
    text-align: center;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hostel-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hostel-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hostel-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hostel-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.hostel-details {
    flex: 1;
}

.hostel-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.hostel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.hostel-rating i {
    color: #f1c40f;
}

.hostel-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Places Section - stacked responsive grid */
.places-section {
    padding: 40px 20px;
    background-color: transparent;
    text-align: left;
}

.places-section h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.place-card {
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Ensure the view-details-btn sits inside card */
.place-card .view-details-btn {
    position: relative;
    margin: 12px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
}

/* Make sure place-link doesn't create overlap */
.place-card .place-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: calc(100% - 40px);
}

/* Move the info up when hovering to make space for button */
.place-card:hover .place-info {
    transform: translateY(-35px);
    transition: transform 0.3s ease;
}

/* Keep the existing hover behavior for the button */
.place-card:hover .view-details-btn {
    bottom: 0;
    animation: pulseButton 1.5s infinite;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-info {
    padding: 15px;
    text-align: left;
}

.place-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.place-info .rate {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.place-info .gst {
    font-size: 0.9rem;
    color: #888;
}

.place-info .visa-info {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: bold;
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .hostel-item {
        flex-direction: column;
    }

    .hostel-item img {
        width: 100%;
        height: 200px;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }
}


/* Review Section */
.reviews {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews .section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 reviews per row */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #666;
}

.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-rating {
    color: #f9d342;
    /* Star color */
    font-size: 1.2rem;
}


/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.faq-header h2 i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.faq-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: #002244;
    /* Dark Navy Blue */
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    position: relative;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), #9100ec);
    /* Matches CTA gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.footer-section h3:hover::after {
    transform: scaleX(1.1);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}



.footer-section:nth-child(2) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;

}

.footer-section:nth-child(2) ul li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), #9100ec);
    /* Matches CTA gradient */
    transform: translateY(-3px);
}



/* Ensure hidden cards use the same styling as place-card */
.place-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* Ensure the button can be positioned relative to the card */
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.place-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-info {
    padding: 15px;
    text-align: left;
}

.place-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.place-info .rate {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.place-info .gst {
    font-size: 0.9rem;
    color: #888;
}

.place-info .visa-info {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: bold;
}


/* Like Button Styling */
.like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}



.like-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.like-btn i {
    color: #ff5a5a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.like-btn:active {
    transform: scale(0.95);
}

.likes-btn a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.likes-btn a:hover {
    color: #ff4d6d;
    /* Change to your preferred hover color */
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.show-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Solo Travel Guide Section */
.solo-guide {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.solo-guide h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.guide-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    color: white;
}

.card-header i {
    font-size: 1.8rem;
    margin-right: 1rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

/* Safety Tips Card */
.tips-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.tips-btn {
    display: block;
    width: 80%;
    margin: 0 auto 1.5rem;
    padding: 0.8rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tips-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Budget Calculator Card */
.calculator-form {
    padding: 1.5rem;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.calculate-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-btn:hover {
    background-color: var(--secondary-color);
}

/* Hostels Card */
.hostel-list {
    padding: 1.5rem;
}

.hostel-item {
    display: flex;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.2rem;
}

.hostel-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.hostel-item img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.hostel-details {
    flex: 1;
    padding-left: 1rem;
}

.hostel-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.hostel-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hostel-rating i {
    color: #ffc107;
    margin-right: 0.3rem;
}

.hostel-rating span {
    font-weight: 600;
}

.hostel-details p {
    margin: 0;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Packages Section */
.packages {
    padding: 3rem 0;
}

.package-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    margin: 0 0.5rem;
    border: none;
    background-color: #f1f3f5;
    color: #495057;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.package-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    position: relative;
    height: 200px;

}

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

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.duration,
.rating {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
}

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.package-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #495057;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-btn,
.details-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn {
    background-color: var(--primary-color);
    color: white;
    flex-grow: 1;
    margin-right: 0.8rem;
}

.book-btn:hover {
    background-color: var(--secondary-color);
}

.details-btn {
    background-color: transparent;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.details-btn:hover {
    background-color: #f1f3f5;
}

/* Destinations Section */
.destinations {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin: 0;
    color: #333;
}

.view-controls button {
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border: none;
    background: none;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.view-controls button.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.view-controls button:hover {
    color: var(--primary-color);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 400px;


}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
}

.destination-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.info-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.info-details span i {
    margin-right: 0.4rem;
}

.explore-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: white;
    color: #333;
}

/* Visa Guide Section */
.visa-guide {
    padding: 3rem 0;
}

.visa-guide h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.visa-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-5px);
}

.visa-header {
    position: relative;
}

.visa-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.visa-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #28a745;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.visa-content {
    padding: 1.5rem;
}

.visa-content h3 {
    margin: 0 0 1rem;
    color: #333;
}

.visa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat .label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.3rem;
}

.stat .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.apply-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #3a7bd5;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.apply-btn:hover {
    background-color: #2c5eb9;
}

/* Quick Filters Section */
.quick-filters {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.filter-grid {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.filter-card.active {
    background-color: #f1f7fe;
    color: #3a7bd5;
}

.filter-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.filter-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.reviewer-info h3 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-text {
    margin-bottom: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.review-rating i {
    color: #ffc107;
    margin-right: 0.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 1.2rem 1.2rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Travel Tips Section Styling */
.travel-tips {
    padding: 4rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.travel-tips::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replaced missing asset with a subtle CSS pattern */
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.06) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.06) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.06) 0 2px, transparent 3px);
    background-size: 200px 200px, 260px 260px, 220px 220px;
    opacity: 0.06;
    z-index: 0;
}

.travel-tips .section-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.travel-tips .section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.travel-tips .section-header h2 i {
    color: #ffc107;
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.travel-tips .section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    /* Add margin at the bottom to create space before the button */
}

.tip-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #3498db, #2ecc71);
    transition: height 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    /* Reduced from -10px to prevent excessive movement */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: #3498db;
    z-index: 2;
    /* Higher z-index on hover to prevent overlap issues */
}

.tip-card:hover::before {
    height: 100%;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.tip-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
}

.tip-card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Add icons to each tip card */
.tip-card:nth-child(1) {
    border-bottom-color: #e74c3c;
}

.tip-card:nth-child(2) {
    border-bottom-color: #3498db;
}

.tip-card:nth-child(3) {
    border-bottom-color: #2ecc71;
}

.tip-card:nth-child(1) h3::after {
    background-color: #e74c3c;
}

.tip-card:nth-child(2) h3::after {
    background-color: #3498db;
}

.tip-card:nth-child(3) h3::after {
    background-color: #2ecc71;
}

/* Add more visual elements to the tips */
.tip-card h3 {
    display: flex;
    align-items: center;
}

.tip-card h3::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.1rem;
}

.tip-card:nth-child(1) h3::before {
    content: '\f5b0';
    /* Box icon */
    color: #e74c3c;
}

.tip-card:nth-child(2) h3::before {
    content: '\f773';
    /* Water drops icon */
    color: #3498db;
}

.tip-card:nth-child(3) h3::before {
    content: '\f1ab';
    /* Language icon */
    color: #2ecc71;
}

.travel-tips .more-tips-container {
    text-align: center;
    margin-top: 3rem;
    /* Increased from 2.5rem to create more space */
    clear: both;
    /* Ensures it clears any floating elements */
    position: relative;
    /* Establishes positioning context */
    z-index: 5;
    /* Ensures it appears above the cards */
    padding: 0 1.5rem;
    /* Add some padding to match the grid */
}


.travel-tips .more-tips-btn {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Add subtle shadow for emphasis */
    background-color: white;
    /* White background ensures visibility */
}

.travel-tips .more-tips-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.travel-tips .more-tips-btn:hover {
    background-color: #3498db;
    color: white;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.2);
}

.travel-tips .more-tips-btn:hover i {
    transform: translateX(5px);
}

/* Responsive styles for both sections */
@media (max-width: 768px) {

    .travel-tips,
    .faq-section {
        padding: 3rem 0;
    }

    .travel-tips .section-header h2,
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .tip-card {
        padding: 1.5rem;
    }

    .tip-card h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .more-tips-container {
        margin-top: 2.5rem;
    }
}

/* Travel Tips Section Styling */
.travel-tips {
    padding: 4rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.travel-tips::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Pictures/Travel/pattern-bg.png');
    background-size: 200px;
    opacity: 0.06;
    z-index: 0;
}

.travel-tips .section-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.travel-tips .section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.travel-tips .section-header h2 i {
    color: #ffc107;
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.travel-tips .section-header::after {
    content: '';
    display: block;
    width: 800px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.tip-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #3498db, #2ecc71);
    transition: height 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    /* Reduced from -10px to prevent excessive movement */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: #3498db;
    z-index: 2;
    /* Higher z-index on hover to prevent overlap issues */
}

.tip-card:hover::before {
    height: 100%;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.tip-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
}

.tip-card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Add icons to each tip card */
.tip-card:nth-child(1) {
    border-bottom-color: #e74c3c;
}

.tip-card:nth-child(2) {
    border-bottom-color: #3498db;
}

.tip-card:nth-child(3) {
    border-bottom-color: #2ecc71;
}

.tip-card:nth-child(1) h3::after {
    background-color: #e74c3c;
}

.tip-card:nth-child(2) h3::after {
    background-color: #3498db;
}

.tip-card:nth-child(3) h3::after {
    background-color: #2ecc71;
}

/* Add more visual elements to the tips */
.tip-card h3 {
    display: flex;
    align-items: center;
}

.tip-card h3::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.1rem;
}

.tip-card:nth-child(1) h3::before {
    content: '\f5b0';
    /* Box icon */
    color: #e74c3c;
}

.tip-card:nth-child(2) h3::before {
    content: '\f773';
    /* Water drops icon */
    color: #3498db;
}

.tip-card:nth-child(3) h3::before {
    content: '\f1ab';
    /* Language icon */
    color: #2ecc71;
}

.travel-tips .more-tips-container {
    text-align: center;
    margin-top: 3rem;
    /* Increased from 2.5rem to create more space */
    clear: both;
    /* Ensures it clears any floating elements */
    position: relative;
    /* Establishes positioning context */
    z-index: 5;
    /* Ensures it appears above the cards */
    padding: 0 1.5rem;
    /* Add some padding to match the grid */
}

.travel-tips .more-tips-btn {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Add subtle shadow for emphasis */
    background-color: white;
    /* White background ensures visibility */
}

.travel-tips .more-tips-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.travel-tips .more-tips-btn:hover {
    background-color: #3498db;
    color: white;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.2);
}

.travel-tips .more-tips-btn:hover i {
    transform: translateX(5px);
}

/* FAQ Section - With new faq-header class instead of section-header */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-header {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.faq-header h2 i {
    color: #3498db;
    margin-right: 0.8rem;
    font-size: 1.8rem;
}

.faq-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    color: #3498db;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s ease;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for both sections */
@media (max-width: 768px) {

    .travel-tips,
    .faq-section {
        padding: 3rem 0;
    }

    .travel-tips .section-header h2,
    .faq-header h2 {
        font-size: 1.8rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tip-card {
        padding: 1.5rem;
    }

    .tip-card h3 {
        font-size: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Animations for the cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tip-card:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards;
}

.tip-card:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s ease forwards;
    animation-fill-mode: both;
}

.tip-card:nth-child(3) {
    animation: fadeInUp 0.6s 0.4s ease forwards;
    animation-fill-mode: both;
}

/* Add a "more tips" button at the bottom */
.travel-tips .more-tips-container {
    text-align: center;
    margin-top: 3rem;
    /* Increased from 2.5rem to create more space */
    clear: both;
    /* Ensures it clears any floating elements */
    position: relative;
    /* Establishes positioning context */
    z-index: 5;
    /* Ensures it appears above the cards */
    padding: 0 1.5rem;
    /* Add some padding to match the grid */
}

.travel-tips .more-tips-btn {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Add subtle shadow for emphasis */
    background-color: white;
    /* White background ensures visibility */
}

.travel-tips .more-tips-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.travel-tips .more-tips-btn:hover {
    background-color: #3498db;
    color: white;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.2);
}

.travel-tips .more-tips-btn:hover i {
    transform: translateX(5px);
}

/* Destination Tip */
.destination-tip {
    margin-top: 15px;
    padding: 10px 12px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #856404;
    text-align: center;
}

/* Currency Toggle */
.currency-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 5px;
    font-size: 0.9rem;
}

.currency-toggle select {
    padding: 5px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    font-size: 0.9rem;
}



/* Add this to your Travel.css file */
.place-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.place-card {
    position: relative;
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card:hover::after {
    content: 'View Details';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 134, 223, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.Header.shrink {
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: var(--shadow-md);
}

/* Final overrides to enforce stacked layout and prevent sidebar column issues */
.hero-section {
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.places-section {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    margin-top: 18px;
}

.places-section .places-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 22px !important;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.place-card {
    display: flex;
    flex-direction: column;
}

.place-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.place-info {
    padding: 12px;
}

/* Ensure no floated or positioned elements push the places-section into a column */
.travel-container:after {
    content: '';
    display: block;
    clear: both;
}


/* Modern Design System */
:root {

    --primary-gradient: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-color: #8b5cf6;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Navigation */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.company-logo img {
    height: 45px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--accent-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: #f7fafc;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    position: relative;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-btn:hover {
    background: #f7fafc;
    color: var(--accent-color);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f5576c;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.profile-wrapper {
    position: relative;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    min-width: 200px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.profile-wrapper:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.profile-dropdown a:hover {
    background: #f7fafc;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.4) 0%, rgba(139, 92, 246, 0.5) 100%),
        url('Pictures/travel-hero!.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-wrapper {
    background: white;
    border-radius: 60px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.search-wrapper:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid #e2e8f0;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.search-field input {
    border: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.search-field input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.search-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.quick-suggestions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-label {
    font-size: 1rem;
    opacity: 1;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
    letter-spacing: 0.5px;
    background: #4f15ad;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.suggestion-chip {
    background: #6d28d9;
    backdrop-filter: blur(10px);
    border: 0.2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.suggestion-chip:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Trust Section */
.trust-section {
    padding: 4rem 2rem;
    background: white;
}

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

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Main Content */
.main-content {
    padding: 4rem 2rem;
}

/* Section Headers */
.section-header-modern {
    margin-bottom: 3rem;
}

.section-title-group {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-group h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-title-group p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.favorite-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #ff6b6b;
    transition: var(--transition);
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn.active i {
    font-weight: 900;
}

.category-tag {
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-tag.hot-deal {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-content {
    padding: 1.5rem;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.destination-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbf24;
    font-weight: 600;
}

.destination-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.detail-item i {
    color: var(--accent-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-light);
}

.explore-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.explore-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

/* Load More */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-btn {
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

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

    .trust-stats {
        grid-template-columns: 1fr;
    }
}