/* ===================================
   Corporate Travel Nepal - Main Stylesheet
   =================================== */

/* ===== TOUR LIST PAGE ===== */
.tour-hero {
    background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.tour-hero-inner { position: relative; z-index: 2; }
.tour-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
}
.tour-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    margin-bottom: 1.8rem;
}
.tour-search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    gap: 10px;
}
.tour-search-bar i { color: #9CA3AF; font-size: 0.9rem; flex-shrink: 0; }
.tour-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.9rem;
    color: #374151;
    background: transparent;
}
.tour-search-bar input::placeholder { color: #9CA3AF; }
.tour-search-bar button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.tour-search-bar button:hover { background: var(--primary-dark); }

/* Filter Sidebar */
.filter-sidebar-new {
    background: white;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    position: sticky;
    top: 80px;
}
.filter-group { margin-bottom: 24px; }
.filter-group-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.filter-group-title i { color: var(--primary-color); font-size: 0.8rem; }
.filter-pills { display: flex; flex-direction: column; gap: 6px; }
.filter-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1.5px solid #E5E7EB;
    background: white;
    color: #374151;
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    text-decoration: none;
}
.filter-pill:hover { border-color: var(--primary-color); color: var(--primary-color); }
.filter-pill.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.pill-count {
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}
.filter-pill:not(.active) .pill-count {
    background: #F3F4F6;
    color: #6B7280;
}
.btn-clear-filters {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-clear-filters:hover { background: var(--primary-light); }

/* Tour Card New Design */
.tour-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tour-card-new:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(0,0,0,0.14); }

.tour-card-new-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.tour-card-new-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card-new:hover .tour-card-new-img img { transform: scale(1.07); }

.popular-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-tag-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.diff-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}
.diff-easy { background: #D1FAE5; color: #065F46; }
.diff-moderate { background: #DBEAFE; color: #1E40AF; }
.diff-hard { background: #FEE2E2; color: #991B1B; }
.loc-tag {
    background: rgba(255,255,255,0.92);
    color: #374151;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}

.tour-card-new-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tour-card-new-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
    line-height: 1.3;
}
.tour-card-desc {
    color: #6B7280;
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6B7280;
    font-size: 0.78rem;
}
.tour-meta-item i { color: var(--primary-color); font-size: 0.72rem; }
.tour-meta-item .star-i { color: #F59E0B; }

.tour-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #F3F4F6;
}
.tour-from-label { font-size: 0.72rem; color: #9CA3AF; margin-bottom: 1px; }
.tour-price-new {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.btn-view-trek {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-view-trek:hover { background: var(--primary-dark); color: white; transform: translateX(2px); }

/* Showing count bar */
.showing-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F3F4F6;
}
.showing-bar span { font-size: 0.88rem; color: #6B7280; }
.showing-bar strong { color: var(--dark-color); }

/* Can't Find CTA */
.cant-find-cta {
    background: linear-gradient(135deg, #059669, #10B981);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    margin-top: 48px;
}
.cant-find-cta h3 { color: white; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.cant-find-cta p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 20px; }
.btn-custom-tour {
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.btn-custom-tour:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }

/* ===== BLOG PAGE ===== */
.blog-hero {
    min-height: 340px;
    background: linear-gradient(rgba(10,30,20,0.55), rgba(5,15,10,0.75)),
                url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 50px;
}
.blog-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

/* Section label */
.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}
.section-label i { color: var(--primary-color); }

/* Featured Cards */
.featured-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    height: 100%;
    transition: var(--transition);
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,0.13); }
.featured-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-card:hover .featured-card-img img { transform: scale(1.06); }
.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.card-action-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
}
.card-action-btn {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #6B7280;
    cursor: pointer;
    transition: var(--transition);
}
.card-action-btn:hover { background: var(--primary-color); color: white; }
.featured-card-body { padding: 16px; }
.post-cat-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.post-cat-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.post-cat-badge:hover { background: var(--primary-color); color: white; }
.post-date-txt {
    color: #9CA3AF;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.featured-card-body h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 8px;
}
.featured-card-body h4 a { color: inherit; text-decoration: none; }
.featured-card-body h4 a:hover { color: var(--primary-color); }
.featured-card-body p {
    color: #6B7280;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.post-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.post-author-name { font-size: 0.78rem; font-weight: 600; color: var(--dark-color); }
.read-more-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.read-more-link:hover { color: var(--primary-dark); }

/* Categories sidebar widget */
.blog-sidebar-widget {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}
.widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 14px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
    line-height: 1;
}
.category-pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.category-pill-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #F3F4F6;
}
.category-pill-item a:hover,
.category-pill-item.active a {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.cat-icon { color: var(--primary-color); font-size: 0.75rem; margin-right: 6px; transition: var(--transition); }
.category-pill-item a:hover .cat-icon,
.category-pill-item.active a .cat-icon { color: white; }
.cat-count {
    background: #F3F4F6;
    color: #6B7280;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}
.category-pill-item a:hover .cat-count,
.category-pill-item.active a .cat-count { background: rgba(255,255,255,0.25); color: white; }

/* All Articles heading */
.all-articles-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
}
.all-articles-heading span { color: var(--primary-color); }

/* Horizontal Blog Card */
.blog-card-h {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    display: flex;
    gap: 0;
    transition: var(--transition);
}
.blog-card-h:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.blog-card-h-img {
    position: relative;
    width: 200px;
    min-width: 200px;
    overflow: hidden;
}
.blog-card-h-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card-h:hover .blog-card-h-img img { transform: scale(1.07); }
.blog-card-h-actions {
    position: absolute;
    top: 10px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blog-card-h-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.post-meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.read-time { color: #9CA3AF; font-size: 0.73rem; display: flex; align-items: center; gap: 4px; }
.blog-card-h-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.35;
    margin-bottom: 8px;
}
.blog-card-h-body h4 a { color: inherit; text-decoration: none; }
.blog-card-h-body h4 a:hover { color: var(--primary-color); }
.blog-card-excerpt {
    color: #6B7280;
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.post-tag {
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 0;
}
.post-tag:hover { color: var(--primary-dark); text-decoration: underline; }
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #F9FAFB;
    flex-wrap: wrap;
    gap: 8px;
}
.author-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-stat { color: #9CA3AF; font-size: 0.73rem; display: flex; align-items: center; gap: 4px; }
.btn-read-article {
    background: var(--primary-color);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-read-article:hover { background: var(--primary-dark); color: white; transform: translateX(2px); }

/* Recent Posts widget */
.recent-post-item {
    display: flex;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #F9FAFB;
}
.recent-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-thumb {
    width: 56px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.recent-post-thumb-placeholder {
    width: 56px;
    height: 48px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.recent-post-text h6 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.35;
    margin-bottom: 3px;
}
.recent-post-text h6 a { color: inherit; text-decoration: none; }
.recent-post-text h6 a:hover { color: var(--primary-color); }
.recent-post-text small { color: #9CA3AF; font-size: 0.72rem; }

/* Popular Tags widget */
.popular-tags-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.pop-tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}
.pop-tag:hover { background: var(--primary-color); color: white; }

/* Newsletter widget */
.newsletter-widget {
    background: var(--primary-color);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.newsletter-widget-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1rem;
}
.newsletter-widget h5 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.newsletter-widget p { color: rgba(255,255,255,0.8); font-size: 0.75rem; margin-bottom: 14px; }
.newsletter-widget input {
    width: 100%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 9px 12px;
    color: white;
    font-size: 0.82rem;
    margin-bottom: 8px;
    outline: none;
    transition: var(--transition);
}
.newsletter-widget input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-widget input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.newsletter-widget button {
    width: 100%;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    padding: 9px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-widget button:hover { background: var(--primary-light); }

/* Follow Us widget */
.follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}
.follow-btn:hover { opacity: 0.88; color: white; transform: translateY(-1px); }
.follow-fb { background: #1877F2; }
.follow-tw { background: #1DA1F2; }
.follow-ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.follow-yt { background: #FF0000; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #0D1F1A;
    padding: 7px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--primary-color); }
.top-bar i { color: var(--primary-color); font-size: 0.75rem; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    padding: 80px 0 40px;
    margin-top: 56px; /* navbar + topbar height */
    text-align: center;
    color: white;
}
.contact-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-hero p { font-size: 1rem; color: rgba(255,255,255,0.85); }

.contact-info-cards {
    margin-top: -32px;
    position: relative;
    z-index: 10;
}
.contact-info-card {
    background: white;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    height: 100%;
    transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
    font-size: 1.2rem;
}
.contact-info-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--dark-color); margin-bottom: 6px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; line-height: 1.7; }

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark-color); margin-bottom: 22px; }
.contact-form-card .form-label { font-weight: 500; font-size: 0.85rem; color: var(--dark-color); }
.contact-form-card .form-label .req { color: #EF4444; }

.quick-contact-card {
    background: #059669;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}
.quick-contact-card h5 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
}
.quick-contact-item:hover { background: rgba(255,255,255,0.2); }
.quick-contact-item:last-child { margin-bottom: 0; }
.quick-contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.quick-contact-item-text p { color: rgba(255,255,255,0.7); font-size: 0.72rem; margin: 0; }
.quick-contact-item-text span { color: white; font-weight: 500; font-size: 0.85rem; }

.social-follow-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    margin-bottom: 16px;
}
.social-follow-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--dark-color); margin-bottom: 14px; }
.social-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1.5px solid #E5E7EB;
    color: var(--dark-color);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    width: 100%;
    background: white;
    cursor: pointer;
}
.social-follow-btn:hover { border-color: var(--primary-color); color: var(--primary-color); background: var(--primary-light); }

.location-card {
    background: #D1FAE5;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.location-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 1.1rem;
}
.location-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--dark-color); margin-bottom: 3px; }
.location-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Visit Our Office */
.office-card {
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: var(--transition);
}
.office-card:hover { border-color: var(--primary-color); }
.office-card-green { background: var(--primary-color); border-color: var(--primary-color); }
.office-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
}
.office-card .office-card-icon { background: var(--primary-light); color: var(--primary-color); }
.office-card-green .office-card-icon { background: rgba(255,255,255,0.2); color: white; }
.office-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--dark-color); margin-bottom: 4px; }
.office-card-green h5, .office-card-green p, .office-card-green .days { color: white !important; }
.office-card .days { font-size: 0.82rem; color: var(--primary-color); font-weight: 500; margin-bottom: 6px; }
.office-card .time { font-size: 1.15rem; font-weight: 700; color: var(--dark-color); margin: 0; }
.office-card-green .time { color: white; }

/* ===== FOOTER - NEWSLETTER ===== */
.footer-newsletter {
    background: #0f1e17;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-newsletter h3 { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.footer-newsletter p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }
.newsletter-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}
.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary-color); background: rgba(255,255,255,0.12); }
.btn-newsletter {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
}
.btn-newsletter:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== FOOTER MAIN ===== */
.footer-main {
    background: #111e17;
    padding: 50px 0 32px;
}
.footer-logo-area .brand-text { color: white; font-size: 1.1rem; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.8; margin: 14px 0 16px; }
.footer-contact-info { list-style: none; padding: 0; margin-bottom: 18px; }
.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-bottom: 8px;
}
.footer-contact-info li i { color: var(--primary-color); width: 14px; flex-shrink: 0; }
.footer-contact-info li span { font-weight: 500; color: rgba(255,255,255,0.8); }
.footer-contact-info li small { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.footer-col-title { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); display: inline-block; }
.footer-col-links { list-style: none; padding: 0; }
.footer-col-links li { margin-bottom: 9px; display: flex; align-items: center; gap: 6px; }
.footer-col-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: var(--transition); }
.footer-col-links a:hover { color: var(--primary-color); padding-left: 3px; }
.footer-col-links li i { color: var(--primary-color); font-size: 0.6rem; }
.footer-social-links { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    transition: var(--transition);
}
.footer-social-btn:hover { background: var(--primary-color); color: white; transform: translateY(-2px); }

/* ===== FOOTER STATS ===== */
.footer-stats {
    background: #0a1610;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.footer-stat-icon {
    width: 44px; height: 44px;
    background: rgba(16,185,129,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}
.footer-stat-text h6 { color: white; font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.footer-stat-text small { color: rgba(255,255,255,0.45); font-size: 0.73rem; }

/* ===== FOOTER CERTS ===== */
.footer-certs {
    background: #0a1610;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-certs p { color: rgba(255,255,255,0.4); font-size: 0.78rem; margin-bottom: 10px; }
.cert-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cert-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
}

/* ===== FOOTER COPYRIGHT ===== */
.footer-copyright {
    background: #060f0b;
    padding: 14px 0;
}
.footer-copyright p { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin: 0; }
.footer-copyright a { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-copyright a:hover { color: var(--primary-color); }

/* CSS Variables */
:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --primary-light: #D1FAE5;
    --dark-color: #1E2F4D;
    --navy-color: #162040;
    --light-bg: #F9FAFB;
    --text-muted: #6B7280;
    --text-dark: #1F2937;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 28px rgba(0,0,0,0.15);
    --radius: 12px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

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

.btn-outline-white {
    color: white;
    border: 2px solid white;
    background: transparent;
}
.btn-outline-white:hover {
    background: white;
    color: var(--primary-dark);
}

.btn-warning {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}
.btn-outline-warning {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-warning:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 14px 0;
    background: white !important;
    border-bottom: 1px solid #F3F4F6;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.brand-text span { color: var(--primary-color); }

.navbar-light .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 14px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-light .navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-light .navbar-toggler:focus { box-shadow: none; }

.btn-search-trips {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-search-trips:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    margin-top: 0;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: white;
}

.footer-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.footer-contact i { color: var(--primary-color); }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 24px 0;
}

.copyright {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: var(--radius);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ===== FORMS ===== */
.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}
.form-label {
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* ===== SECTION COMMON ===== */
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(15,25,50,0.55), rgba(15,25,50,0.7)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
}

.hero-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Booking Tabs */
.booking-tabs-bar {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.booking-tab-btn {
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    padding: 9px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.booking-tab-btn:hover,
.booking-tab-btn.active {
    background: white;
    color: var(--dark-color);
    border-color: white;
}
.booking-tab-btn.active { border-bottom-color: white; }

/* Booking Widget Card */
.booking-widget {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 24px 28px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.booking-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.booking-widget-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.trip-toggle {
    display: flex;
    background: #F3F4F6;
    border-radius: 6px;
    padding: 3px;
}
.trip-toggle-btn {
    background: transparent;
    border: none;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.trip-toggle-btn.active {
    background: white;
    color: var(--dark-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.booking-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.booking-fields-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.booking-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.spring-offer-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px 6px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== TOP EXPERIENCES ===== */
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.view-all-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-top: 4px;
}
.view-all-link:hover { color: var(--primary-dark); }

.experience-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.experience-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.experience-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.experience-card:hover .experience-card-img img {
    transform: scale(1.08);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #1E40AF;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating-badge i { color: #FCD34D; font-size: 0.65rem; }

.experience-card-body {
    padding: 16px;
}
.experience-card-body h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.experience-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.experience-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.experience-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== EXPLORE DESTINATIONS ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.destination-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover img { transform: scale(1.1); }
.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}
.destination-card-overlay h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.destination-card-overlay span {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}

/* ===== WHY CHOOSE US ===== */
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #F3F4F6;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.feature-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--navy-color);
}

.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.55); }

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.testimonial-stars i { color: #10B981; font-size: 0.9rem; }

.testimonial-quote {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

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

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1px;
}
.testimonial-country {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}

.testimonial-tour {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 72px 0;
}
.cta-section h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGINATION ===== */
.pagination { gap: 4px; }
.page-link {
    border: none;
    border-radius: 8px;
    color: var(--dark-color);
    padding: 9px 14px;
}
.page-link:hover { background: var(--primary-color); color: white; }
.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== BADGES ===== */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== ALERTS ===== */
.alert {
    border-radius: 10px;
    border: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: var(--primary-dark); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-warning { color: var(--primary-color) !important; }
.bg-primary-light { background-color: var(--primary-light); }
.bg-light { background-color: var(--light-bg) !important; }
.section-padding { padding: 72px 0; }

.img-hover { overflow: hidden; }
.img-hover img { transition: transform 0.5s ease; }
.img-hover:hover img { transform: scale(1.08); }

/* Difficulty badges */
.difficulty-easy { background: #D1FAE5; color: #065F46; }
.difficulty-moderate { background: #FEF3C7; color: #92400E; }
.difficulty-hard { background: #FEE2E2; color: #991B1B; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--light-bg);
}
.newsletter-form .form-control {
    border-radius: 8px 0 0 8px;
    border-right: none;
}
.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 16px 20px;
        border-radius: 12px;
        margin-top: 12px;
        box-shadow: var(--shadow);
    }
    .hero-title { font-size: 2.2rem !important; }
    .section-title { font-size: 1.75rem !important; }
    .booking-fields-row,
    .booking-fields-row-2 { grid-template-columns: 1fr 1fr; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .booking-tabs-bar { flex-wrap: wrap; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.75rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .footer { text-align: center; }
    .footer-contact li { justify-content: center; }
    .social-links { justify-content: center; }
    .section-header { flex-direction: column; gap: 8px; }
    .booking-fields-row,
    .booking-fields-row-2 { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.75rem; }
}
