:root {
    --samatravel-bg-dark: #0f1012;
    --samatravel-bg-card: #17191c;
    --samatravel-gold: #ffb700;
    --samatravel-text-light: #ffffff;
    --samatravel-font-serif: 'Cormorant Garamond', Georgia, serif;
}

.destinazione-template-wrapper {
    background-color: var(--samatravel-bg-dark);
    color: var(--samatravel-text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

.destinazione-template-wrapper a {
    text-decoration: none;
    color: inherit;
}

.destinazione-template-wrapper h1, 
.destinazione-template-wrapper h2, 
.destinazione-template-wrapper h3 { 
    font-family: var(--samatravel-font-serif) !important; 
    text-transform: none !important; 
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Section */
.route-hero { 
    padding: 180px 8% 80px 8%; 
    background-size: cover; 
    background-position: center; 
    text-align: center; 
}
.route-title { 
    font-size: 3.8rem; 
    margin-bottom: 15px; 
    color: var(--samatravel-text-light);
} 
.route-title span { 
    color: var(--samatravel-gold); 
}
.route-subtitle { 
    color: var(--samatravel-text-light); 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.2rem; 
    opacity: 0.8; 
}

/* Main Container */
.destinazione-container { 
    padding: 60px 8%; 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 50px; 
    max-width: 1400px;
    margin: 0 auto;
}

.info-section h2 { 
    color: var(--samatravel-gold); 
    font-size: 2.4rem; 
    margin-top: 35px; 
    margin-bottom: 20px; 
    border-bottom: 1px solid rgba(255,183,0,0.1); 
    padding-bottom: 5px; 
}
.info-section p { 
    color: #e0e0e0; 
    margin-bottom: 20px; 
    font-size: 1.05rem; 
    text-align: justify; 
}
.info-section ul { 
    margin-left: 20px; 
    margin-bottom: 25px; 
    color: #e0e0e0; 
    list-style-type: disc;
}
.info-section li { 
    margin-bottom: 10px; 
    font-size: 1.05rem; 
}
.info-section li strong { 
    color: var(--samatravel-gold); 
    font-weight: 600; 
}

/* Sidebar Dynamic Sticky */
.sidebar-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    align-items: stretch; 
}

.sidebar-img { 
    width: 100%; 
    border-radius: 8px; 
    border: 1px solid rgba(255, 183, 0, 0.2); 
    object-fit: cover; 
    height: auto;
}

.info-sidebar {
    background-color: var(--samatravel-bg-card); 
    padding: 50px 40px; 
    border: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%; 
    max-width: 400px; 
    margin: 0 auto;   
    position: -webkit-sticky; 
    position: sticky; 
    top: 100px; 
    z-index: 10;
}
.sidebar-subtitle { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--samatravel-gold); 
    font-weight: 600; 
    margin-bottom: 15px; 
}
.info-sidebar h2 { 
    font-size: 2.2rem; 
    font-family: var(--samatravel-font-serif); 
    margin-bottom: 40px; 
    line-height: 1.2; 
    font-weight: 400; 
    color: var(--samatravel-text-light);
}
.info-sidebar h2 em { 
    font-family: var(--samatravel-font-serif); 
    font-style: italic; 
    display: block; 
    color: var(--samatravel-gold); 
}
.sidebar-list { 
    list-style: none !important; 
    padding: 0 !important;
    margin: 0 0 50px 0 !important;
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}
.sidebar-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
}
.sidebar-item svg { 
    width: 20px; 
    height: 20px; 
    fill: var(--samatravel-gold); 
    margin-top: 3px; 
    flex-shrink: 0;
}
.item-label { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: #ffffff; 
    font-weight: 600; 
    margin-bottom: 4px; 
}
.item-value { 
    font-size: 1.1rem; 
    color: white; 
}
.item-value a {
    color: white !important;
    transition: color 0.3s;
}
.item-value a:hover {
    color: var(--samatravel-gold) !important;
}

/* Action Buttons */
.btn-preventivo {
    display: block; 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 15px; 
    background-color: var(--samatravel-gold); 
    color: #ffffff !important;
    border: 2px solid #ffffff; 
    text-align: center; 
    font-weight: 700; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
}
.btn-preventivo:hover { 
    background-color: transparent; 
    border-color: var(--samatravel-gold); 
    color: var(--samatravel-gold) !important; 
}
.btn-whatsapp-sidebar {
    display: block; 
    text-align: center; 
    background-color: #ffffff; 
    color: var(--samatravel-gold) !important; 
    border: 2px solid var(--samatravel-gold);
    padding: 15px; 
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    transition: all 0.3s; 
}
.btn-whatsapp-sidebar:hover { 
    background-color: var(--samatravel-gold); 
    border-color: #ffffff; 
    color: #ffffff !important; 
}

/* Griglia Flotta (Originale) */
.details-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-top: 30px; 
    clear: both;
}
.detail-card { 
    background-color: var(--samatravel-bg-card); 
    padding: 25px; 
    border-radius: 6px; 
    border-left: 3px solid var(--samatravel-gold); 
}
.detail-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 10px; 
    color: var(--samatravel-gold); 
}
.detail-card p { 
    font-size: 1rem; 
    margin-bottom: 0; 
    color: #d0d0d0; 
    text-align: left; 
}
.vehicle-img { 
    width: 100%; 
    height: 130px; 
    object-fit: contain; 
    margin-bottom: 15px; 
    background: transparent !important;
    border: none !important;
}

/* Responsive */
@media (max-width: 992px) { 
    .destinazione-container { 
        grid-template-columns: 1fr; 
    } 
    .info-sidebar { 
        position: static; 
    } 
}
@media (max-width: 768px) { 
    .route-title { 
        font-size: 2.4rem; 
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
}
