/**
 * attr-details.css - PREMIUM WHITE THEME DESIGN
 * Enhanced luxury stylesheet for Sri Lankan Destination Detail Page
 * Uses main.css variables for consistent white theme
 * All colors, fonts, and spacing come from main.css - NO hardcoded values
 * Enhanced with premium effects, glassmorphism, and luxury aesthetics
 */

/* === PREMIUM LOADING & ERROR OVERLAYS === */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 50%, var(--primary-orange) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.loading-overlay.fade-out {
    opacity: 0;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid var(--text-white);
    border-radius: var(--border-radius-full);
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin-bottom: var(--spacing-8);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.loading-text {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-6);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.loading-progress {
    width: 400px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-6);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.loading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--text-white), rgba(255,255,255,0.8), var(--text-white));
    background-size: 200% 100%;
    border-radius: var(--border-radius-full);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmerLoad 2s ease infinite;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.loading-message {
    font-size: var(--text-lg);
    opacity: 0.9;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
}

.error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    backdrop-filter: blur(15px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
}

.main-content-wrapper {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content-wrapper.ready {
    opacity: 1;
}

/* === PREMIUM HERO SECTION === */
.attr-detail-hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
    background: var(--bg-primary);
}

.attr-detail-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1);
    transition: transform 12s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

.attr-detail-hero-wrapper:hover .attr-detail-hero-image {
    transform: scale(1.08);
}

.attr-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.attr-detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-40) 0 var(--spacing-32);
    z-index: 3;
}

.attr-detail-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-8);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: var(--leading-none);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-orange) 50%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

.attr-detail-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    animation: titleUnderline 2s ease 1s forwards;
    border-radius: var(--border-radius-full);
}

.attr-detail-category {
    display: inline-block;
    padding: var(--spacing-3) var(--spacing-8);
    font-size: var(--text-base);
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: var(--text-white);
    border-radius: var(--border-radius-full);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.attr-detail-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.8s ease;
}

.attr-detail-category:hover::before {
    left: 100%;
}

.attr-detail-location {
    font-size: var(--text-2xl);
    color: var(--text-white);
    animation: fadeInUp 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-12);
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-medium);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.attr-detail-location i {
    color: var(--primary-orange);
    margin-right: var(--spacing-4);
    font-size: 1.5em;
    filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.6));
}

.attr-detail-quick-info {
    animation: fadeInUp 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-4);
}

.attr-detail-quick-info .btn {
    border-radius: var(--border-radius-full);
    padding: var(--spacing-4) var(--spacing-8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: var(--text-base);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.attr-detail-quick-info .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.attr-detail-quick-info .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: var(--text-white);
}

.attr-detail-quick-info .btn:hover::before {
    left: 0;
}

.attr-detail-quick-info .btn i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.attr-detail-quick-info .btn:hover i {
    transform: scale(1.2);
}

/* === PREMIUM BREADCRUMB === */
.attr-breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--spacing-6) 0;
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    color: var(--primary-orange);
    transition: all 0.3s ease;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    position: relative;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

.breadcrumb-item a:hover {
    color: var(--primary-teal);
    transform: translateY(-1px);
}

/* === PREMIUM TRAVEL TIPS SECTION === */
.attr-tip-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-12) var(--spacing-8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 87, 34, 0.1);
    backdrop-filter: blur(10px);
}

.attr-tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(0, 150, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.attr-tip-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.attr-tip-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.attr-tip-card:hover::before {
    opacity: 1;
}

.attr-tip-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.attr-tip-icon {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--bg-orange-light), rgba(255, 87, 34, 0.1));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: var(--spacing-8);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
    position: relative;
    z-index: 2;
}

.attr-tip-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.attr-tip-icon i.text-primary,
.attr-tip-icon i.text-warning {
    color: var(--primary-orange) !important;
    font-size: var(--text-4xl);
    transition: all 0.4s ease;
}

.attr-tip-card:hover .attr-tip-icon {
    transform: translateY(-10px) scale(1.1) rotateY(10deg);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.4);
}

.attr-tip-card:hover .attr-tip-icon::before {
    opacity: 1;
}

.attr-tip-card:hover .attr-tip-icon i {
    color: var(--text-white) !important;
    transform: scale(1.2);
}

.attr-tip-card h3 {
    margin-bottom: var(--spacing-6);
    font-weight: var(--font-weight-bold);
    transition: all 0.4s ease;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    font-size: var(--text-xl);
}

.attr-tip-card:hover h3 {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.attr-tip-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    line-height: var(--leading-relaxed);
}

/* === PREMIUM CTA SECTION === */
.attr-detail-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(255, 87, 34, 0.02) 50%, var(--bg-primary) 100%);
    padding: var(--spacing-32) 0;
    border-top: 1px solid rgba(255, 87, 34, 0.1);
    border-bottom: 1px solid rgba(255, 87, 34, 0.1);
}

.attr-detail-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 150, 136, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.attr-detail-cta .container {
    position: relative;
    z-index: 2;
}

.attr-detail-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-8);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: var(--leading-tight);
    text-align: center;
    font-family: var(--font-heading);
}

.btn-book-now {
    display: inline-block;
    padding: var(--spacing-6) var(--spacing-16);
    background: var(--gradient-primary);
    color: var(--text-white);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(255, 87, 34, 0.3);
    font-size: var(--text-xl);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 87, 34, 0.5);
    background: var(--gradient-button);
    color: var(--text-white);
    text-decoration: none;
}

.btn-book-now:hover::before {
    left: 100%;
}

/* === PREMIUM OVERVIEW SECTION === */
.attr-detail-description {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.attr-detail-description p:first-of-type::first-letter {
    font-size: 4em;
    line-height: 0.8;
    font-weight: var(--font-weight-black);
    float: left;
    padding-right: var(--spacing-6);
    padding-top: var(--spacing-2);
    color: var(--primary-orange);
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

.attr-detail-quick-facts {
    border: none;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    background: var(--bg-primary);
    border: 1px solid rgba(255, 87, 34, 0.1);
    backdrop-filter: blur(10px);
}

.attr-detail-quick-facts .card-header {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(255, 87, 34, 0.05));
    border-bottom: 1px solid rgba(255, 87, 34, 0.1);
    padding: var(--spacing-8) var(--spacing-8);
}

.attr-detail-quick-facts .card-body {
    padding: var(--spacing-8);
}

.attr-detail-quick-facts h4 {
    color: var(--primary-orange);
    margin-bottom: var(--spacing-3);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-lg);
}

.attr-detail-map-card {
    border: none;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    background: var(--bg-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 87, 34, 0.1);
}

.attr-detail-map-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.attr-detail-map-preview {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-secondary), rgba(255, 87, 34, 0.05));
    position: relative;
    overflow: hidden;
}

.attr-detail-book-card {
    border: none;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    background: var(--bg-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 150, 136, 0.1);
}

.attr-detail-book-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-teal);
}

.attr-detail-book-card .card-header {
    background: var(--gradient-primary);
    padding: var(--spacing-8) var(--spacing-8);
}

.attr-detail-weather-placeholder {
    padding: var(--spacing-10);
    background: linear-gradient(135deg, var(--bg-teal-light), rgba(0, 150, 136, 0.1));
    border-radius: var(--border-radius-2xl);
}

.attr-detail-weather-temp {
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-2);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.attr-detail-weather-desc {
    font-size: var(--text-xl);
    margin-bottom: var(--spacing-4);
    color: var(--text-secondary);
    font-weight: var(--font-weight-semibold);
}

.attr-detail-weather-info {
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: var(--spacing-8);
    font-size: var(--text-lg);
}

/* === PREMIUM THINGS TO SEE/DO SECTION === */
.attr-thing-card, .attr-trail-card {
    position: relative;
    padding: var(--spacing-16) var(--spacing-12);
    border-radius: var(--border-radius-2xl);
    background: var(--bg-primary);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-10);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 87, 34, 0.1);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.attr-thing-card::before, .attr-trail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.attr-thing-card:hover::before, .attr-trail-card:hover::before {
    height: 100%;
}

.attr-thing-card:hover, .attr-trail-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.attr-thing-icon, .attr-activity-icon {
    font-size: var(--text-6xl);
    color: var(--primary-orange);
    margin-bottom: var(--spacing-10);
    background: linear-gradient(135deg, var(--bg-orange-light), rgba(255, 87, 34, 0.1));
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
    position: relative;
}

.attr-thing-icon::before, .attr-activity-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.attr-thing-card:hover .attr-thing-icon,
.attr-thing-card:hover .attr-activity-icon {
    transform: translateY(-15px) scale(1.15) rotateY(15deg);
    color: var(--text-white);
    box-shadow: 0 25px 60px rgba(255, 87, 34, 0.4);
}

.attr-thing-card:hover .attr-thing-icon::before,
.attr-thing-card:hover .attr-activity-icon::before {
    opacity: 1;
}

.attr-thing-number {
    position: absolute;
    top: var(--spacing-10);
    right: var(--spacing-10);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-teal);
    color: var(--text-white);
    font-weight: var(--font-weight-black);
    border-radius: var(--border-radius-full);
    font-size: var(--text-2xl);
    box-shadow: 0 10px 30px rgba(0, 150, 136, 0.3);
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.attr-thing-card:hover .attr-thing-number {
    background: var(--primary-orange);
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.attr-thing-title, .attr-trail-title {
    margin-bottom: var(--spacing-6);
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-2xl);
    transition: all 0.4s ease;
    font-family: var(--font-heading);
}

.attr-thing-card:hover .attr-thing-title,
.attr-trail-card:hover .attr-trail-title {
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.attr-trail-icon {
    font-size: var(--text-5xl);
    color: var(--primary-orange);
    margin-bottom: var(--spacing-8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.attr-trail-card:hover .attr-trail-icon {
    transform: translateY(-10px) scale(1.2);
    color: var(--primary-teal);
    filter: drop-shadow(0 0 20px rgba(0, 150, 136, 0.5));
}

/* === PREMIUM SECTION STYLING === */
.section-divider {
    margin: var(--spacing-12) 0;
    position: relative;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-orange), var(--primary-teal), transparent);
    border-radius: var(--border-radius-full);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.section-icon {
    margin-right: var(--spacing-4);
    color: var(--primary-orange);
    background: linear-gradient(135deg, var(--bg-orange-light), rgba(255, 87, 34, 0.1));
    border-radius: var(--border-radius-full);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.section-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-title:hover .section-icon {
    transform: rotate(20deg) scale(1.2);
    color: var(--text-white);
}

.section-title:hover .section-icon::before {
    opacity: 1;
}

/* === PREMIUM MAP SECTION === */
.attr-detail-map-container {
    height: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    border: 2px solid rgba(255, 87, 34, 0.1);
    transition: all 0.5s ease;
}

.attr-detail-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

/* === PREMIUM PHOTO GALLERY === */
.gallery-item {
    margin-bottom: var(--spacing-8);
    overflow: hidden;
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 1/1;
    border: 2px solid rgba(255, 87, 34, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-item.portrait {
    aspect-ratio: 2/3;
}

.gallery-item.landscape {
    aspect-ratio: 3/2;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.gallery-item img {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(255, 87, 34, 0.8) 0%, 
        rgba(255, 87, 34, 0.2) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* === PREMIUM SECTION TITLES === */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-6);
    margin-bottom: var(--spacing-10);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 6px;
    background: var(--gradient-primary);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-full);
}

.section-title:hover::after {
    width: 100%;
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--text-muted);
    margin-bottom: var(--spacing-16);
    letter-spacing: 1.5px;
    font-weight: var(--font-weight-medium);
}

/* === PREMIUM TOUR PACKAGES === */
#tour-packages-grid .card {
    border: none;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 87, 34, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

#tour-packages-grid .card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

#tour-packages-grid .card img {
    height: 280px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.05);
}

#tour-packages-grid .card:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

#tour-packages-grid .badge {
    border-radius: var(--border-radius-full);
    padding: var(--spacing-3) var(--spacing-6);
    font-weight: var(--font-weight-bold);
    position: absolute;
    top: var(--spacing-6);
    left: var(--spacing-6);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: var(--text-base);
}

#tour-packages-grid .card-body {
    padding: var(--spacing-10);
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

#tour-packages-grid .card-footer {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(255, 87, 34, 0.02));
    border-top: 1px solid rgba(255, 87, 34, 0.1);
    padding: var(--spacing-8) var(--spacing-10);
    position: relative;
    z-index: 2;
}

#tour-packages-grid .btn {
    border-radius: var(--border-radius-full);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-4) var(--spacing-8);
    font-weight: var(--font-weight-semibold);
    border: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

#tour-packages-grid .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

#tour-packages-grid .btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

#tour-packages-grid .btn:hover::before {
    left: 0;
}

/* === PREMIUM LOADING & ERROR STYLES === */
.attr-loading-overlay {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-primary), rgba(255, 87, 34, 0.02));
    border-radius: var(--border-radius-2xl);
    margin: var(--spacing-10);
}

.attr-loading-overlay .spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 0.3rem;
    color: var(--primary-orange);
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.attr-error-message {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-primary), rgba(255, 87, 34, 0.02));
    color: var(--text-primary);
    border-radius: var(--border-radius-2xl);
    margin: var(--spacing-10);
}

/* === PREMIUM ANIMATIONS === */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmerLoad {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes titleUnderline {
    0% { width: 0; }
    100% { width: 200px; }
}

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

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 87, 34, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 87, 34, 0.8); }
}

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

/* === PREMIUM RESPONSIVE DESIGN === */
@media (max-width: 1199.98px) {
    .attr-detail-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .attr-detail-cta h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .loading-progress {
        width: 350px;
    }
}

@media (max-width: 991.98px) {
    .attr-detail-hero-wrapper {
        height: 80vh;
        min-height: 600px;
    }
    
    .attr-detail-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .attr-detail-map-container {
        height: 450px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .attr-thing-card, .attr-trail-card {
        padding: var(--spacing-12) var(--spacing-10);
    }
    
    .attr-thing-icon, .attr-activity-icon {
        width: 100px;
        height: 100px;
        font-size: var(--text-5xl);
    }
    
    .attr-tip-icon {
        width: 80px;
        height: 80px;
    }
    
    .attr-tip-card {
        padding: var(--spacing-10) var(--spacing-8);
    }
}

@media (max-width: 767.98px) {
    .attr-detail-hero-wrapper {
        height: 70vh;
        min-height: 500px;
    }
    
    .attr-detail-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: var(--spacing-6);
    }
    
    .attr-detail-location {
        font-size: var(--text-xl);
        margin-bottom: var(--spacing-8);
    }
    
    .attr-detail-map-container {
        height: 400px;
    }
    
    .attr-tip-card {
        padding: var(--spacing-8) var(--spacing-6);
        margin-bottom: var(--spacing-8);
    }
    
    .attr-tip-icon {
        width: 70px;
        height: 70px;
    }
    
    .btn-book-now {
        padding: var(--spacing-4) var(--spacing-12);
        font-size: var(--text-lg);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .attr-thing-card, .attr-trail-card {
        padding: var(--spacing-10) var(--spacing-8);
    }
    
    .attr-thing-icon, .attr-activity-icon {
        width: 80px;
        height: 80px;
        font-size: var(--text-4xl);
        margin-bottom: var(--spacing-8);
    }
    
    .loading-progress {
        width: 300px;
    }
}

@media (max-width: 575.98px) {
    .attr-detail-hero-wrapper {
        height: 60vh;
        min-height: 400px;
    }
    
    .attr-detail-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: var(--spacing-4);
    }
    
    .attr-detail-location {
        font-size: var(--text-lg);
        margin-bottom: var(--spacing-6);
    }
    
    .attr-detail-quick-info .btn {
        margin-bottom: var(--spacing-3);
        padding: var(--spacing-3) var(--spacing-6);
        font-size: var(--text-sm);
    }
    
    .attr-detail-cta {
        padding: var(--spacing-20) 0;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
    
    .attr-thing-card, .attr-trail-card {
        padding: var(--spacing-8) var(--spacing-6);
    }
    
    .attr-thing-icon, .attr-activity-icon {
        width: 70px;
        height: 70px;
        font-size: var(--text-3xl);
        margin-bottom: var(--spacing-6);
    }
    
    .attr-detail-weather-temp {
        font-size: var(--text-4xl);
    }
    
    .gallery-item {
        margin-bottom: var(--spacing-6);
    }
    
    .attr-tip-icon {
        width: 60px;
        height: 60px;
    }
    
    .attr-tip-card {
        padding: var(--spacing-8) var(--spacing-5);
    }
    
    .loading-progress {
        width: 250px;
    }
    
    .loading-text {
        font-size: var(--text-lg);
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
}

/* === PREMIUM DARK MODE SUPPORT (OPTIONAL) === */
@media (prefers-color-scheme: dark) {
    .attr-detail-hero-image {
        filter: brightness(0.7) contrast(1.2) saturate(1.1);
    }
}

/* === PREMIUM ACCESSIBILITY ENHANCEMENTS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === HIGH CONTRAST MODE SUPPORT === */
@media (prefers-contrast: high) {
    .attr-tip-card,
    .attr-thing-card,
    .attr-trail-card,
    .gallery-item,
    #tour-packages-grid .card {
        border-width: 3px;
    }
}
/* ===== PROFESSIONAL DESTINATION TITLE STYLING ===== */

.attr-detail-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-8);
    line-height: var(--leading-none);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -2px;
    position: relative;
    
    /* Professional white text with black shadow/glow */
    color: var(--text-white) !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 0, 0, 0.5);
    
    /* Remove gradient background */
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    
    /* Add subtle backdrop for extra readability */
    backdrop-filter: blur(1px);
}

/* Alternative approach with black glow outline */
.attr-detail-title.black-glow {
    color: var(--text-white) !important;
    text-shadow: 
        /* Multiple black shadows for strong outline effect */
        -2px -2px 0 rgba(0, 0, 0, 0.9),
        2px -2px 0 rgba(0, 0, 0, 0.9),
        -2px 2px 0 rgba(0, 0, 0, 0.9),
        2px 2px 0 rgba(0, 0, 0, 0.9),
        /* Soft glow */
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4);
    
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

/* Professional subtle version */
.attr-detail-title.professional {
    color: var(--text-white) !important;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4);
    
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    
    /* Optional: subtle backdrop */
    position: relative;
}

.attr-detail-title.professional::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.7;
}

/* Enhanced readability with background bar */
.attr-detail-title.with-backdrop {
    color: var(--text-white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    
    position: relative;
    padding: var(--spacing-4) var(--spacing-8);
}

.attr-detail-title.with-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .attr-detail-title {
        font-size: clamp(2rem, 5vw, 3rem);
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.8),
            0 2px 6px rgba(0, 0, 0, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 767.98px) {
    .attr-detail-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: var(--spacing-6);
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 575.98px) {
    .attr-detail-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: var(--spacing-4);
        text-shadow: 
            0 1px 2px rgba(0, 0, 0, 0.9),
            0 2px 4px rgba(0, 0, 0, 0.7);
    }
}