/* ============================================
   TRAVEL WEBSITE - MAIN STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --border-color: #ddd;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Remove default margins that create gaps */
section {
    margin: 0;
}

main {
    padding: 0;
    margin: 0;
}

/* Override section padding for slider and trust badges */
section.hero-slider-new,
section.trust-badges-bar {
    padding: 0 !important;
    margin: 0 !important;
}


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

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

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact a,
.top-social a {
    color: white;
    margin-right: 20px;
    transition: var(--transition);
}

.top-contact a:hover,
.top-social a:hover {
    color: var(--primary-color);
}

.top-social a {
    margin-right: 10px;
}

/* ============ HEADER ============ */
.main-header {
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 15px 0;
}

.logo {
    max-height: 60px;
}

.brand-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.btn-enquiry {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
}

.navbar-nav .nav-link.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    margin-top: 0;
}

.carousel-item {
    height: 600px;
    position: relative;
}

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* ============ SEARCH SECTION ============ */
.search-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-box .form-control,
.search-box .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.search-box .btn {
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
}

/* ============ SECTIONS ============ */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

/* ============ CATEGORY CARDS ============ */
.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px;
    color: white;
}

.category-overlay h4 {
    margin: 0;
    font-weight: 600;
}

/* ============ NEW CATEGORY GRID LAYOUT ============ */
.categories-section .section-title {
    font-size: 28px;
}

.categories-section .section-subtitle {
    font-size: 14px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 182px);
    gap: 11px;
    max-width: 980px;
    margin: 0 auto;
}

.category-card-new {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 11px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 21px rgba(0,0,0,0.3);
}

.category-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 17px;
}

.category-card-content h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    word-wrap: break-word;
}

.category-card-content p {
    color: rgba(255,255,255,0.95);
    font-size: 11px;
    margin: 0;
    font-weight: 500;
}

/* Smaller font for small cards paragraph */
.cat-pos-5 .category-card-content p {
    font-size: 9px;
}

/* Specific positions for 6 categories matching reference design */
/* Position 1: Mauritius - top left */
.cat-pos-1 {
    grid-column: 1 / 4;
    grid-row: 1;
}

/* Position 2: Thailand - center large (spans 2 rows) */
.cat-pos-2 {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
}

/* Position 3: Maldives - top right */
.cat-pos-3 {
    grid-column: 6 / 9;
    grid-row: 1;
}

/* Position 4: Malaysia - bottom left */
.cat-pos-4 {
    grid-column: 1 / 3;
    grid-row: 2;
}

/* Position 5: Sri Lanka - bottom center-left */
.cat-pos-5 {
    grid-column: 3 / 4;
    grid-row: 2;
}

/* Position 6: Seychelles - bottom right */
.cat-pos-6 {
    grid-column: 6 / 9;
    grid-row: 2;
}

/* Adjust font sizes based on card size */
/* Large center card (Thailand) - Position 2 */
.cat-pos-2 .category-card-content h3 {
    font-size: 27px;
}

/* Top row cards (Mauritius, Maldives) - Positions 1, 3 */
.cat-pos-1 .category-card-content h3,
.cat-pos-3 .category-card-content h3,
.cat-pos-6 .category-card-content h3 {
    font-size: 21px;
}

/* Bottom left card (Malaysia) - Position 4 */
.cat-pos-4 .category-card-content h3 {
    font-size: 18px;
}

/* Small card (Sri Lanka) - Position 5 */
.cat-pos-5 .category-card-content h3 {
    font-size: 15px;
}

/* Adjust overlay padding for smaller cards */
.cat-pos-5 .category-card-overlay {
    padding: 11px;
}

.cat-pos-4 .category-card-overlay {
    padding: 14px;
}

/* Responsive grid */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 168px);
    }

    .cat-pos-1 {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .cat-pos-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }

    .cat-pos-3 {
        grid-column: 1 / 4;
        grid-row: 2;
    }

    .cat-pos-4 {
        grid-column: 4 / 7;
        grid-row: 3;
    }

    .cat-pos-5 {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .cat-pos-6 {
        grid-column: 3 / 5;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 8px;
    }

    .cat-pos-1,
    .cat-pos-2,
    .cat-pos-3,
    .cat-pos-4,
    .cat-pos-5,
    .cat-pos-6 {
        grid-column: span 1;
        grid-row: span 1;
        height: 140px;
    }

    .category-card-content h3 {
        font-size: 15px;
    }

    .category-card-overlay {
        padding: 11px;
    }

    .category-card-content p {
        font-size: 10px;
    }
}

/* ============ PACKAGE CARDS ============ */
/* Featured Packages Row Gap to match Trending Destinations */
.packages-row-gap {
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.packages-row-gap > [class*="col-"] {
    padding: 0;
    margin: 0;
    width: auto;
}

.package-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 7px 21px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    width: 224px;
    height: 294px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Customer Activity Banner - Yellow for Viewed */
.customer-activity-banner {
    background: linear-gradient(135deg, #ffd54f, #ffeb3b);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 5;
}

/* Customer Activity Banner - Green for Booked */
.customer-activity-banner-booked {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 5;
}

.customer-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #333;
    flex: 1;
    overflow: hidden;
}

.customer-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-time {
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.package-image {
    position: relative;
    height: 110px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 10px;
}

.trending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 10px;
}

.package-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-location {
    color: var(--primary-color);
    font-size: 9px;
    margin-bottom: 5px;
}

.package-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.package-title a {
    color: var(--dark-color);
}

.package-title a:hover {
    color: var(--primary-color);
}

.package-meta {
    color: #666;
    font-size: 9px;
    margin-bottom: 8px;
}

.package-meta i {
    color: var(--primary-color);
    margin-right: 3px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.package-price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
    font-size: 9px;
    display: block;
}

.package-price .new-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-card .btn-sm {
    font-size: 9px;
    padding: 4px 8px;
}

/* ============ FEATURES ============ */
.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonials-section .section-subtitle {
    font-size: 16px;
    color: #666;
}

.testimonial-card {
    background: white;
    padding: 35px 25px 25px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 10px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    color: rgba(0, 123, 255, 0.08);
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
    text-align: center;
}

.rating {
    margin-bottom: 20px;
    text-align: center;
}

.rating i {
    color: #ffc107;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    padding: 0 10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-author > img,
.testimonial-author > .author-placeholder {
    flex-shrink: 0;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    flex-shrink: 0;
}

.author-placeholder {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-info {
    text-align: center;
}

.author-info h6 {
    margin: 0 0 5px 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

/* Owl Carousel Custom Styles */
.testimonials-slider.owl-carousel .owl-nav {
    margin-top: 30px;
}

.testimonials-slider.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white !important;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin: 0 5px;
    border: 2px solid #f0f0f0 !important;
}

.testimonials-slider.owl-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
    border-color: var(--primary-color) !important;
}

.testimonials-slider.owl-carousel .owl-dots {
    margin-top: 25px;
    text-align: center;
}

.testimonials-slider.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.testimonials-slider.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    display: block;
    transition: all 0.3s ease;
}

.testimonials-slider.owl-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 6px;
}

.testimonials-slider.owl-carousel .owl-stage-outer {
    padding: 10px 0 20px 0;
}

.testimonials-slider.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.testimonials-slider.owl-carousel .owl-item .testimonial-card {
    width: 100%;
    height: 100%;
}

/* Ensure images maintain aspect ratio in carousel */
.testimonials-slider .testimonial-author img,
.testimonials-slider .author-placeholder {
    aspect-ratio: 1/1;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        min-height: 280px;
        padding: 25px 20px 20px 20px;
    }

    .testimonial-card::before {
        font-size: 35px;
        top: 10px;
        right: 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author img,
    .author-placeholder {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
    }

    .author-placeholder {
        font-size: 28px;
    }

    .author-info h6 {
        font-size: 16px;
    }

    .author-info p {
        font-size: 13px;
    }

    .testimonials-section .section-title {
        font-size: 26px;
    }

    .testimonials-section .section-subtitle {
        font-size: 14px;
    }
}

/* ============ CTA SECTION ============ */
.cta-section {
    color: white;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--dark-color);
    color: white;
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.newsletter-box h6 {
    margin-bottom: 10px;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 30px;
}

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    /* Mobile Dropdown Styles */
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none;
        background: rgba(0, 0, 0, 0.5);
        margin-left: 15px;
        border-radius: 5px;
        margin-top: 5px;
        display: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    .carousel-item {
        height: 400px;
    }

    .section-title {
        font-size: 28px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        right: 80px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption h1 {
        font-size: 24px;
    }

    .search-box {
        padding: 20px;
    }

    section {
        padding: 50px 0;
    }

    .category-card {
        height: 200px;
    }
}

/* ============ PAGE HEADER FOR NON-INDEX PAGES ============ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 0 25px !important;
    color: white;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
}

/* Override Bootstrap padding classes for filter sections */
.filter-info-section.py-4 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.search-filter-section.py-4 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.packages-listing-section.py-5 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.page-header .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--gradient-start-color);
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Reduce gap between page header and content */
.page-content {
    padding: 30px 0 !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .page-header {
        padding: 25px 0 20px !important;
    }

    .page-header .page-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .page-header .breadcrumb-item {
        font-size: 12px;
    }

    .page-content {
        padding: 25px 0 !important;
    }
}

/* ============ UTILITIES ============ */
.btn {
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.bg-light {
    background: #f8f9fa !important;
}

.bg-light-blue {
    background: #e3f2fd !important;
}

/* ============================================
   NEW HEADER & SLIDER STYLES (Reference Design)
   ============================================ */

/* ============ NEW TOP BAR (Dark) ============ */
.top-bar-dark {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.top-bar-dark .top-contact a,
.top-bar-dark .top-social a {
    color: white;
    margin-right: 20px;
    transition: var(--transition);
}

.top-bar-dark .top-contact a:hover,
.top-bar-dark .top-social a:hover {
    color: var(--gradient-start-color);
}

/* ============ NEW MAIN HEADER ============ */
.main-header-new {
    background: transparent;
    position: absolute;
    top: 0 !important;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header-new.scrolled {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Solid header for non-homepage pages */
.main-header-solid {
    background: white !important;
    position: relative !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header-solid .navbar {
    padding: 10px 0 !important;
}

.main-header-solid .nav-link-new {
    color: #2c3e50 !important;
    padding: 8px 12px !important;
}

.main-header-solid .nav-link-new:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-color) !important;
}

.main-header-solid .brand-text-new {
    color: var(--primary-color);
}

.main-header-solid .mobile-toggle {
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #2c3e50;
}

.main-header-solid .dropdown-menu-new {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header-solid .dropdown-menu-new .dropdown-item {
    color: #2c3e50;
}

.main-header-solid .dropdown-menu-new .dropdown-item:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
}

.main-header-solid.scrolled {
    background: white !important;
    position: fixed !important;
}



.main-header-new .navbar {
    padding: 12px 0;
    margin: 0;
}

.navbar-brand-new {
    display: flex;
    align-items: center;
}

.logo-new {
    max-height: 50px;
    width: auto;
}

.brand-text-new {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* ============ NEW NAVIGATION ============ */
.nav-link-new {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: var(--transition);
    border-radius: 5px;
}

.nav-link-new:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gradient-start-color) !important;
}

.dropdown-menu-new {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu-new .dropdown-item {
    color: white;
    transition: var(--transition);
}

.dropdown-menu-new .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gradient-start-color);
}

.btn-enquiry-new {
    background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-left: 10px;
}

.btn-enquiry-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.mobile-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============ NEW HERO SLIDER ============ */
.hero-slider-new {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 430px;
}

.hero-slider-new .carousel {
    height: 100%;
    margin-bottom: 0;
}

.hero-slider-new .carousel-inner {
    height: 100%;
    margin-bottom: 0;
}

.hero-slider-new .carousel-item {
    height: 430px;
    min-height: 430px;
    position: relative;
    background: #000;
    margin-bottom: 0;
}

/* Full height slider on homepage only */
body.homepage .hero-slider-new {
    min-height: 72vh;
}

body.homepage .hero-slider-new .carousel-item {
    height: 72vh;
    min-height: 72vh;
}

.hero-slider-new .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

.carousel-caption-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    padding: 80px 15px 0;
    text-align: center;
}

.slider-heading {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.slider-subheading {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.slider-heading span {
    background: linear-gradient(135deg, var(--gradient-start-color), var(--gradient-end-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional text color options for slider headings and subheadings */
.slider-heading strong,
.slider-subheading strong {
    font-weight: 700;
    color: var(--gradient-start-color);
}

.slider-heading em,
.slider-subheading em {
    font-style: italic;
    color: var(--gradient-end-color);
}

.slider-heading b,
.slider-subheading b {
    font-weight: 700;
}

.slider-heading i,
.slider-subheading i {
    font-style: italic;
}

.slider-heading u,
.slider-subheading u {
    text-decoration: underline;
    text-decoration-color: var(--gradient-start-color);
    text-decoration-thickness: 2px;
}

/* ============ SLIDER SEARCH BOX ============ */
.slider-search-box {
    max-width: 600px;
    margin: 0 auto 15px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    z-index: 3;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    background: white;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #999;
}

/* Search Autocomplete Suggestions */
.search-input-wrapper {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: -10px;
    padding-top: 10px;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 25px 25px;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 16px;
    color: white;
}

.suggestion-icon.package {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.suggestion-icon.destination {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.suggestion-icon.category {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.suggestion-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-meta {
    font-size: 12px;
    color: #666;
}

.suggestion-arrow {
    color: var(--primary-color);
    font-size: 14px;
    margin-left: 10px;
}

.no-suggestions {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.view-all-results {
    padding: 12px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 25px 25px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s;
}

.view-all-results:hover {
    background: #e9ecef;
}

.btn-slider-cta {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-slider-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

/* ============ DEFAULT HERO (No Sliders) ============ */
.default-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

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

.default-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-search-box {
    max-width: 700px;
    margin: 0 auto;
}

/* ============ TRUST BADGES BAR ============ */
.trust-badges-bar {
    padding: 28px 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 10;
    width: 100%;
    clear: both;
    display: block !important;
    border: none !important;
}

.badges-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.badge-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    color: white !important;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end)) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.badge-icon i {
    color: white;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.badge-text {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    color: white !important;
}

.badge-text i.fa-star {
    color: #ffd700;
    font-size: 17px;
}

/* ============ RESPONSIVE - NEW DESIGN ============ */
@media (max-width: 991px) {
    .main-header-new .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }

    .nav-link-new {
        padding: 10px !important;
        margin: 5px 0;
    }

    .btn-enquiry-new {
        margin: 10px 0;
        display: block;
        text-align: center;
    }

    .carousel-caption-new {
        padding: 70px 15px 0;
    }

    .slider-heading {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .slider-subheading {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-slider-new .carousel-item {
        height: 55vh;
    }

    .trust-badges-bar {
        padding: 25px 0 !important;
    }

    .badges-wrapper {
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }

    .badge-item {
        flex-basis: calc(50% - 15px);
        justify-content: center;
    }

    /* Hide 3rd and 4th badges on mobile */
    .badge-item:nth-child(3),
    .badge-item:nth-child(4) {
        display: none !important;
    }

    .badge-text {
        font-size: 14px;
    }

    .badge-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .carousel-caption-new {
        padding: 60px 15px 0;
    }

    .slider-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .slider-subheading {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .search-input {
        padding: 12px 18px 12px 45px;
        font-size: 14px;
    }

    .search-icon-left {
        left: 18px;
        font-size: 14px;
    }

    .slider-search-box {
        max-width: 100%;
        margin: 0 auto 12px;
    }

    .hero-slider-new .carousel-item {
        height: 50vh;
    }

    .default-hero {
        min-height: 300px;
    }

    .trust-badges-bar {
        padding: 22px 0 !important;
    }

    .badges-wrapper {
        gap: 15px;
        padding: 0 10px;
    }

    .badge-item {
        flex-basis: calc(50% - 10px);
        justify-content: center;
        gap: 10px;
    }

    /* Hide 3rd and 4th badges on smaller mobile */
    .badge-item:nth-child(3),
    .badge-item:nth-child(4) {
        display: none !important;
    }

    .badge-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .badge-text {
        font-size: 12px;
    }

    .badge-text i.fa-star {
        font-size: 14px;
    }

    .top-bar-dark {
        font-size: 12px;
    }
}

/* ============ VERY SMALL MOBILE (< 480px) ============ */
@media (max-width: 480px) {
    .trust-badges-bar {
        padding: 20px 0 !important;
    }

    .badges-wrapper {
        gap: 12px;
        padding: 0 5px;
    }

    .badge-item {
        flex-basis: calc(50% - 8px);
        gap: 8px;
    }

    /* Ensure only first 2 badges show on very small screens */
    .badge-item:nth-child(n+3) {
        display: none !important;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .badge-text {
        font-size: 11px;
    }

    .badge-text i.fa-star {
        font-size: 12px;
    }
}

/* ============ LIVE COUNTER SECTION ============ */
.live-counter-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background removed - managed via admin panel */
/*.live-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(139,110,174,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}*/

.counter-heading {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: none;
}

.counter-subheading {
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: 300;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(139, 110, 174, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(139, 110, 174, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(139, 110, 174, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.counter-item:hover::before {
    left: 100%;
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(139, 110, 174, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: none;
    font-family: 'Arial', sans-serif;
}

.counter-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
    text-transform: capitalize;
}

/* Pulsing animation for counters */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.counter-item.counting .counter-number {
    animation: pulse 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .counter-heading {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .live-counter-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .counter-heading {
        font-size: 1.75rem;
    }

    .counter-subheading {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.95rem;
    }

    .live-counter-section {
        padding: 50px 0;
    }
}

/* ============ FEATURES SECTION ("Why Plan Your Travel With Us?") ============ */
.features-section {
    padding: 60px 0;
}

.features-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.features-section .section-subtitle {
    font-size: 16px;
    color: #666;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
    border-radius: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: rgba(139, 110, 174, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-circle {
    background: rgba(139, 110, 174, 0.2);
    transform: scale(1.1);
}

.feature-icon-circle i {
    font-size: 40px;
    color: #8b6eae;
}

.feature-icon-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for features */
@media (max-width: 991px) {
    .features-section {
        padding: 50px 0;
    }

    .features-section .section-title {
        font-size: 28px;
    }

    .feature-icon-circle {
        width: 85px;
        height: 85px;
    }

    .feature-icon-circle i {
        font-size: 35px;
    }

    .feature-title {
        font-size: 17px;
    }

    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .features-section {
        padding: 40px 0;
    }

    .features-section .section-title {
        font-size: 24px;
    }

    .feature-icon-circle {
        width: 75px;
        height: 75px;
    }

    .feature-icon-circle i {
        font-size: 30px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }
}

/* ============ BUDGET FILTER SECTION - PREMIUM DESIGN ============ */
.budget-filter-section-premium {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.budget-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* Background pattern removed - managed via admin panel */
}

/* Section Header */
.budget-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.budget-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.budget-highlight {
    background: linear-gradient(135deg, #e91e63, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: 2.4rem;
}

.budget-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

/* Premium Wrapper */
.budget-premium-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ========== LEFT SIDE: ANIMATED ILLUSTRATION ========== */
.budget-illustration-container {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
}

/* Background Image - Sliding Left to Right */
.illustration-backdrop {
    position: absolute;
    width: 150%;
    height: 150%;
    left: -25%;
    top: -25%;
    background-image: url('../images/Tripotomize-Banner-BG.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.85;
    animation: slideLeftRight 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes slideLeftRight {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(30px);
    }
}

/* Hero Image - Smaller and Animated */
.budget-hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    width: 340px;
    animation: floatUpDown 3.5s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

/* Smooth Up and Down Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Glow Effect */
.illustration-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 110, 174, 0.15) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes glow {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========== RIGHT SIDE: PREMIUM BUDGET CARDS ========== */
.budget-cards-container {
    flex: 0 0 58%;
}

.budget-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Premium Card Design */
.budget-premium-card {
    position: relative;
    background: white;
    border-radius: 14px;
    padding: 20px 18px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    min-height: 145px;
}

.budget-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.budget-premium-card:hover .card-shine {
    left: 100%;
    opacity: 1;
}

/* Icon Wrapper */
.card-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.budget-premium-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Card Text */
.card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
    opacity: 0.7;
}

.card-amount {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.card-description {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.75;
    margin-bottom: 10px;
}

.card-arrow {
    margin-top: auto;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.budget-premium-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========== COLOR THEMES FOR CARDS ========== */
/* Blue Card */
.card-blue {
    border-color: rgba(66, 165, 245, 0.2);
}

.card-blue:hover {
    border-color: #42a5f5;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.card-blue .card-icon-wrapper {
    background: linear-gradient(135deg, #42a5f5, #1976d2);
    color: white;
}

.card-blue .card-label,
.card-blue .card-amount,
.card-blue .card-description,
.card-blue .card-arrow {
    color: #1565c0;
}

/* Green Card */
.card-green {
    border-color: rgba(102, 187, 106, 0.2);
}

.card-green:hover {
    border-color: #66bb6a;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.card-green .card-icon-wrapper {
    background: linear-gradient(135deg, #66bb6a, #388e3c);
    color: white;
}

.card-green .card-label,
.card-green .card-amount,
.card-green .card-description,
.card-green .card-arrow {
    color: #2e7d32;
}

/* Yellow Card */
.card-yellow {
    border-color: rgba(255, 167, 38, 0.2);
}

.card-yellow:hover {
    border-color: #ffa726;
    background: linear-gradient(135deg, #ffffff 0%, #fff9c4 100%);
}

.card-yellow .card-icon-wrapper {
    background: linear-gradient(135deg, #ffa726, #f57c00);
    color: white;
}

.card-yellow .card-label,
.card-yellow .card-amount,
.card-yellow .card-description,
.card-yellow .card-arrow {
    color: #ef6c00;
}

/* Cyan Card */
.card-cyan {
    border-color: rgba(38, 198, 218, 0.2);
}

.card-cyan:hover {
    border-color: #26c6da;
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
}

.card-cyan .card-icon-wrapper {
    background: linear-gradient(135deg, #26c6da, #0097a7);
    color: white;
}

.card-cyan .card-label,
.card-cyan .card-amount,
.card-cyan .card-description,
.card-cyan .card-arrow {
    color: #00838f;
}

/* Pink Card */
.card-pink {
    border-color: rgba(236, 64, 122, 0.2);
}

.card-pink:hover {
    border-color: #ec407a;
    background: linear-gradient(135deg, #ffffff 0%, #fce4ec 100%);
}

.card-pink .card-icon-wrapper {
    background: linear-gradient(135deg, #ec407a, #c2185b);
    color: white;
}

.card-pink .card-label,
.card-pink .card-amount,
.card-pink .card-description,
.card-pink .card-arrow {
    color: #ad1457;
}

.budget-badge {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.budget-badge:hover {
    transform: translateY(-10px) scale(1.05);
}

.budget-badge-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 91%,
        50% 70%,
        21% 91%,
        32% 57%,
        2% 35%,
        39% 35%
    );
    transition: all 0.3s ease;
}

.budget-badge-bg.blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #90caf9;
}

.budget-badge-bg.green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 3px solid #81c784;
}

.budget-badge-bg.yellow {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    border: 3px solid #ffd54f;
}

.budget-badge-bg.cyan {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border: 3px solid #80deea;
}

.budget-badge-bg.pink {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border: 3px solid #f48fb1;
}

.budget-badge:hover .budget-badge-bg {
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.budget-badge-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.budget-badge-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.budget-badge-label.blue {
    color: #1976d2;
}

.budget-badge-label.green {
    color: #388e3c;
}

.budget-badge-label.yellow {
    color: #f57c00;
}

.budget-badge-label.cyan {
    color: #0097a7;
}

.budget-badge-label.pink {
    color: #c2185b;
}

.budget-badge-amount {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
    word-break: break-word;
    max-width: 140px;
}

.budget-badge-amount.blue {
    color: #1565c0;
}

.budget-badge-amount.green {
    color: #2e7d32;
}

.budget-badge-amount.yellow {
    color: #ef6c00;
}

.budget-badge-amount.cyan {
    color: #00838f;
}

.budget-badge-amount.pink {
    color: #ad1457;
}

.budget-badge-icon {
    font-size: 1.2rem;
    margin-top: 5px;
    opacity: 0.6;
}

.budget-badge-icon.blue {
    color: #42a5f5;
}

.budget-badge-icon.green {
    color: #66bb6a;
}

.budget-badge-icon.yellow {
    color: #ffa726;
}

.budget-badge-icon.cyan {
    color: #26c6da;
}

.budget-badge-icon.pink {
    color: #ec407a;
}

/* ========== RESPONSIVE DESIGN - PREMIUM BUDGET SECTION ========== */
@media (max-width: 1400px) {
    .budget-hero-image {
        width: 320px;
    }

    .illustration-glow {
        width: 240px;
        height: 240px;
    }

    .budget-illustration-container {
        min-height: 260px;
    }
}

@media (max-width: 1200px) {
    .budget-premium-wrapper {
        gap: 35px;
    }

    .budget-hero-image {
        width: 300px;
    }

    .budget-illustration-container {
        min-height: 250px;
    }

    .budget-cards-grid {
        gap: 14px;
    }

    .budget-premium-card {
        min-height: 140px;
        padding: 18px 16px;
    }
}

@media (max-width: 991px) {
    .budget-filter-section-premium {
        padding: 45px 0;
    }

    .budget-main-title {
        font-size: 2rem;
    }

    .budget-highlight {
        font-size: 2.2rem;
    }

    .budget-section-header {
        margin-bottom: 30px;
    }

    .budget-premium-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .budget-illustration-container {
        flex: 0 0 100%;
        min-height: 240px;
    }

    .budget-cards-container {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .budget-hero-image {
        width: 280px;
    }

    .budget-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .budget-premium-card {
        padding: 18px 16px;
        min-height: 140px;
    }

    .card-amount {
        font-size: 1.3rem;
    }

    .card-icon-wrapper {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .budget-filter-section-premium {
        padding: 40px 0;
    }

    .budget-main-title {
        font-size: 1.8rem;
    }

    .budget-highlight {
        font-size: 2rem;
    }

    .budget-subtitle {
        font-size: 0.9rem;
    }

    .budget-section-header {
        margin-bottom: 25px;
    }

    .budget-illustration-container {
        min-height: 220px;
    }

    .budget-hero-image {
        width: 260px;
    }

    .budget-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .budget-premium-card {
        padding: 16px 14px;
        min-height: 135px;
    }

    .card-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .card-amount {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .budget-filter-section-premium {
        padding: 35px 0;
    }

    .budget-main-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .budget-highlight {
        font-size: 1.7rem;
    }

    .budget-subtitle {
        font-size: 0.85rem;
    }

    .budget-section-header {
        margin-bottom: 22px;
    }

    .budget-premium-wrapper {
        gap: 25px;
    }

    .budget-illustration-container {
        min-height: 200px;
    }

    .budget-hero-image {
        width: 240px;
    }

    .illustration-glow {
        width: 170px;
        height: 170px;
    }

    .budget-cards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .budget-premium-card {
        padding: 16px 14px;
        min-height: 130px;
    }

    .card-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .card-label {
        font-size: 0.6rem;
    }

    .card-amount {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.75rem;
    }
}

/* ============================================
   TRENDING DESTINATIONS SECTION
============================================ */
.trending-destinations-section {
    overflow: hidden;
}

.section-header-with-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-with-filters .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Duration Filters */
.duration-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.duration-filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.duration-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.duration-filter-btn.active {
    background: #1a3e4c;
    color: #fff;
    border-color: #1a3e4c;
}

/* Destinations Wrapper */
.trending-destinations-wrapper {
    position: relative;
    margin-top: 30px;
}

/* Scroll Container */
.trending-destinations-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 7px 3px 21px 3px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.trending-destinations-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Destination Card */
.trending-destination-card {
    position: relative;
    min-width: 224px;
    height: 294px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 7px 21px rgba(0, 0, 0, 0.2);
}

.trending-destination-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: background 0.3s ease;
}

.destination-card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    color: #fff;
}

.destination-tagline {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.9;
    color: #fff;
}

.destination-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
}

.package-title-small {
    font-size: 11px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: #fff;
    opacity: 0.95;
    line-height: 1.3;
}

/* Destination Stats Display */
.destination-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.stat-value {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.stat-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 400;
}

.package-duration-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.duration-badge,
.price-badge {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 8px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.price-badge {
    background: rgba(255, 255, 255, 0.25);
    font-size: 10px;
}

/* Hover Effects */
.trending-destination-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

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

.trending-destination-card:hover .destination-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Scroll Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a3e4c;
    font-size: 13px;
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.scroll-arrow.scroll-left {
    left: -25px;
}

.scroll-arrow.scroll-right {
    right: -25px;
}

.scroll-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-arrow:disabled:hover {
    background: #fff;
    color: #1a3e4c;
    transform: translateY(-50%) scale(1);
}

/* Hide/Show cards based on filter */
.trending-destination-card {
    display: flex;
}

.trending-destination-card.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header-with-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header-with-filters .section-title {
        font-size: 24px;
    }

    .duration-filters {
        width: 100%;
        justify-content: flex-start;
    }

    .duration-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .trending-destination-card {
        min-width: 280px;
        height: 380px;
    }

    .destination-name {
        font-size: 24px;
    }

    .package-title-small {
        font-size: 14px;
    }

    .duration-badge,
    .price-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .scroll-arrow.scroll-left {
        left: 10px;
    }

    .scroll-arrow.scroll-right {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .trending-destination-card {
        min-width: 260px;
        height: 350px;
    }

    .destination-card-content {
        padding: 20px;
    }

    .destination-name {
        font-size: 20px;
    }

    .destination-tagline {
        font-size: 11px;
    }

    .package-title-small {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .package-duration-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 12px;
    }

    .duration-badge,
    .price-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* ============================================
   PACKAGE CARDS RESPONSIVE (Match Trending)
   ============================================ */
@media (max-width: 768px) {
    .package-card {
        width: 280px;
        height: 380px;
    }

    .package-image {
        height: 150px;
    }

    .package-content {
        padding: 14px;
    }

    .package-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .package-location {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .package-meta {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .package-price .new-price {
        font-size: 16px;
    }

    .package-card .btn-sm {
        font-size: 11px;
        padding: 6px 10px;
    }

    .customer-info {
        font-size: 12px;
    }

    .customer-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Center cards on mobile */
    .packages-row-gap {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .package-card {
        width: 260px;
        height: 350px;
    }

    .package-image {
        height: 130px;
    }

    .package-content {
        padding: 12px;
    }

    .package-title {
        font-size: 13px;
    }

    .package-location {
        font-size: 10px;
    }

    .package-meta {
        font-size: 10px;
    }
}
