:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --secondary: #134e4a;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

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

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fff;
    color: var(--gray-800);
    line-height: 1.6;
}

.catalog-header {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.catalog-header .navbar {
    padding: 0.75rem 0;
}

.catalog-header .navbar-brand {
    padding: 0;
}

.catalog-header .navbar-brand img {
    max-height: 42px;
    width: auto;
}

.catalog-header .brand-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.catalog-header .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

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

.hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 1.25rem;
    color: var(--gray-700);
    transition: color 0.2s;
}

.hamburger-btn:hover {
    color: var(--primary);
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-600);
    font-size: 1.125rem;
    transition: color 0.2s;
}

.nav-icon-btn:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
}

.mobile-menu {
    max-width: 320px;
}

.mobile-menu .offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.btn-close-menu {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0.5rem;
}

.btn-close-menu:hover {
    color: var(--gray-700);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--gray-400);
}

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

.mobile-menu-footer {
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    width: 100%;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.hero-section.affiliate-hero::before {
    display: none;
}

.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 450px;
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 350px;
    }
}

.hero-slider .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0;
    text-align: center;
}

.hero-slider .carousel-caption::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50%;
    right: -50%;
    bottom: -100px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
    z-index: -1;
}

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

.hero-slider .carousel-caption p {
    text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.5);
}

.hero-slider .carousel-indicators {
    bottom: 80px;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0.8;
}

.hero-slider .carousel-control-prev {
    left: 20px;
}

.hero-slider .carousel-control-next {
    right: 20px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.3);
}

.hero-search-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-search-overlay {
        padding: 1rem 0;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
}

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

@media (min-width: 576px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.package-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.package-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.package-badge.badge-group {
    background: var(--success);
    color: #fff;
}

.package-badge.badge-private {
    background: var(--info);
    color: #fff;
}

.package-badge.badge-promo {
    background: var(--danger);
    color: #fff;
}

.package-badge.badge-new {
    background: var(--accent);
    color: #fff;
}

.package-badge.badge-sold {
    background: var(--gray-600);
    color: #fff;
}

.package-trips-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.package-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
    color: var(--gray-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.package-location {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-location i {
    color: var(--primary);
    font-size: 0.75rem;
}

.package-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.package-highlights li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-highlights li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-meta i {
    color: var(--gray-400);
}

.package-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
}

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

.price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-value small {
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-book {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-book:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-book i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.btn-book:hover i {
    transform: translateX(3px);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: #fff;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.step.completed .step-number {
    background-color: var(--success);
    color: #fff;
}

.step-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--success);
}

.step-line {
    width: 80px;
    height: 3px;
    background-color: var(--gray-200);
    margin: 0 0.75rem;
    margin-bottom: 1.75rem;
    border-radius: 2px;
}

.step-line.active {
    background-color: var(--primary);
}

.step-line.completed {
    background-color: var(--success);
}

@media (max-width: 576px) {
    .step-line {
        width: 40px;
    }

    .step-label {
        display: none;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }
}

.catalog-footer {
    margin-top: auto;
    background: var(--gray-900);
    color: var(--gray-300);
}

.catalog-footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.catalog-footer a:hover {
    color: var(--primary-light);
}

.main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-thumb {
    transition: all 0.2s ease;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-thumb:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.form-check.card {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--gray-200);
    position: relative;
}

.form-check.card .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-check.card .form-check-label {
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 0;
}

.form-check.card:hover {
    border-color: var(--primary);
}

.form-check-input:checked + .form-check-label {
    color: var(--primary);
}

.form-check.card:has(.form-check-input:checked) {
    border-color: var(--primary);
    background-color: rgba(13, 148, 136, 0.04);
}

.form-check.card:has(.form-check-input:checked)::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--primary);
    font-size: 0.875rem;
}

.progress {
    border-radius: 50px;
    height: 8px;
    background: var(--gray-100);
}

.progress-bar {
    border-radius: 50px;
    background: var(--primary);
}

.alert {
    border: none;
    border-radius: 12px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
}

.alert-warning {
    background: #fffbeb;
    color: #92400e;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
}

.card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-100);
    padding: 1.25rem 1.5rem;
}

.btn {
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    transition: all 0.2s;
}

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

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

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

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

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.search-box {
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.search-box input,
.search-box input.form-control {
    border: none !important;
    padding: 12px 20px;
    font-size: 1rem;
    background: transparent !important;
    border-radius: 50px !important;
}

.search-box input:focus,
.search-box input.form-control:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    background: transparent !important;
}

.search-box .btn {
    padding: 12px 28px;
    border-radius: 50px;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.text-primary {
    color: var(--primary) !important;
}

.catalog-breadcrumb {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.catalog-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.catalog-breadcrumb .breadcrumb-item {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.catalog-breadcrumb .breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.catalog-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.catalog-breadcrumb .breadcrumb-item.active {
    color: var(--gray-800);
    font-weight: 500;
}

.catalog-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--gray-400);
    padding-right: 0.75rem;
}

.catalog-breadcrumb .breadcrumb-item i {
    margin-right: 0.375rem;
    font-size: 0.8125rem;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.filter-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.filter-header {
    background: var(--gray-50);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
}

.filter-header h5 {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.filter-section {
    padding: 1.25rem;
}

.filter-section:not(:last-child) {
    border-bottom: 1px solid var(--gray-100);
}

.filter-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.filter-title i {
    color: var(--primary);
    font-size: 0.8125rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.filter-option {
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s;
    margin: 0;
}

.filter-option:hover {
    background: var(--gray-50);
}

.filter-option .form-check-input {
    margin-top: 0;
    cursor: pointer;
}

.filter-option .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.filter-option .form-check-label {
    cursor: pointer;
    width: 100%;
}

.filter-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.filter-option:has(.form-check-input:checked) {
    background: rgba(13, 148, 136, 0.08);
}

.filter-option:has(.form-check-input:checked) .filter-label {
    color: var(--primary);
    font-weight: 500;
}

.filter-active {
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.active-filter-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--primary);
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.active-filter-tag:hover {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
}

.active-filter-tag i {
    font-size: 0.6875rem;
}

@media (max-width: 991.98px) {
    .filter-sidebar {
        display: none;
    }
}

#filterOffcanvas .filter-section {
    padding: 0;
}

#filterOffcanvas .filter-options {
    max-height: none;
}

.month-picker-wrapper {
    position: relative;
}

.flatpickr-month {
    cursor: pointer;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    font-weight: 500;
}

.flatpickr-month:focus {
    border-color: var(--primary);
    background: #fff;
}

.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.flatpickr-monthSelect-months {
    padding: 0.5rem;
}

.flatpickr-monthSelect-month {
    border-radius: 8px;
    font-weight: 500;
}

.flatpickr-monthSelect-month:hover {
    background: var(--gray-100);
}

.flatpickr-monthSelect-month.selected {
    background: var(--primary);
    color: #fff;
}

.month-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.month-btn {
    padding: 0.5rem 0.875rem;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.month-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.month-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.highlight-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-btn {
    padding: 0.375rem 0.75rem;
    border: 1.5px solid #d1fae5;
    background: #ecfdf5;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #059669;
    cursor: pointer;
    transition: all 0.2s;
}

.highlight-btn:hover {
    border-color: #10b981;
    background: #d1fae5;
}

.highlight-btn.active {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-btn {
    padding: 0.5rem 0.875rem;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.mobile-nav-divider {
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--gray-200);
}

.package-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: #fff;
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid var(--gray-200);
}

.category-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tag i {
    font-size: 0.65rem;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 4px;
}

.highlight-tag i {
    font-size: 0.6rem;
}

.package-image-link,
.package-title-link {
    text-decoration: none;
    color: inherit;
}

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

.trip-dates-section {
    margin-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
    padding-top: 0.75rem;
}

.trip-dates-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.trip-dates-header i {
    color: var(--primary);
}

.trip-dates-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.trip-date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.trip-date-item:hover {
    background: rgba(13, 148, 136, 0.08);
    border-color: var(--primary);
    text-decoration: none;
}

.trip-date-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trip-date {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-800);
}

.trip-date-item:hover .trip-date {
    color: var(--primary);
}

.trip-duration {
    font-size: 0.6875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.trip-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
}

.trip-price small {
    font-size: 0.6875rem;
    font-weight: 600;
}

.trip-date-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

.trip-date-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.trip-date-more i {
    font-size: 0.625rem;
    transition: transform 0.2s;
}

.trip-date-more:hover i {
    transform: translateX(3px);
}

.no-trips-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.no-trips-message i {
    color: var(--gray-400);
}

/* Member Price List Styles */
.member-price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-price-card {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.member-price-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.member-price-card.is-leader {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.03) 0%, rgba(13, 148, 136, 0.08) 100%);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.member-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.member-price-card.is-leader .member-avatar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.leader-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    border: 2px solid #fff;
}

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

.member-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.member-meta i {
    margin-right: 0.25rem;
}

.member-total {
    text-align: right;
    flex-shrink: 0;
}

.member-total .price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-total .price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.member-details {
    padding: 1rem 1.25rem;
}

.detail-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 140px;
}

.detail-item > i {
    font-size: 1rem;
    margin-top: 0.125rem;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.125rem;
}

.detail-value {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
}

.price-breakdown {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-bottom: 1px dashed var(--gray-200);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.grand-total-card {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    opacity: 0.85;
}

.total-amount {
    text-align: right;
}

.total-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.total-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.payment-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}

.payment-stat.paid {
    background: rgba(16, 185, 129, 0.15);
}

.payment-stat.paid i {
    color: #34d399;
}

.payment-stat.pending {
    background: rgba(245, 158, 11, 0.15);
}

.payment-stat.pending i {
    color: #fbbf24;
}

.payment-stat i {
    font-size: 1.5rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.stat-value {
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .member-header {
        flex-wrap: wrap;
    }

    .member-total {
        width: 100%;
        text-align: left;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px dashed var(--gray-200);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .grand-total-card .row {
        flex-direction: column;
        gap: 1rem;
    }

    .total-amount {
        text-align: left;
    }
}

/* Override - Professional Colors */
.grand-total-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.grand-total-card hr {
    border-color: var(--gray-300);
}

.grand-total-card .summary-row {
    color: var(--gray-600);
    opacity: 1;
}

.grand-total-card .total-label {
    color: var(--gray-500);
    opacity: 1;
}

.grand-total-card .total-value {
    color: var(--primary);
}

.payment-stat {
    background: #fff;
    border: 1px solid var(--gray-200);
}

.payment-stat.paid {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.payment-stat.paid i {
    color: #059669;
}

.payment-stat.paid .stat-value {
    color: #059669;
}

.payment-stat.pending {
    background: #fffbeb;
    border-color: #fde68a;
}

.payment-stat.pending i {
    color: #d97706;
}

.payment-stat.pending .stat-value {
    color: #d97706;
}

.stat-label {
    color: var(--gray-500);
    opacity: 1;
}

.stat-value {
    color: var(--gray-800);
}

/* Mobile Fix - Full Width Stats */
@media (max-width: 576px) {
    .grand-total-card .row > .col-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .grand-total-card .row > .col-6:first-child {
        margin-bottom: 0.75rem;
    }

    .payment-stat {
        justify-content: flex-start;
    }
}
