:root {
    --primary-green: #28a745;
    --dark-green: #6cb33d;
    --light-green: #d4edda;
}

.hero-section-professional {
    min-height: 90vh;
    position: relative;
}

.hero-content-row {
    min-height: 60vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-green), #6cb33d);
    border-radius: 2px;
}

.content-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card {
    transition: all 0.3s ease;
}

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

.stat-badge {
    transition: all 0.3s ease;
}

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

.route-card .card {
    transition: all 0.3s ease;
}

.itinerary-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.itinerary-item:nth-child(1) { animation-delay: 0.1s; }
.itinerary-item:nth-child(2) { animation-delay: 0.2s; }
.itinerary-item:nth-child(3) { animation-delay: 0.3s; }
.itinerary-item:nth-child(4) { animation-delay: 0.4s; }
.itinerary-item:nth-child(5) { animation-delay: 0.5s; }
.itinerary-item:nth-child(6) { animation-delay: 0.6s; }
.itinerary-item:nth-child(7) { animation-delay: 0.7s; }
.itinerary-item:nth-child(8) { animation-delay: 0.8s; }
.itinerary-item:nth-child(9) { animation-delay: 0.9s; }

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

.booking-sidebar .card {
    border: 2px solid var(--primary-green);
}

.guarantee-badge {
    border: 2px dashed var(--primary-green);
}

@media (max-width: 768px) {
    .hero-section-professional {
        min-height: 70vh;
    }
    
    .price-container {
        margin-top: 2rem;
    }
    
    .booking-sidebar {
        margin-top: 3rem;
    }
    
    .stat-badge {
        margin-bottom: 0.5rem;
    }
}

.table-hover tbody tr:hover {
    background-color: rgba(40, 167, 69, 0.1);
}

.inclusion-category, .exclusion-category {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.inclusion-category:last-child, .exclusion-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Compact Inclusion/Exclusion Styling */
.inclusion-card, .exclusion-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}

.card-header-custom {
    border-radius: 15px 15px 0 0;
    border: none;
}

.inclusion-group, .exclusion-group {
    margin-bottom: 1.5rem;
}

.inclusion-group:last-child, .exclusion-group:last-child {
    margin-bottom: 0;
}

.inclusion-group h6, .exclusion-group h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e9ecef;
}

.inclusion-list, .exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li, .exclusion-list li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #6c757d;
    position: relative;
    padding-left: 1rem;
}

.inclusion-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.exclusion-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.tipping-guide .alert {
    border-radius: 10px;
    border: 1px solid #bee5eb;
}

.tip-amounts small {
    font-size: 0.75rem;
    color: #495057;
}

/* Compact Pricing Grid */
.pricing-compact-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-grid {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.pricing-row {
    display: table-row;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    background: rgba(40, 167, 69, 0.05);
}

.pricing-row.featured {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
}

.pricing-row.header {
    background: var(--primary-green);
    color: white;
    font-weight: 600;
}

.pricing-row.header:hover {
    background: var(--primary-green);
}

.pricing-cell {
    display: table-cell;
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.pricing-cell.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.pricing-cell.featured-price {
    color: #ff8c00;
    font-size: 1.75rem;
}

.save-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.save-badge.best {
    background: #ff8c00;
    color: white;
}

.best-deal {
    background: #ff8c00;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.btn-compact {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-compact:hover {
    background: #6cb33d;
    color: white;
    transform: translateY(-2px);
}

.btn-compact.featured {
    background: #ff8c00;
}

.btn-compact.featured:hover {
    background: #e07b00;
}

/* Compact Package Overview */
.package-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: #dee2e6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.package-column {
    background: white;
    padding: 1.5rem 1rem;
}

.package-column-header {
    background: var(--primary-green);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    margin: -1.5rem -1rem 1rem -1rem;
    font-size: 0.95rem;
}

.package-column.excluded .package-column-header {
    background: #dc3545;
}

.package-column.tipping .package-column-header {
    background: #6cb33d;
}

.package-items {
    height: 100%;
}

.item-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.875rem;
}

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

.item-row i {
    color: var(--primary-green);
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.excluded .item-row i {
    color: #dc3545;
}

.tipping .item-row i {
    color: #17a2b8;
}

.tip-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.875rem;
}

.tip-item:last-of-type {
    border-bottom: none;
}

.tip-note {
    background: rgba(23, 162, 184, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.package-summary {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.summary-item {
    font-size: 0.875rem;
    padding: 0.5rem;
    color: #495057;
}

/* Itinerary Tabs Styling */
.itinerary-compact {
    max-width: 1200px;
    margin: 0 auto;
}

.itinerary-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.day-tab {
    background: white;
    border: 2px solid #dee2e6;
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
}

.day-tab:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.day-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.day-content-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.day-item {
    display: none;
    padding: 2rem;
    min-height: 400px;
}

.day-item.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.day-image-compact {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 1rem;
}

.day-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.day-image-compact:hover img {
    transform: scale(1.05);
}

.day-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6cb33d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.summit-badge {
    background: rgba(255, 193, 7, 0.9) !important;
    color: #000 !important;
    font-weight: 700;
}

.day-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.day-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.day-stats-compact {
    margin: 1rem 0;
}

.stat-compact {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.stat-badge-small {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.summit-day .day-image-compact {
    border: 3px solid #ffc107;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .itinerary-tabs {
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .day-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        min-width: 70px;
    }
    
    .day-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .day-image-compact {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .day-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .itinerary-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .day-tab {
        flex-shrink: 0;
    }
    
    .hero-section-professional {
        min-height: 45vh;
    }
    
    .hero-content-row {
        min-height: 45vh;
    }
    
    .hero-content .display-5 {
        font-size: 1.75rem;
    }

    /* Extra compact for small mobile */
    .pricing-cell {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .pricing-cell.price {
        font-size: 1.1rem;
    }
    
    .package-column {
        padding: 1rem 0.75rem;
    }
    
    .item-row {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Gallery Hover Effects */
.gallery-item:hover .gallery-img-container img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-item {
    cursor: pointer;
}

.gallery-img-container {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-item .card {
        margin-bottom: 1rem;
    }
}