.destination-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: end;
    padding-bottom: 3rem;
}

.hero-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.destination-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.destination-badges {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge-featured {
    background-color: #ffc107;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}

.badge-category {
    background-color: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
}

.destination-location {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card {
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.review-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
}

.weather-card {
    background: var(--color-bg-secondary, white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border-primary, #e9ecef);
}

.weather-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.planning-section {
    background: linear-gradient(135deg, var(--color-bg-secondary, #f8f9fa) 0%, var(--color-bg-tertiary, #e9ecef) 100%);
    border: 1px solid var(--color-border-primary, #dee2e6);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.planning-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.planning-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-card {
    background: var(--color-bg-secondary, white);
    border-radius: 1rem;
    border: 1px solid var(--color-border-primary, #e9ecef);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.package-price {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.package-price .duration-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    display: block;
}

.package-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.package-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.detail-item i {
    margin-right: 0.5rem;
    color: #3498db;
    width: 16px;
}

/* Colorful icon accents for Quick Facts */
.detail-item .icon-duration { /* calendar icon */
    color: #87CEEB; /* sky blue */
}
.detail-item .icon-season { /* thermometer icon */
    color: #FF6B6B;
}
.detail-item .difficulty-easy { /* mountain icon */
    color: #27AE60;
}
.detail-item .difficulty-moderate { /* mountain icon */
    color: #F39C12;
}
.detail-item .difficulty-hard { /* mountain icon */
    color: #E74C3C;
}

.package-actions {
    display: flex;
    gap: 0.5rem;
}

.package-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

.destination-sidebar .info-card,
.destination-sidebar .cta-card,
.destination-sidebar .related-destinations,
.destination-sidebar .weather-card {
    background: var(--color-bg-secondary, white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border-primary, #e9ecef);
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border-primary, #f0f0f0);
}

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

.info-label {
    font-weight: 500;
    color: #666;
}

.info-value {
    color: #2c3e50;
    font-weight: 600;
}

.cta-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.cta-card .card-title,
.cta-card p {
    color: white;
}

.cta-actions .btn-block {
    width: 100%;
    margin-bottom: 0.5rem;
}

.cta-actions .btn-block:last-child {
    margin-bottom: 0;
}

.related-item {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: var(--color-bg-secondary, #f8f9fa);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 0 -0.75rem;
    color: inherit;
    text-decoration: none;
}

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

.related-image {
    width: 60px;
    height: 40px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    flex: 1;
}

.related-title {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.related-location {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.related-location i {
    margin-right: 0.25rem;
    color: #3498db;
}

.content-section {
    margin-bottom: 2rem;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.destination-description {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-secondary, #666);
}

.empty-state i {
    margin-bottom: 1rem;
}

.empty-state h4 {
    color: var(--color-text-primary, #495057);
    margin-bottom: 1rem;
}

.modal-lg {
    max-width: 800px;
}

.modal .btn.rounded-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .destination-title {
        font-size: 2rem;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .package-price {
        text-align: left;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .planning-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .planning-section .btn {
        width: 100%;
    }
    
    .destination-sidebar {
        margin-top: 2rem;
    }
    
    .sticky-top {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 576px) {
    .destination-title {
        font-size: 1.5rem;
    }
    
    .hero-overlay {
        padding-bottom: 1.5rem;
    }
    
    .destination-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-item {
        flex-direction: column;
        text-align: center;
    }
    
    .related-image {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
	
	.weather-card {
	    background: var(--color-bg-secondary, white);
	    padding: 1.5rem;
	    border-radius: 1rem;
	    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	    border: 1px solid var(--color-border-primary, #e9ecef);
	    transition: all 0.3s ease;
	}

	.weather-card.loading {
	    opacity: 0.7;
	    pointer-events: none;
	}

	.weather-icon {
	    animation: float 3s ease-in-out infinite;
	}

	@keyframes float {
	    0%, 100% { transform: translateY(0px); }
	    50% { transform: translateY(-10px); }
	}

	.weather-details {
	    padding: 1rem;
    background: var(--color-bg-secondary, #f8f9fa);
	    border-radius: 0.5rem;
	    margin-top: 1rem;
	}

	.weather-details .row > div {
	    padding: 0.5rem;
	}

	.weather-details i {
	    font-size: 1.5rem;
	    margin-bottom: 0.5rem;
	    display: block;
	}

	.weather-details .small {
	    font-size: 0.75rem;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	    margin-bottom: 0.25rem;
	}

	.weather-details .fw-bold {
	    font-size: 0.9rem;
	    font-weight: 600;
	}

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

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

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

	.weather-card:hover {
	    transform: translateY(-2px);
	    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	}

	@media (max-width: 768px) {
	    .weather-card {
	        padding: 1rem;
	    }
	    
	    .weather-details {
	        padding: 0.75rem;
	    }
	    
	    .weather-icon {
	        animation: none;
	    }
	}

	.fa-sync-alt.fa-spin {
	    animation: fa-spin 1s infinite linear;
	}

	@keyframes fa-spin {
	    0% { transform: rotate(0deg); }
	    100% { transform: rotate(360deg); }
	}

/* ========================================
   READING-OPTIMIZED LAYOUT (2025 Best Practices)
   Based on UX research: 45-75 characters per line
   Applied: October 10, 2025
   ======================================== */

/* Main text content uses narrow container for optimal readability */
.destination-info .content-section {
    max-width: var(--container-reading);  /* 800px - optimal for reading */
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--padding-container-desktop);
    padding-right: var(--padding-container-desktop);
}

/* Tablet: reduce padding */
@media (max-width: 992px) {
    .destination-info .content-section {
        padding-left: var(--padding-container-tablet);
        padding-right: var(--padding-container-tablet);
    }
}

/* Mobile: minimal padding */
@media (max-width: 576px) {
    .destination-info .content-section {
        padding-left: var(--padding-container-mobile);
        padding-right: var(--padding-container-mobile);
    }
}

/* ========================================
   CAROUSEL CONTROL ICONS - SMALLER SIZE
   Applied: October 11, 2025
   ======================================== */

/* Carousel control icons - smaller size for better visual balance */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    background-size: 20px 20px !important;
}

/* Description text optimized for readability */
.destination-description {
    line-height: 1.8;  /* Increased line height for better readability */
    font-size: 1.0625rem;  /* 17px - slightly larger for comfort */
    color: var(--color-text-primary);
}

/* Ensure proper spacing between paragraphs */
.destination-description p {
    margin-bottom: 1.5rem;
}
}