/**
 * Group Departures - Frontend Styles
 *
 * @package RoamEase_Pro
 * @since 2.5.0
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --gd-primary: #d4a855;
    --gd-primary-dark: #b8943f;
    --gd-secondary: #2c5530;
    --gd-success: #28a745;
    --gd-warning: #ffc107;
    --gd-danger: #dc3545;
    --gd-info: #17a2b8;
    --gd-text: #333;
    --gd-text-light: #666;
    --gd-border: #e5e5e5;
    --gd-bg-light: #f8f9fa;
    --gd-radius: 8px;
    --gd-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --gd-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Archive Pages - Hero Section
   ========================================================================== */
.group-departures-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--gd-secondary) 0%, #1a3a1d 100%);
    color: #fff;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.group-departures-hero.safari-hero {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
}

.group-departures-hero.mountain-hero {
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
}

.hero-overlay {
    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 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Archive Pages - Benefits Section
   ========================================================================== */
.group-departures-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.group-benefits {
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--gd-radius);
    box-shadow: var(--gd-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--gd-shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--gd-text);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Archive Pages - Filters
   ========================================================================== */
.departure-months-filter,
.mountain-filter {
    margin-bottom: 40px;
}

.departure-months-filter h2,
.mountain-filter h2,
.departures-list h2 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    color: var(--gd-text);
}

.months-grid,
.mountains-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.month-pill,
.mountain-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid var(--gd-border);
    border-radius: 30px;
    text-decoration: none;
    color: var(--gd-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.month-pill:hover,
.mountain-pill:hover,
.month-pill.current,
.mountain-pill.active {
    background: var(--gd-primary);
    border-color: var(--gd-primary);
    color: #fff;
}

.month-count {
    background: var(--gd-bg-light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.month-pill:hover .month-count,
.month-pill.current .month-count {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Archive Pages - Departures Grid
   ========================================================================== */
.departures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.month-header {
    grid-column: 1 / -1;
    padding: 20px 0 10px;
    border-bottom: 2px solid var(--gd-border);
    margin-bottom: 10px;
}

.month-header h3 {
    margin: 0;
    color: var(--gd-secondary);
    font-size: 1.3rem;
}

/* Departure Card */
.departure-card {
    background: #fff;
    border-radius: var(--gd-radius);
    overflow: hidden;
    box-shadow: var(--gd-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.departure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gd-shadow-lg);
}

.departure-card.limited {
    border: 2px solid var(--gd-warning);
}

.departure-card.full {
    opacity: 0.7;
}

.departure-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.departure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.departure-card:hover .departure-image img {
    transform: scale(1.05);
}

.departure-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gd-secondary) 0%, #1a3a1d 100%);
    color: rgba(255, 255, 255, 0.5);
}

.departure-image .no-image .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

/* Status Badges */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.guaranteed {
    background: var(--gd-success);
    color: #fff;
}

.status-badge.limited {
    background: var(--gd-warning);
    color: #333;
}

.status-badge.full {
    background: var(--gd-danger);
    color: #fff;
}

.route-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Departure Content */
.departure-content {
    padding: 20px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
    align-items: start;
}

.departure-date {
    text-align: center;
    background: var(--gd-bg-light);
    padding: 10px;
    border-radius: var(--gd-radius);
}

.departure-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gd-primary);
    line-height: 1;
}

.departure-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gd-text-light);
    margin-top: 3px;
}

.departure-details {
    grid-column: 2 / -1;
}

.departure-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    line-height: 1.3;
}

.departure-title a {
    color: var(--gd-text);
    text-decoration: none;
}

.departure-title a:hover {
    color: var(--gd-primary);
}

.departure-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
}

.meta-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: var(--gd-primary);
}

.meta-item.difficulty {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.meta-item.difficulty.easy { background: #d4edda; color: #155724; }
.meta-item.difficulty.moderate { background: #fff3cd; color: #856404; }
.meta-item.difficulty.challenging { background: #f8d7da; color: #721c24; }
.meta-item.difficulty.difficult { background: #721c24; color: #fff; }

.guide-info {
    font-size: 0.85rem;
    color: var(--gd-text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.guide-info .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Capacity Bar */
.departure-capacity,
.panel-availability {
    margin-bottom: 0;
}

.capacity-bar,
.availability-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.capacity-filled,
.bar-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--gd-success) 0%, var(--gd-primary) 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.capacity-text {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

/* Departure Pricing */
.departure-pricing {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gd-border);
    margin-top: 15px;
}

.price .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gd-primary);
}

.price .per-person {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.btn-book {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gd-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-book:hover {
    background: var(--gd-primary-dark);
    color: #fff;
}

.btn-book.disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* ==========================================================================
   Archive Pages - Pagination
   ========================================================================== */
.departures-pagination {
    margin-top: 50px;
    text-align: center;
}

.departures-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid var(--gd-border);
    border-radius: 5px;
    color: var(--gd-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.departures-pagination .page-numbers:hover,
.departures-pagination .page-numbers.current {
    background: var(--gd-primary);
    border-color: var(--gd-primary);
    color: #fff;
}

/* ==========================================================================
   Archive Pages - No Departures
   ========================================================================== */
.no-departures {
    text-align: center;
    padding: 60px 20px;
    background: var(--gd-bg-light);
    border-radius: var(--gd-radius);
}

.no-departures .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.no-departures h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.no-departures p {
    color: var(--gd-text-light);
    margin: 0 0 20px;
}

.btn-browse {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gd-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-browse:hover {
    background: #1a3a1d;
    color: #fff;
}

/* ==========================================================================
   Archive Pages - CTA Section
   ========================================================================== */
.group-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--gd-bg-light);
    border-radius: var(--gd-radius);
    margin: 50px 0;
}

.group-cta h2 {
    font-size: 1.75rem;
    margin: 0 0 15px;
}

.group-cta p {
    color: var(--gd-text-light);
    margin: 0 0 25px;
    font-size: 1.1rem;
}

.btn-contact {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gd-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: var(--gd-primary-dark);
    color: #fff;
}

/* ==========================================================================
   Archive Pages - Climbing Tips
   ========================================================================== */
.climbing-tips {
    margin: 50px 0;
}

.climbing-tips h2 {
    text-align: center;
    margin-bottom: 30px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--gd-radius);
    box-shadow: var(--gd-shadow);
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.tip-card h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.tip-card p {
    margin: 0;
    color: var(--gd-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   Single Pages - Hero
   ========================================================================== */
.roamease-single-departure .departure-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.roamease-single-departure .hero-gallery,
.roamease-single-departure .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.roamease-single-departure .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roamease-single-departure .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.roamease-single-departure .hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

.roamease-single-departure .breadcrumbs {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.roamease-single-departure .breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.roamease-single-departure .breadcrumbs a:hover {
    color: #fff;
}

.roamease-single-departure .breadcrumbs .separator {
    margin: 0 10px;
    opacity: 0.5;
}

.roamease-single-departure .departure-title {
    font-size: 2.5rem;
    margin: 0 0 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.departure-badge,
.route-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 10px;
}

.departure-badge.guaranteed {
    background: var(--gd-success);
}

.roamease-single-departure .route-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* ==========================================================================
   Single Pages - Content Layout
   ========================================================================== */
.departure-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 10;
}

.departure-main {
    background: #fff;
    border-radius: var(--gd-radius);
    box-shadow: var(--gd-shadow);
    padding: 30px;
}

/* Quick Info Bar */
.quick-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: var(--gd-bg-light);
    border-radius: var(--gd-radius);
    margin-bottom: 30px;
}

.quick-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}

.quick-info-bar .info-item .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--gd-primary);
}

.quick-info-bar .info-text .label {
    display: block;
    font-size: 0.75rem;
    color: var(--gd-text-light);
    text-transform: uppercase;
}

.quick-info-bar .info-text .value {
    display: block;
    font-weight: 600;
    color: var(--gd-text);
}

.quick-info-bar .spots-info.limited .value {
    color: var(--gd-danger);
}

/* Expedition Leader */
.expedition-leader {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(44, 85, 48, 0.05) 100%);
    border-radius: var(--gd-radius);
    margin-bottom: 25px;
    border-left: 4px solid var(--gd-secondary);
}

.leader-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.leader-icon {
    font-size: 2rem;
}

.leader-details .label {
    display: block;
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.leader-details .name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gd-secondary);
}

/* ==========================================================================
   Single Pages - Tabs
   ========================================================================== */
.departure-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-bottom: 2px solid var(--gd-border);
    margin-bottom: 25px;
}

.tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gd-text-light);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--gd-primary);
}

.tab-btn.active {
    color: var(--gd-primary);
    border-bottom-color: var(--gd-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tab Content Sections */
.tab-content h3 {
    font-size: 1.3rem;
    margin: 0 0 20px;
    color: var(--gd-text);
}

.destinations-visited {
    margin-bottom: 30px;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.destination-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: var(--gd-bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
}

.destination-tag .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--gd-primary);
}

/* Tour/Mountain Description */
.tour-description,
.mountain-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.tour-description p,
.mountain-description p {
    margin-bottom: 15px;
}

/* Mountain Stats */
.mountain-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--gd-bg-light);
    border-radius: var(--gd-radius);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gd-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gd-text-light);
    text-transform: uppercase;
}

/* Best Season Box */
.best-season-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-radius: var(--gd-radius);
    border-left: 4px solid var(--gd-warning);
    margin-bottom: 30px;
}

.best-season-box .icon {
    font-size: 2rem;
}

.best-season-box strong {
    display: block;
    margin-bottom: 5px;
}

.best-season-box p {
    margin: 0;
    color: var(--gd-text-light);
}

/* Group Benefits */
.group-benefits-section {
    background: var(--gd-bg-light);
    padding: 25px;
    border-radius: var(--gd-radius);
    margin-bottom: 30px;
}

.group-benefits-section h3 {
    margin-bottom: 20px;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefits-list .benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefits-list .benefit .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-list .benefit strong {
    display: block;
    margin-bottom: 5px;
}

.benefits-list .benefit p {
    margin: 0;
    color: var(--gd-text-light);
    font-size: 0.9rem;
}

/* Inclusions Grid */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.inclusions-box {
    padding: 25px;
    border-radius: var(--gd-radius);
}

.inclusions-box.included {
    background: #d4edda;
}

.inclusions-box.excluded {
    background: #f8d7da;
}

.inclusions-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.inclusions-box.included h3 .dashicons {
    color: var(--gd-success);
}

.inclusions-box.excluded h3 .dashicons {
    color: var(--gd-danger);
}

.inclusions-list ul,
.exclusions-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li,
.exclusions-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.inclusions-list li:last-child,
.exclusions-list li:last-child {
    border-bottom: none;
}

/* Itinerary */
.itinerary-content {
    line-height: 1.7;
}

.route-overview {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gd-border);
}

.route-description {
    color: var(--gd-text-light);
}

/* Gear List */
.gear-list-content {
    margin-bottom: 20px;
}

.gear-note {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #e7f3ff;
    border-radius: var(--gd-radius);
    border-left: 4px solid var(--gd-info);
}

.gear-note .icon {
    font-size: 1.5rem;
}

.gear-note p {
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery */
.departure-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--gd-radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Fitness Requirements */
.fitness-requirements {
    background: #fff5e6;
    padding: 25px;
    border-radius: var(--gd-radius);
    margin: 30px 0;
    border-left: 4px solid #ff9800;
}

.fitness-requirements h3 {
    margin-top: 0;
}

.fitness-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.fitness-requirements li {
    margin-bottom: 8px;
}

/* View Full Tour Link */
.view-full-tour {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gd-border);
    text-align: center;
}

.btn-view-tour {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--gd-secondary);
    color: var(--gd-secondary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-tour:hover {
    background: var(--gd-secondary);
    color: #fff;
}

/* ==========================================================================
   Single Pages - Booking Sidebar
   ========================================================================== */
.departure-sidebar {
    position: relative;
}

.booking-panel {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: var(--gd-radius);
    box-shadow: var(--gd-shadow-lg);
    padding: 25px;
}

.booking-panel.disabled {
    opacity: 0.9;
}

/* Panel Price */
.panel-price {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gd-border);
    margin-bottom: 20px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gd-primary);
}

.price-per {
    color: var(--gd-text-light);
    font-size: 0.9rem;
}

/* Panel Availability */
.panel-availability {
    margin-bottom: 20px;
}

.availability-text {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 8px;
}

.status-full {
    color: var(--gd-danger);
    font-weight: 600;
}

.status-limited {
    color: #e65100;
    font-weight: 600;
}

.status-available {
    color: var(--gd-text-light);
}

/* Panel Info */
.panel-info {
    background: var(--gd-bg-light);
    padding: 15px;
    border-radius: var(--gd-radius);
    margin-bottom: 20px;
}

.panel-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-info .info-row:last-child {
    border-bottom: none;
}

.panel-info .label {
    color: var(--gd-text-light);
    font-size: 0.9rem;
}

.panel-info .value {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==========================================================================
   Single Pages - Booking Form
   ========================================================================== */
.booking-form-wrapper h4 {
    text-align: center;
    margin: 0 0 20px;
    color: var(--gd-text);
}

.group-booking-form .form-group {
    margin-bottom: 18px;
}

.group-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gd-text);
}

.group-booking-form input[type="text"],
.group-booking-form input[type="email"],
.group-booking-form input[type="tel"],
.group-booking-form select,
.group-booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gd-border);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.group-booking-form input:focus,
.group-booking-form select:focus,
.group-booking-form textarea:focus {
    outline: none;
    border-color: var(--gd-primary);
    box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.15);
}

.group-booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Booking Summary */
.booking-summary {
    background: var(--gd-bg-light);
    padding: 15px;
    border-radius: var(--gd-radius);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid var(--gd-border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1rem;
}

.summary-row.deposit {
    color: var(--gd-primary);
    font-weight: 600;
}

/* Form Terms */
.form-terms {
    margin-bottom: 15px;
}

.form-terms label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: normal;
    cursor: pointer;
}

.form-terms input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.form-terms a {
    color: var(--gd-primary);
}

/* Submit Button */
.btn-submit-booking {
    width: 100%;
    padding: 15px 25px;
    background: var(--gd-primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.btn-submit-booking:hover {
    background: var(--gd-primary-dark);
}

.btn-submit-booking:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-submit-booking .btn-loading {
    display: none;
}

.btn-submit-booking.loading .btn-text {
    display: none;
}

.btn-submit-booking.loading .btn-loading {
    display: inline;
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gd-text-light);
    margin: 15px 0 0;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 30px 20px;
}

.booking-success .success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gd-success);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.booking-success h4 {
    color: var(--gd-success);
    margin: 0 0 10px;
}

.booking-success p {
    color: var(--gd-text-light);
    margin: 0 0 15px;
}

.booking-ref {
    background: var(--gd-bg-light);
    padding: 10px;
    border-radius: 5px;
}

/* Booking Closed */
.booking-closed {
    text-align: center;
    padding: 30px 20px;
    background: var(--gd-bg-light);
    border-radius: var(--gd-radius);
}

.closed-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.booking-closed p {
    color: var(--gd-text-light);
    margin: 0 0 20px;
}

.btn-view-others {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gd-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-view-others:hover {
    background: #1a3a1d;
    color: #fff;
}

/* Panel Contact */
.panel-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gd-border);
    margin-top: 20px;
}

.panel-contact p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0 0 10px;
}

.panel-contact .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gd-border);
    color: var(--gd-text);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.panel-contact .btn-contact:hover {
    background: var(--gd-bg-light);
    border-color: var(--gd-primary);
    color: var(--gd-primary);
}

/* ==========================================================================
   Single Pages - Other Departures
   ========================================================================== */
.other-departures {
    background: var(--gd-bg-light);
    padding: 60px 0;
    margin-top: 60px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.other-departures h2 {
    text-align: center;
    margin-bottom: 30px;
}

.departures-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.departure-slide {
    background: #fff;
    border-radius: var(--gd-radius);
    overflow: hidden;
    box-shadow: var(--gd-shadow);
}

.slide-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-image .route-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 3px;
    font-size: 0.75rem;
}

.slide-content {
    padding: 20px;
}

.slide-date {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gd-primary);
    color: #fff;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.slide-content h3 {
    font-size: 1rem;
    margin: 0 0 10px;
    line-height: 1.3;
}

.slide-content h3 a {
    color: var(--gd-text);
    text-decoration: none;
}

.slide-content h3 a:hover {
    color: var(--gd-primary);
}

.slide-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.slide-meta .price {
    font-weight: 600;
    color: var(--gd-primary);
}

.slide-meta .spots {
    color: var(--gd-text-light);
}

.btn-view-all {
    display: block;
    text-align: center;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--gd-primary);
    color: var(--gd-primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--gd-primary);
    color: #fff;
}

/* ==========================================================================
   NEW Professional Single Group Departure Styles (v2.5.0)
   ========================================================================== */

/* Page Container */
.sgd-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.sgd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.sgd-hero {
    position: relative;
    height: 65vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.sgd-hero__slider {
    position: absolute;
    inset: 0;
}

.sgd-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.sgd-hero__slide.active {
    opacity: 1;
}

.sgd-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgd-hero__placeholder {
    background: linear-gradient(135deg, #2c5530 0%, #1a3520 100%);
}

.sgd-hero__placeholder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sgd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.sgd-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0 50px;
    color: #fff;
}

/* Breadcrumbs */
.sgd-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.sgd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.sgd-breadcrumbs a:hover {
    color: #fff;
}

.sgd-breadcrumbs__sep {
    opacity: 0.5;
}

.sgd-breadcrumbs__current {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Titles */
.sgd-hero__titles {
    margin-bottom: 30px;
}

.sgd-hero__tour-type {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 168, 85, 0.9);
    color: #fff;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sgd-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Badges */
.sgd-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sgd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sgd-badge svg {
    flex-shrink: 0;
}

.sgd-badge--guaranteed {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.sgd-badge--soldout {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.sgd-badge--limited {
    background: rgba(230, 81, 0, 0.9);
    color: #fff;
    animation: pulse 2s infinite;
}

.sgd-badge--earlybird {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Stats */
.sgd-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sgd-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sgd-hero__stat-icon {
    color: var(--gd-primary);
    margin-bottom: 6px;
}

.sgd-hero__stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.sgd-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Navigation */
.sgd-hero__nav {
    position: absolute;
    bottom: 20px;
    right: 24px;
    display: flex;
    gap: 8px;
}

.sgd-hero__nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.sgd-hero__nav-dot:hover,
.sgd-hero__nav-dot.active {
    background: #fff;
    border-color: #fff;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.sgd-main {
    padding: 50px 0 80px;
}

.sgd-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.sgd-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================================================
   Countdown Banner
   ========================================================================== */
.sgd-countdown {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gd-warning);
}

.sgd-countdown__icon {
    color: #f59e0b;
}

.sgd-countdown__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sgd-countdown__text strong {
    color: #92400e;
    font-size: 1.05rem;
}

.sgd-countdown__text span {
    color: #78716c;
    font-size: 0.9rem;
}

/* ==========================================================================
   Card Styles
   ========================================================================== */
.sgd-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.sgd-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.sgd-card__title svg {
    color: var(--gd-primary);
    flex-shrink: 0;
}

/* Departure Info Card */
.sgd-departure-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sgd-departure-info__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sgd-departure-info__label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sgd-departure-info__value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Destinations Card */
.sgd-destinations__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sgd-destinations__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.2s;
}

.sgd-destinations__item:hover {
    background: #f3f4f6;
}

.sgd-destinations__item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.sgd-destinations__item-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sgd-destinations__item span {
    font-weight: 500;
    color: #374151;
}

/* Highlights Card */
.sgd-highlights__content {
    line-height: 1.8;
    color: #4b5563;
}

.sgd-highlights__content ul {
    padding-left: 20px;
    margin: 0;
}

.sgd-highlights__content li {
    margin-bottom: 10px;
}

/* About Card */
.sgd-about__content {
    line-height: 1.8;
    color: #4b5563;
}

.sgd-about__content p {
    margin-bottom: 16px;
}

.sgd-about__content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Itinerary Timeline
   ========================================================================== */
.sgd-itinerary__timeline {
    position: relative;
    padding-left: 40px;
}

.sgd-itinerary__timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gd-primary), #e5e7eb);
}

.sgd-itinerary__day {
    position: relative;
    padding-bottom: 28px;
}

.sgd-itinerary__day:last-child {
    padding-bottom: 0;
}

.sgd-itinerary__day-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: var(--gd-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 168, 85, 0.4);
}

.sgd-itinerary__day-num {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.sgd-itinerary__day-content {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
}

.sgd-itinerary__day-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px;
}

.sgd-itinerary__day-desc {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.sgd-itinerary__day-desc:last-child {
    margin-bottom: 0;
}

.sgd-itinerary__day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.sgd-itinerary__day-meals,
.sgd-itinerary__day-accom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6b7280;
}

.sgd-itinerary__day-meals svg,
.sgd-itinerary__day-accom svg {
    color: var(--gd-primary);
}

/* ==========================================================================
   Inclusions Card
   ========================================================================== */
.sgd-inclusions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sgd-inclusions__col {
    padding: 20px;
    border-radius: 12px;
}

.sgd-inclusions__col--included {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.sgd-inclusions__col--excluded {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.sgd-inclusions__col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.sgd-inclusions__col--included h4 {
    color: #047857;
}

.sgd-inclusions__col--included h4 svg {
    color: #10b981;
}

.sgd-inclusions__col--excluded h4 {
    color: #b91c1c;
}

.sgd-inclusions__col--excluded h4 svg {
    color: #ef4444;
}

.sgd-inclusions__list {
    color: #374151;
    line-height: 1.7;
}

.sgd-inclusions__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sgd-inclusions__list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.sgd-inclusions__list li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Gallery Card
   ========================================================================== */
.sgd-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sgd-gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.sgd-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sgd-gallery__item:hover img {
    transform: scale(1.1);
}

.sgd-gallery__zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.sgd-gallery__item:hover .sgd-gallery__zoom {
    opacity: 1;
}

/* ==========================================================================
   Benefits Card
   ========================================================================== */
.sgd-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sgd-benefits__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s;
}

.sgd-benefits__item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.sgd-benefits__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
}

.sgd-benefits__item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px;
}

.sgd-benefits__item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   View Tour Link
   ========================================================================== */
.sgd-view-tour {
    text-align: center;
}

.sgd-view-tour__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--gd-secondary);
    color: var(--gd-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.sgd-view-tour__btn:hover {
    background: var(--gd-secondary);
    color: #fff;
}

/* ==========================================================================
   Booking Sidebar
   ========================================================================== */
.sgd-sidebar {
    position: sticky;
    top: 100px;
}

.sgd-booking-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sgd-booking-card--disabled {
    opacity: 0.95;
}

/* Price Display */
.sgd-booking-card__price {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.sgd-booking-card__price-old {
    display: block;
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.sgd-booking-card__price-current {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gd-primary);
    line-height: 1.2;
}

.sgd-booking-card__price-per {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Early Bird Banner */
.sgd-booking-card__early-bird {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fef3c7;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
}

/* Availability Bar */
.sgd-booking-card__availability {
    margin-bottom: 20px;
}

.sgd-booking-card__availability-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.sgd-booking-card__availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gd-success) 0%, var(--gd-primary) 100%);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.sgd-booking-card__availability-text {
    text-align: center;
    margin-top: 8px;
    font-size: 0.85rem;
}

.sgd-booking-card__availability--sold {
    color: #dc2626;
    font-weight: 600;
}

.sgd-booking-card__availability--limited {
    color: #ea580c;
    font-weight: 600;
}

/* Trip Summary */
.sgd-booking-card__summary {
    background: #f9fafb;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sgd-booking-card__summary-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.sgd-booking-card__summary-row:last-child {
    border-bottom: none;
}

.sgd-booking-card__summary-icon {
    color: var(--gd-primary);
    flex-shrink: 0;
}

.sgd-booking-card__summary-label {
    flex: 1;
    font-size: 0.9rem;
    color: #6b7280;
}

.sgd-booking-card__summary-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

/* Booking Form */
.sgd-booking-form {
    margin-bottom: 20px;
}

.sgd-booking-form__group {
    margin-bottom: 16px;
}

.sgd-booking-form__group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.sgd-booking-form__group input,
.sgd-booking-form__group select,
.sgd-booking-form__group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #fff;
}

.sgd-booking-form__group input:focus,
.sgd-booking-form__group select:focus,
.sgd-booking-form__group textarea:focus {
    outline: none;
    border-color: var(--gd-primary);
    box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.15);
}

.sgd-booking-form__group input::placeholder,
.sgd-booking-form__group textarea::placeholder {
    color: #9ca3af;
}

.sgd-booking-form__group textarea {
    resize: vertical;
    min-height: 70px;
}

/* Price Calculator */
.sgd-booking-form__calculator {
    background: #f9fafb;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.sgd-booking-form__calc-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.sgd-booking-form__calc-total {
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.sgd-booking-form__calc-deposit {
    color: var(--gd-primary);
    font-weight: 600;
}

/* Terms Checkbox */
.sgd-booking-form__terms {
    margin-bottom: 16px;
}

.sgd-booking-form__terms label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
}

.sgd-booking-form__terms input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gd-primary);
}

.sgd-booking-form__terms a {
    color: var(--gd-primary);
    text-decoration: underline;
}

/* Submit Button */
.sgd-booking-form__submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 168, 85, 0.3);
}

.sgd-booking-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 85, 0.4);
}

.sgd-booking-form__submit:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sgd-booking-form__submit-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sgd-booking-form__submit.loading .sgd-booking-form__submit-text {
    display: none;
}

.sgd-booking-form__submit.loading .sgd-booking-form__submit-loading {
    display: inline-flex;
}

.sgd-spinner {
    animation: spin 1s linear infinite;
}

.sgd-spinner circle {
    stroke-dasharray: 80;
    stroke-dashoffset: 60;
    stroke-linecap: round;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Booking Note */
.sgd-booking-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6b7280;
}

.sgd-booking-form__note svg {
    color: var(--gd-success);
}

/* Success Message */
.sgd-booking-success {
    text-align: center;
    padding: 30px 20px;
}

.sgd-booking-success__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sgd-booking-success h4 {
    font-size: 1.25rem;
    color: #059669;
    margin: 0 0 10px;
}

.sgd-booking-success p {
    color: #6b7280;
    margin: 0 0 12px;
}

.sgd-booking-success__ref {
    background: #f3f4f6;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Booking Closed */
.sgd-booking-closed {
    text-align: center;
    padding: 30px 20px;
}

.sgd-booking-closed__icon {
    color: #9ca3af;
    margin-bottom: 16px;
}

.sgd-booking-closed p {
    color: #6b7280;
    margin: 0 0 20px;
}

.sgd-booking-closed__btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gd-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.sgd-booking-closed__btn:hover {
    background: #1a3a1d;
    color: #fff;
}

/* Contact Section */
.sgd-booking-card__contact {
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
    margin-top: 20px;
    text-align: center;
}

.sgd-booking-card__contact p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 12px;
}

.sgd-booking-card__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.sgd-booking-card__contact-btn:hover {
    background: #f9fafb;
    border-color: var(--gd-primary);
    color: var(--gd-primary);
}

/* ==========================================================================
   Trust Badges
   ========================================================================== */
.sgd-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.sgd-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.sgd-trust__item svg {
    color: var(--gd-success);
}

/* ==========================================================================
   Related Departures Section
   ========================================================================== */
.sgd-related {
    background: #fff;
    padding: 60px 0;
    margin-top: 0;
}

.sgd-related__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 40px;
}

.sgd-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sgd-related__card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s;
}

.sgd-related__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sgd-related__card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sgd-related__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sgd-related__card:hover .sgd-related__card-image img {
    transform: scale(1.05);
}

.sgd-related__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gd-secondary) 0%, #1a3520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sgd-related__card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: rgba(234, 88, 12, 0.9);
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sgd-related__card-content {
    padding: 20px;
}

.sgd-related__card-date {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gd-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.sgd-related__card-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px;
    line-height: 1.4;
}

.sgd-related__card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.sgd-related__card-price {
    font-weight: 700;
    color: var(--gd-primary);
}

.sgd-related__more {
    text-align: center;
}

.sgd-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.sgd-btn--outline {
    background: transparent;
    border: 2px solid var(--gd-primary);
    color: var(--gd-primary);
}

.sgd-btn--outline:hover {
    background: var(--gd-primary);
    color: #fff;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .sgd-layout {
        grid-template-columns: 1fr;
    }
    
    .sgd-sidebar {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .sgd-hero__title {
        font-size: 2.2rem;
    }
    
    .sgd-departure-info__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sgd-inclusions__grid {
        grid-template-columns: 1fr;
    }
    
    .sgd-benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .sgd-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sgd-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .sgd-hero__title {
        font-size: 1.8rem;
    }
    
    .sgd-hero__stats {
        gap: 20px;
    }
    
    .sgd-hero__content {
        padding: 40px 0 30px;
    }
    
    .sgd-container {
        padding: 0 16px;
    }
    
    .sgd-main {
        padding: 30px 0 60px;
    }
    
    .sgd-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .sgd-departure-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sgd-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sgd-related__grid {
        grid-template-columns: 1fr;
    }
    
    .sgd-trust {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .sgd-hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .sgd-hero__title {
        font-size: 1.5rem;
    }
    
    .sgd-breadcrumbs {
        font-size: 0.8rem;
    }
    
    .sgd-hero__stats {
        gap: 16px;
    }
    
    .sgd-hero__stat-value {
        font-size: 1rem;
    }
    
    .sgd-card {
        padding: 16px;
    }
    
    .sgd-card__title {
        font-size: 1.1rem;
    }
    
    .sgd-departure-info__grid {
        grid-template-columns: 1fr;
    }
    
    .sgd-itinerary__timeline {
        padding-left: 30px;
    }
    
    .sgd-itinerary__day-marker {
        left: -30px;
        width: 26px;
        height: 26px;
    }
    
    .sgd-itinerary__day-num {
        font-size: 0.75rem;
    }
    
    .sgd-gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .sgd-booking-card {
        padding: 20px;
    }
    
    .sgd-booking-card__price-current {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .departure-content-wrapper {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
    
    .departure-sidebar {
        order: -1;
    }
    
    .booking-panel {
        position: relative;
        top: 0;
    }
    
    .departures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mountain-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .departure-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .departures-grid {
        grid-template-columns: 1fr;
    }
    
    .departure-content {
        grid-template-columns: 1fr;
    }
    
    .departure-date {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .departure-date .day,
    .departure-date .month {
        display: inline;
    }
    
    .quick-info-bar {
        flex-direction: column;
    }
    
    .quick-info-bar .info-item {
        min-width: 100%;
    }
    
    .departure-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    
    .tab-btn {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .mountain-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departures-slider {
        grid-template-columns: 1fr;
    }
    
    .roamease-single-departure .departure-hero {
        height: 350px;
    }
    
    .roamease-single-departure .departure-title {
        font-size: 1.75rem;
    }
    
    .roamease-single-departure .hero-overlay {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .group-departures-hero {
        min-height: 300px;
        padding: 40px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .group-departures-container {
        padding: 0 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .departure-pricing {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-book {
        width: 100%;
    }
    
    .booking-panel {
        padding: 20px 15px;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .group-booking-form input,
    .group-booking-form select,
    .group-booking-form textarea {
        padding: 10px 12px;
    }
    
    .departure-content-wrapper {
        padding: 0 15px 40px;
    }
    
    .departure-main {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   Admin Notification Badge Styles (for menu)
   ========================================================================== */
.roamease-booking-count {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 1px 0 -1px 5px;
    padding: 0 5px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background-color: #d54e21;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

/* ==========================================================================
   Professional Archive Page Styles (sga- prefix)
   ========================================================================== */

/* Archive Page Container */
.sga-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Archive Hero Section */
.sga-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sga-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #4a2c17 100%);
}

.sga-hero__overlay {
    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%3Cpath d='M30 30m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 30px 30px;
}

.sga-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.sga-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sga-hero__label svg {
    opacity: 0.9;
}

.sga-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.sga-hero__subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.sga-hero__stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.sga-hero__stat {
    text-align: center;
}

.sga-hero__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gd-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sga-hero__stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section */
.sga-benefits {
    margin: -60px auto 50px;
    position: relative;
    z-index: 10;
}

.sga-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sga-benefits__item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sga-benefits__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sga-benefits__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0e6d3 0%, #e8dcc6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8B4513;
}

.sga-benefits__item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 10px;
}

.sga-benefits__item p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Month Filter Section */
.sga-filter {
    margin-bottom: 40px;
}

.sga-filter__header {
    margin-bottom: 20px;
}

.sga-filter__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
}

.sga-filter__title svg {
    color: var(--gd-primary);
}

.sga-filter__months {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sga-filter__pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid var(--gd-border);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gd-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sga-filter__pill:hover {
    border-color: var(--gd-primary);
    color: var(--gd-primary);
    text-decoration: none;
}

.sga-filter__pill.active {
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    border-color: var(--gd-primary);
    color: #fff;
}

.sga-filter__pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sga-filter__pill.active .sga-filter__pill-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Departures Section */
.sga-departures {
    margin-bottom: 60px;
}

.sga-departures__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sga-departures__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
}

.sga-departures__count {
    background: var(--gd-bg-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gd-text-light);
    font-weight: 500;
}

/* Departures Grid */
.sga-departures__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Month Header */
.sga-month-header {
    grid-column: 1 / -1;
    padding: 20px 0 10px;
    border-bottom: 2px solid var(--gd-border);
    margin-bottom: 10px;
}

.sga-month-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sga-month-header h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--gd-primary);
    border-radius: 2px;
}

/* Departure Card */
.sga-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.sga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sga-card--limited {
    border: 2px solid #ff9800;
}

.sga-card--full {
    opacity: 0.7;
}

.sga-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sga-card__link:hover {
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.sga-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sga-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sga-card:hover .sga-card__image img {
    transform: scale(1.08);
}

.sga-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Badges */
.sga-card__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sga-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sga-card__badge--guaranteed {
    background: var(--gd-success);
    color: #fff;
}

.sga-card__badge--limited {
    background: #ff9800;
    color: #fff;
    animation: pulse 2s infinite;
}

.sga-card__badge--full {
    background: var(--gd-danger);
    color: #fff;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Date Tag */
.sga-card__date-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sga-card__date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gd-primary-dark);
    line-height: 1;
}

.sga-card__date-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gd-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content */
.sga-card__content {
    padding: 20px;
}

.sga-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sga-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.sga-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
}

.sga-card__meta-item svg {
    color: var(--gd-primary);
    flex-shrink: 0;
}

/* Availability Bar */
.sga-card__availability {
    margin-bottom: 15px;
}

.sga-card__availability-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.sga-card__availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gd-success) 0%, #2ecc71 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.sga-card--limited .sga-card__availability-fill {
    background: linear-gradient(90deg, #ff9800 0%, #ffb74d 100%);
}

.sga-card--full .sga-card__availability-fill {
    background: linear-gradient(90deg, var(--gd-danger) 0%, #e57373 100%);
}

.sga-card__availability-text {
    font-size: 0.75rem;
    color: var(--gd-text-light);
}

/* Card Footer */
.sga-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--gd-border);
}

.sga-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.sga-card__price-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gd-primary-dark);
}

.sga-card__price-per {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.sga-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gd-primary);
    transition: all 0.2s ease;
}

.sga-card:hover .sga-card__cta {
    gap: 8px;
}

.sga-card__cta svg {
    transition: transform 0.2s ease;
}

.sga-card:hover .sga-card__cta svg {
    transform: translateX(3px);
}

/* Pagination */
.sga-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.sga-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--gd-border);
    border-radius: 10px;
    font-weight: 500;
    color: var(--gd-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sga-pagination .page-numbers:hover {
    border-color: var(--gd-primary);
    color: var(--gd-primary);
}

.sga-pagination .page-numbers.current {
    background: var(--gd-primary);
    border-color: var(--gd-primary);
    color: #fff;
}

.sga-pagination .page-numbers.prev,
.sga-pagination .page-numbers.next {
    background: var(--gd-primary);
    border-color: var(--gd-primary);
    color: #fff;
}

.sga-pagination .page-numbers.prev:hover,
.sga-pagination .page-numbers.next:hover {
    background: var(--gd-primary-dark);
    border-color: var(--gd-primary-dark);
}

/* Empty State */
.sga-empty {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--gd-shadow);
}

.sga-empty__icon {
    width: 100px;
    height: 100px;
    background: var(--gd-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gd-text-light);
}

.sga-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 15px;
}

.sga-empty p {
    font-size: 1rem;
    color: var(--gd-text-light);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.sga-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sga-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 168, 85, 0.4);
    color: #fff;
    text-decoration: none;
}

/* CTA Section */
.sga-cta {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.sga-cta::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%3Cpath d='M30 30m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}

.sga-cta__content {
    position: relative;
    z-index: 1;
}

.sga-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
}

.sga-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.sga-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #fff;
    color: #8B4513;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sga-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #8B4513;
    text-decoration: none;
}

/* ==========================================================================
   Archive Page Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .sga-hero__title {
        font-size: 2.5rem;
    }
    
    .sga-hero__stats {
        gap: 30px;
    }
    
    .sga-hero__stat-value {
        font-size: 2rem;
    }
    
    .sga-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sga-departures__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sga-hero {
        min-height: 380px;
    }
    
    .sga-hero__content {
        padding: 40px 20px;
    }
    
    .sga-hero__label {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .sga-hero__title {
        font-size: 2rem;
    }
    
    .sga-hero__subtitle {
        font-size: 1rem;
    }
    
    .sga-hero__stats {
        gap: 25px;
    }
    
    .sga-hero__stat-value {
        font-size: 1.8rem;
    }
    
    .sga-hero__stat-label {
        font-size: 0.8rem;
    }
    
    .sga-benefits {
        margin-top: -40px;
    }
    
    .sga-benefits__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sga-benefits__item {
        padding: 20px;
    }
    
    .sga-benefits__icon {
        width: 55px;
        height: 55px;
    }
    
    .sga-benefits__icon svg {
        width: 26px;
        height: 26px;
    }
    
    .sga-filter__title {
        font-size: 1.1rem;
    }
    
    .sga-filter__pill {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .sga-departures__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .sga-departures__title {
        font-size: 1.3rem;
    }
    
    .sga-departures__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sga-card__image {
        height: 180px;
    }
    
    .sga-card__content {
        padding: 18px;
    }
    
    .sga-card__title {
        font-size: 1rem;
    }
    
    .sga-card__price-amount {
        font-size: 1.2rem;
    }
    
    .sga-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
    }
    
    .sga-cta {
        padding: 40px 25px;
        border-radius: 16px;
    }
    
    .sga-cta h2 {
        font-size: 1.5rem;
    }
    
    .sga-cta p {
        font-size: 1rem;
    }
    
    .sga-cta__btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sga-hero {
        min-height: 320px;
    }
    
    .sga-hero__title {
        font-size: 1.6rem;
    }
    
    .sga-hero__stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .sga-filter__months {
        gap: 8px;
    }
    
    .sga-filter__pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .sga-card__badges {
        top: 10px;
        left: 10px;
    }
    
    .sga-card__badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .sga-card__date-tag {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .sga-empty {
        padding: 50px 25px;
    }
    
    .sga-empty__icon {
        width: 80px;
        height: 80px;
    }
    
    .sga-empty h3 {
        font-size: 1.25rem;
    }
    
    .sga-empty p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Mountain Group Single Page Styles (mgd- prefix)
   ========================================================================== */

/* Page Container */
.mgd-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.mgd-hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.mgd-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mgd-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mgd-hero__slide.active {
    opacity: 1;
}

.mgd-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mgd-hero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mgd-hero__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.mgd-hero__nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.mgd-hero__nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mgd-hero__dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.mgd-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mgd-hero__dot.active {
    background: #fff;
    transform: scale(1.2);
}

.mgd-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.mgd-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 50px 0;
}

/* Breadcrumbs */
.mgd-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.mgd-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.mgd-breadcrumbs a:hover {
    color: #fff;
}

.mgd-breadcrumbs__sep {
    color: rgba(255, 255, 255, 0.5);
}

.mgd-breadcrumbs__current {
    color: var(--gd-primary);
}

/* Badges */
.mgd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.mgd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mgd-badge--guaranteed {
    background: var(--gd-success);
    color: #fff;
}

.mgd-badge--limited {
    background: #ff9800;
    color: #fff;
    animation: pulse 2s infinite;
}

.mgd-badge--earlybird {
    background: #9c27b0;
    color: #fff;
}

.mgd-badge--route {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
}

/* Hero Title */
.mgd-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Hero Stats */
.mgd-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.mgd-hero__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.mgd-hero__stat svg {
    color: var(--gd-primary);
}

.mgd-hero__stat span {
    display: flex;
    flex-direction: column;
}

.mgd-hero__stat strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.mgd-hero__stat small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Countdown Banner */
.mgd-countdown {
    background: linear-gradient(90deg, #2c5530 0%, #1a3a1d 100%);
    color: #fff;
    padding: 15px 0;
}

.mgd-countdown .sgd-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mgd-countdown__icon {
    display: flex;
    align-items: center;
    color: var(--gd-primary);
}

.mgd-countdown__text {
    font-size: 0.95rem;
}

.mgd-countdown__text strong {
    color: var(--gd-primary);
    margin-left: 8px;
}

/* Layout */
.mgd-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 40px 0;
}

.mgd-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mgd-sidebar {
    position: relative;
}

/* Cards */
.mgd-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.mgd-card__header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gd-border);
}

.mgd-card__header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
}

.mgd-card__header h2 svg {
    color: var(--gd-secondary);
}

.mgd-card__body {
    padding: 25px;
}

/* Details Grid */
.mgd-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mgd-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mgd-detail__label {
    font-size: 0.8rem;
    color: var(--gd-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mgd-detail__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gd-text);
}

/* Summit Stats */
.mgd-summit-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mgd-summit-stat {
    text-align: center;
    padding: 20px 15px;
    background: var(--gd-bg-light);
    border-radius: 12px;
}

.mgd-summit-stat__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
}

.mgd-summit-stat__icon.difficulty-easy {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}

.mgd-summit-stat__icon.difficulty-moderate {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
}

.mgd-summit-stat__icon.difficulty-challenging,
.mgd-summit-stat__icon.difficulty-difficult {
    background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
}

.mgd-summit-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gd-secondary);
    margin-bottom: 4px;
}

.mgd-summit-stat__label {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

/* Route Description */
.mgd-route-desc {
    color: var(--gd-text);
    line-height: 1.7;
}

/* About Content */
.mgd-about-content {
    color: var(--gd-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mgd-about-content p {
    margin-bottom: 15px;
}

/* Season Box */
.mgd-season-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.mgd-season-box__icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f57c00;
}

.mgd-season-box__content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gd-text);
    margin-bottom: 5px;
}

.mgd-season-box__content p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
}

/* Itinerary Timeline */
.mgd-itinerary-timeline {
    position: relative;
    padding-left: 40px;
}

.mgd-itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gd-secondary), var(--gd-primary));
    border-radius: 2px;
}

.mgd-itinerary-day {
    position: relative;
    padding-bottom: 30px;
}

.mgd-itinerary-day:last-child {
    padding-bottom: 0;
}

.mgd-itinerary-day__marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--gd-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.mgd-itinerary-day__number {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.mgd-itinerary-day__content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--gd-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mgd-itinerary-day__content:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mgd-itinerary-day__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-secondary);
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.mgd-itinerary-day__subtitle {
    font-weight: 500;
    color: var(--gd-text);
    font-size: 1rem;
}

.mgd-itinerary-day__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gd-border);
}

.mgd-itinerary-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
    background: var(--gd-bg-light);
    padding: 4px 10px;
    border-radius: 20px;
}

.mgd-itinerary-stat svg {
    color: var(--gd-secondary);
    flex-shrink: 0;
}

.mgd-itinerary-day__description {
    color: var(--gd-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.mgd-itinerary-day__description p {
    margin: 0 0 10px;
}

.mgd-itinerary-day__description p:last-child {
    margin-bottom: 0;
}

/* Itinerary Timeline Responsive */
@media (max-width: 768px) {
    .mgd-itinerary-timeline {
        padding-left: 30px;
    }
    
    .mgd-itinerary-timeline::before {
        left: 10px;
    }
    
    .mgd-itinerary-day__marker {
        left: -30px;
        width: 24px;
        height: 24px;
    }
    
    .mgd-itinerary-day__number {
        font-size: 0.75rem;
    }
    
    .mgd-itinerary-day__content {
        padding: 15px;
    }
    
    .mgd-itinerary-day__title {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .mgd-itinerary-day__stats {
        gap: 8px;
    }
    
    .mgd-itinerary-stat {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* Itinerary Content */
.mgd-itinerary-content {
    color: var(--gd-text);
    line-height: 1.8;
}

.mgd-itinerary-content h3,
.mgd-itinerary-content h4 {
    color: var(--gd-secondary);
    margin: 25px 0 10px;
}

.mgd-itinerary-content ul,
.mgd-itinerary-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.mgd-itinerary-content li {
    margin-bottom: 8px;
}

/* Inclusions Grid */
.mgd-inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mgd-inclusions-col {
    padding: 20px;
    border-radius: 12px;
}

.mgd-inclusions-col--included {
    background: #e8f5e9;
}

.mgd-inclusions-col--excluded {
    background: #ffebee;
}

.mgd-inclusions-col h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.mgd-inclusions-col--included h3 {
    color: #2e7d32;
}

.mgd-inclusions-col--excluded h3 {
    color: #c62828;
}

.mgd-inclusions-list,
.mgd-exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mgd-inclusions-list li,
.mgd-exclusions-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: var(--gd-text);
}

.mgd-inclusions-list li:last-child,
.mgd-exclusions-list li:last-child {
    border-bottom: none;
}

/* Gear Content */
.mgd-gear-content {
    color: var(--gd-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mgd-gear-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--gd-bg-light);
    border-radius: 10px;
}

.mgd-gear-note svg {
    flex-shrink: 0;
    color: var(--gd-info);
}

.mgd-gear-note p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
}

/* Gallery */
.mgd-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mgd-gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.mgd-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.mgd-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mgd-gallery__item:hover img {
    transform: scale(1.08);
}

.mgd-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.mgd-gallery__item:hover .mgd-gallery__overlay {
    opacity: 1;
}

/* Benefits Grid */
.mgd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mgd-benefit {
    text-align: center;
    padding: 25px 20px;
    background: var(--gd-bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mgd-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mgd-benefit__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
}

.mgd-benefit h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 8px;
}

.mgd-benefit p {
    font-size: 0.85rem;
    color: var(--gd-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Fitness Requirements */
.mgd-fitness-intro {
    font-size: 1rem;
    color: var(--gd-text);
    margin: 0 0 20px;
}

.mgd-fitness-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mgd-fitness-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gd-border);
    font-size: 0.95rem;
    color: var(--gd-text);
}

.mgd-fitness-list li:last-child {
    border-bottom: none;
}

.mgd-fitness-list li svg {
    flex-shrink: 0;
    color: var(--gd-success);
    margin-top: 2px;
}

/* View Mountain Link */
.mgd-view-mountain {
    text-align: center;
}

.mgd-view-mountain__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mgd-view-mountain__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Booking Card */
.mgd-booking-card {
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mgd-booking-card--disabled {
    opacity: 0.8;
}

.mgd-booking-card__price {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    color: #fff;
}

.mgd-booking-card__earlybird {
    margin-bottom: 10px;
}

.mgd-booking-card__earlybird-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mgd-booking-card__original {
    display: block;
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-top: 5px;
}

.mgd-booking-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.mgd-booking-card__per {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Availability */
.mgd-booking-card__availability {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gd-border);
}

.mgd-booking-card__availability-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.mgd-booking-card__availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gd-success) 0%, #2ecc71 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.mgd-booking-card__availability-text {
    text-align: center;
    font-size: 0.85rem;
}

.mgd-booking-card__availability-text .status-full {
    color: var(--gd-danger);
}

.mgd-booking-card__availability-text .status-limited {
    color: #ff9800;
    font-weight: 600;
}

.mgd-booking-card__availability-text .status-available {
    color: var(--gd-text-light);
}

/* Booking Info */
.mgd-booking-card__info {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gd-border);
}

.mgd-booking-card__info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.mgd-booking-card__info-row:not(:last-child) {
    border-bottom: 1px solid var(--gd-border);
}

.mgd-booking-card__info-label {
    font-size: 0.85rem;
    color: var(--gd-text-light);
}

.mgd-booking-card__info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gd-text);
}

/* Booking Form */
.mgd-booking-form {
    padding: 20px 25px;
}

.mgd-booking-form__group {
    margin-bottom: 15px;
}

.mgd-booking-form__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gd-text);
    margin-bottom: 6px;
}

.mgd-booking-form__group input,
.mgd-booking-form__group select,
.mgd-booking-form__group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gd-border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mgd-booking-form__group input:focus,
.mgd-booking-form__group select:focus,
.mgd-booking-form__group textarea:focus {
    outline: none;
    border-color: var(--gd-secondary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.mgd-booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Booking Summary */
.mgd-booking-form__summary {
    background: var(--gd-bg-light);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.mgd-booking-form__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gd-text-light);
}

.mgd-booking-form__summary-row--total {
    border-top: 1px dashed var(--gd-border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gd-text);
}

.mgd-booking-form__summary-row--deposit {
    color: var(--gd-secondary);
    font-weight: 600;
}

/* Terms */
.mgd-booking-form__terms {
    margin-bottom: 15px;
}

.mgd-booking-form__terms label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
    margin-bottom: 10px;
    cursor: pointer;
}

.mgd-booking-form__terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mgd-booking-form__terms a {
    color: var(--gd-secondary);
    text-decoration: underline;
}

/* Submit Button */
.mgd-booking-form__submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gd-primary) 0%, var(--gd-primary-dark) 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mgd-booking-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 85, 0.4);
}

.mgd-booking-form__submit .btn-loading {
    display: none;
}

.mgd-booking-form__submit.loading .btn-text {
    display: none;
}

.mgd-booking-form__submit.loading .btn-loading {
    display: inline;
}

/* Booking Success */
.mgd-booking-success {
    padding: 30px 25px;
    text-align: center;
}

.mgd-booking-success__icon {
    color: var(--gd-success);
    margin-bottom: 15px;
}

.mgd-booking-success h4 {
    font-size: 1.3rem;
    color: var(--gd-text);
    margin: 0 0 10px;
}

.mgd-booking-success p {
    font-size: 0.95rem;
    color: var(--gd-text-light);
    margin: 0 0 15px;
}

.mgd-booking-success__ref {
    background: var(--gd-bg-light);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Booking Closed */
.mgd-booking-closed {
    padding: 40px 25px;
    text-align: center;
    color: var(--gd-text-light);
}

.mgd-booking-closed svg {
    color: var(--gd-text-light);
    margin-bottom: 15px;
}

.mgd-booking-closed p {
    font-size: 0.95rem;
    margin: 0 0 20px;
}

.mgd-booking-closed__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gd-secondary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mgd-booking-closed__btn:hover {
    background: #1a3a1d;
    color: #fff;
    text-decoration: none;
}

/* Trust Badges */
.mgd-trust {
    padding: 20px 25px;
    border-top: 1px solid var(--gd-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.mgd-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.mgd-trust__item svg {
    color: var(--gd-success);
}

/* Contact */
.mgd-booking-card__contact {
    padding: 20px 25px;
    text-align: center;
    background: var(--gd-bg-light);
}

.mgd-booking-card__contact p {
    font-size: 0.85rem;
    color: var(--gd-text-light);
    margin: 0 0 12px;
}

.mgd-booking-card__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gd-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.mgd-booking-card__contact-btn:hover {
    color: #1a3a1d;
    text-decoration: none;
}

/* Related Section */
.mgd-related {
    background: #fff;
    padding: 60px 0;
    margin-top: 40px;
}

.mgd-related__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gd-text);
    text-align: center;
    margin: 0 0 40px;
}

.mgd-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.mgd-related__card {
    display: block;
    background: var(--gd-bg-light);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mgd-related__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.mgd-related__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.mgd-related__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mgd-related__card:hover .mgd-related__image img {
    transform: scale(1.08);
}

.mgd-related__route {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(44, 85, 48, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mgd-related__content {
    padding: 20px;
}

.mgd-related__date {
    display: block;
    font-size: 0.85rem;
    color: var(--gd-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.mgd-related__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 12px;
    line-height: 1.4;
}

.mgd-related__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mgd-related__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-primary-dark);
}

.mgd-related__spots {
    font-size: 0.85rem;
    color: var(--gd-text-light);
}

.mgd-related__all {
    text-align: center;
}

.mgd-related__all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--gd-secondary);
    color: var(--gd-secondary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mgd-related__all-btn:hover {
    background: var(--gd-secondary);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Mountain Group Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .mgd-layout {
        grid-template-columns: 1fr;
    }
    
    .mgd-sidebar {
        order: -1;
    }
    
    .mgd-booking-card {
        position: static;
    }
    
    .mgd-hero__title {
        font-size: 2.2rem;
    }
    
    .mgd-summit-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mgd-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mgd-hero {
        height: 450px;
    }
    
    .mgd-hero__content {
        padding: 30px 0;
    }
    
    .mgd-hero__title {
        font-size: 1.8rem;
    }
    
    .mgd-hero__stats {
        gap: 15px;
    }
    
    .mgd-hero__stat {
        font-size: 0.9rem;
    }
    
    .mgd-badges {
        gap: 8px;
    }
    
    .mgd-badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .mgd-layout {
        padding: 25px 0;
        gap: 20px;
    }
    
    .mgd-card__header {
        padding: 15px 20px;
    }
    
    .mgd-card__body {
        padding: 20px;
    }
    
    .mgd-details-grid {
        grid-template-columns: 1fr;
    }
    
    .mgd-summit-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .mgd-inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .mgd-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mgd-gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .mgd-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mgd-booking-form__row {
        grid-template-columns: 1fr;
    }
    
    .mgd-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mgd-hero {
        height: 400px;
    }
    
    .mgd-hero__title {
        font-size: 1.5rem;
    }
    
    .mgd-hero__dots {
        bottom: 80px;
    }
    
    .mgd-breadcrumbs {
        font-size: 0.8rem;
    }
    
    .mgd-countdown__text {
        font-size: 0.85rem;
    }
    
    .mgd-summit-stats {
        grid-template-columns: 1fr;
    }
    
    .mgd-summit-stat {
        padding: 15px;
    }
    
    .mgd-booking-card__amount {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Mountain Group Archive Page Styles (mga- prefix)
   ========================================================================== */

/* Page Container */
.mga-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.mga-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mga-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 50%, #0d1f0e 100%);
}

.mga-hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 100L50 40l20 60H30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3Cpath d='M60 100L80 50l20 50H60z' fill='%23ffffff' fill-opacity='0.02'/%3E%3Cpath d='M0 100L25 55l25 45H0z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-size: 300px 200px;
    background-position: bottom;
    background-repeat: repeat-x;
}

.mga-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.mga-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

.mga-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mga-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 15px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.mga-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.mga-hero__stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.mga-hero__stat {
    text-align: center;
}

.mga-hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gd-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.mga-hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits Section */
.mga-benefits {
    padding: 60px 0;
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    border-radius: 20px 20px 0 0;
}

.mga-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mga-benefit {
    text-align: center;
    padding: 30px 20px;
    background: var(--gd-bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mga-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mga-benefit__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.mga-benefit h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 10px;
}

.mga-benefit p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Filter Sections */
.mga-filter {
    background: #fff;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.mga-filter__header {
    margin-bottom: 20px;
}

.mga-filter__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
}

.mga-filter__title svg {
    color: var(--gd-secondary);
}

/* Mountain Filter */
.mga-filter__mountains {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mga-filter__mountain {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--gd-bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.mga-filter__mountain:hover {
    border-color: var(--gd-secondary);
    background: #fff;
}

.mga-filter__mountain.active {
    background: var(--gd-secondary);
    border-color: var(--gd-secondary);
}

.mga-filter__mountain.active .mga-filter__mountain-name,
.mga-filter__mountain.active .mga-filter__mountain-elev,
.mga-filter__mountain.active svg {
    color: #fff;
}

.mga-filter__mountain-thumb {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.mga-filter__mountain-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.mga-filter__mountain.active .mga-filter__mountain-icon {
    background: rgba(255, 255, 255, 0.2);
}

.mga-filter__mountain-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gd-text);
}

.mga-filter__mountain-elev {
    font-size: 0.8rem;
    color: var(--gd-text-light);
    background: rgba(0, 0, 0, 0.05);
    padding: 3px 8px;
    border-radius: 6px;
}

.mga-filter__mountain.active .mga-filter__mountain-elev {
    background: rgba(255, 255, 255, 0.2);
}

/* Month Filter */
.mga-filter__months {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mga-filter__pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--gd-bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 80px;
}

.mga-filter__pill:hover {
    background: #e0e7e1;
    text-decoration: none;
}

.mga-filter__pill--current {
    background: var(--gd-secondary);
}

.mga-filter__pill--current .mga-filter__pill-month,
.mga-filter__pill--current .mga-filter__pill-year,
.mga-filter__pill--current .mga-filter__pill-count {
    color: #fff;
}

.mga-filter__pill-month {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gd-text);
    line-height: 1;
}

.mga-filter__pill-year {
    font-size: 0.75rem;
    color: var(--gd-text-light);
    margin-top: 2px;
}

.mga-filter__pill-count {
    font-size: 0.7rem;
    color: #fff;
    background: var(--gd-secondary);
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 8px;
}

.mga-filter__pill--current .mga-filter__pill-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Expeditions Section */
.mga-expeditions {
    padding: 20px 0 60px;
}

.mga-expeditions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Month Header */
.mga-month-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0 5px;
}

.mga-month-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0;
    white-space: nowrap;
}

.mga-month-header__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--gd-border), transparent);
}

/* Expedition Card */
.mga-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.mga-card--full {
    opacity: 0.75;
}

.mga-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mga-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.mga-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mga-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mga-card:hover .mga-card__image img {
    transform: scale(1.08);
}

.mga-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

/* Card Badges */
.mga-card__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.mga-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mga-card__badge--guaranteed {
    background: var(--gd-success);
    color: #fff;
}

.mga-card__badge--limited {
    background: #ff9800;
    color: #fff;
    animation: pulse 2s infinite;
}

.mga-card__badge--earlybird {
    background: #9c27b0;
    color: #fff;
}

/* Route Badge */
.mga-card__route {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 85, 48, 0.9);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
}

/* Date Tag */
.mga-card__date-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gd-primary);
    color: #000;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    z-index: 5;
}

.mga-card__date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.mga-card__date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Card Content */
.mga-card__content {
    padding: 20px;
}

.mga-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 12px;
    line-height: 1.4;
}

.mga-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.mga-card__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
}

.mga-card__meta-item svg {
    color: var(--gd-secondary);
}

.mga-card__meta-item--difficulty {
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
}

.mga-card__meta-item--easy {
    background: #e8f5e9;
    color: #2e7d32;
}

.mga-card__meta-item--moderate {
    background: #fff3e0;
    color: #e65100;
}

.mga-card__meta-item--challenging,
.mga-card__meta-item--difficult {
    background: #ffebee;
    color: #c62828;
}

.mga-card__guide {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gd-text-light);
    margin-bottom: 15px;
}

.mga-card__guide svg {
    color: var(--gd-secondary);
}

.mga-card__guide strong {
    color: var(--gd-text);
}

/* Availability Bar */
.mga-card__availability {
    margin-bottom: 15px;
}

.mga-card__availability-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.mga-card__availability-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gd-success) 0%, #2ecc71 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.mga-card__availability-text {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.mga-card__availability-text .status-full {
    color: var(--gd-danger);
    font-weight: 600;
}

/* Card Footer */
.mga-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gd-border);
}

.mga-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.mga-card__price-original {
    font-size: 0.85rem;
    color: var(--gd-text-light);
    text-decoration: line-through;
}

.mga-card__price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gd-primary-dark);
}

.mga-card__price-per {
    font-size: 0.8rem;
    color: var(--gd-text-light);
}

.mga-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--gd-secondary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mga-card:hover .mga-card__btn {
    background: #1a3a1d;
}

.mga-card__btn--disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Pagination */
.mga-pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.mga-pagination__list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mga-pagination__item a,
.mga-pagination__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    border: 1px solid var(--gd-border);
    border-radius: 10px;
    color: var(--gd-text);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mga-pagination__item a:hover {
    border-color: var(--gd-secondary);
    color: var(--gd-secondary);
    text-decoration: none;
}

.mga-pagination__item .current {
    background: var(--gd-secondary);
    border-color: var(--gd-secondary);
    color: #fff;
}

/* Empty State */
.mga-empty {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.mga-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--gd-bg-light);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: var(--gd-text-light);
}

.mga-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 12px;
}

.mga-empty p {
    font-size: 1rem;
    color: var(--gd-text-light);
    max-width: 500px;
    margin: 0 auto 25px;
}

.mga-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gd-secondary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mga-empty__btn:hover {
    background: #1a3a1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Preparation Section */
.mga-prep {
    background: #fff;
    padding: 70px 0;
}

.mga-prep__header {
    text-align: center;
    margin-bottom: 50px;
}

.mga-prep__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 15px;
}

.mga-prep__subtitle {
    font-size: 1.1rem;
    color: var(--gd-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mga-prep__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mga-prep__item {
    text-align: center;
    padding: 35px 25px;
    background: var(--gd-bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mga-prep__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mga-prep__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.mga-prep__item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gd-text);
    margin: 0 0 12px;
}

.mga-prep__item p {
    font-size: 0.9rem;
    color: var(--gd-text-light);
    margin: 0;
    line-height: 1.7;
}

/* CTA Section */
.mga-cta {
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1d 50%, #0d1f0e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mga-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 100L50 40l20 60H30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3Cpath d='M60 100L80 50l20 50H60z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    background-size: 400px 250px;
    background-position: bottom;
    background-repeat: repeat-x;
}

.mga-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mga-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
}

.mga-cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 35px;
}

.mga-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mga-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mga-cta__btn--primary {
    background: var(--gd-primary);
    color: #000;
}

.mga-cta__btn--primary:hover {
    background: #e5c076;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 85, 0.4);
    color: #000;
    text-decoration: none;
}

.mga-cta__btn--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.mga-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Mountain Archive Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .mga-hero__title {
        font-size: 2.4rem;
    }
    
    .mga-hero__stats {
        gap: 30px;
    }
    
    .mga-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mga-expeditions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mga-prep__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mga-hero {
        min-height: 350px;
    }
    
    .mga-hero__content {
        padding: 40px 0;
    }
    
    .mga-hero__label {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .mga-hero__title {
        font-size: 2rem;
    }
    
    .mga-hero__subtitle {
        font-size: 1rem;
    }
    
    .mga-hero__stats {
        gap: 25px;
    }
    
    .mga-hero__stat-number {
        font-size: 2rem;
    }
    
    .mga-benefits {
        padding: 40px 0;
        margin-top: -30px;
    }
    
    .mga-benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mga-benefit {
        padding: 25px 20px;
    }
    
    .mga-filter {
        padding: 20px;
    }
    
    .mga-filter__title {
        font-size: 1.1rem;
    }
    
    .mga-filter__mountains {
        gap: 10px;
    }
    
    .mga-filter__mountain {
        padding: 8px 14px;
    }
    
    .mga-filter__mountain-thumb {
        width: 30px;
        height: 30px;
    }
    
    .mga-filter__mountain-name {
        font-size: 0.85rem;
    }
    
    .mga-filter__months {
        gap: 8px;
    }
    
    .mga-filter__pill {
        padding: 10px 15px;
        min-width: 70px;
    }
    
    .mga-expeditions__grid {
        grid-template-columns: 1fr;
    }
    
    .mga-card__image {
        height: 180px;
    }
    
    .mga-prep__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mga-cta {
        padding: 50px 0;
    }
    
    .mga-cta__title {
        font-size: 1.8rem;
    }
    
    .mga-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mga-cta__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mga-hero {
        min-height: 320px;
    }
    
    .mga-hero__title {
        font-size: 1.7rem;
    }
    
    .mga-hero__subtitle {
        font-size: 0.9rem;
    }
    
    .mga-hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .mga-filter__mountain {
        width: 100%;
    }
    
    .mga-card__footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .mga-card__btn {
        width: 100%;
        justify-content: center;
    }
    
    .mga-empty {
        padding: 50px 25px;
    }
    
    .mga-empty__icon {
        width: 80px;
        height: 80px;
    }
    
    .mga-empty h3 {
        font-size: 1.25rem;
    }
    
    .mga-empty p {
        font-size: 0.9rem;
    }
    
    .mga-prep__title {
        font-size: 1.6rem;
    }
    
    .mga-cta__title {
        font-size: 1.5rem;
    }
    
    .mga-cta__text {
        font-size: 0.95rem;
    }
}

