/* Travel Guide Common Styles */

:root {
    --travel-accent: linear-gradient(135deg, #e3005c 0%, #ff2e62 100%);
    --travel-glass: rgba(255, 255, 255, 0.95);
    --travel-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --travel-heading: #1a1a1a;
    --bg-light: rgb(255 215 237);
}

/* Page Layout */
.travel-guide-page {
    background-color: #fcfcfc;
}
.bg-light-pink {
    background-color: var(--bg-light);
}
/* Premium Breadcrumb for Guides */
.travel-guide-page .breadcrumb-wrapper {
    background: linear-gradient(135deg, #e3005c 0%, #1a2a4d 100%);
    padding: 60px 0;
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}

.travel-guide-page .breadcrumb-title { 
    color: #fff !important; 
    font-size: 36px; 
    font-weight: 800; 
    margin-bottom: 15px; 
}

.travel-guide-page .breadcrumb-item a, 
.travel-guide-page .breadcrumb-item.active { 
    color: rgba(255,255,255,0.8) !important; 
}

.travel-guide-page .breadcrumb-item+.breadcrumb-item::before { 
    color: rgba(255,255,255,0.5); 
}

/* Modern Article Headings */
.article-body h2 { 
    font-size: 32px;
    color: var(--travel-heading); 
    font-weight: 800;
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.article-body h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--travel-accent);
    border-radius: 2px;
}

/* Detail Card Styling */
.attraction-detail-box {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.attraction-img {
    overflow: hidden;
    border-radius: 20px;
    margin: 25px 0;
}

.attraction-img img { 
    width: 100%;
    height: auto; /* Fixed as per user request */
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.main-article-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--travel-shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Sidebar Modern UI (Matches Vehicle Details style) */
.sticky-top {
    z-index: 10 !important;
    top: 100px;
}

.guide-sidebar-form {
    border-radius: 24px !important;
    background: #f8f9fa !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
    overflow: hidden;
    margin-bottom: 40px;
}

.guide-sidebar-form .guide-form-header {
    background: #004e9e !important;
    padding: 40px 25px 70px !important;
    text-align: center;
}

.guide-sidebar-form .guide-form-header h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.guide-sidebar-form .guide-form-header p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 0; text-align: center !important;}

.guide-sidebar-form .guide-form-body {
    background: #fff;
    margin: -45px 20px 20px;
    border-radius: 25px;
    padding: 30px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.guide-input-group {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 8px 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.guide-input-group .form-control, .guide-input-group .form-select, .guide-input-group textarea {
    background: transparent !important;
    border: none !important;
    font-size: 14px;
    padding: 8px 0 !important;
    width: 100%;
}

.guide-input-group textarea {
    resize: none;
    min-height: 60px;
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.custom-select-trigger:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger:after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 15px);
    left: -15px;
    right: -15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 100;
    padding: 10px;
    border: 1px solid #eee;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.custom-option:hover {
    background: #f5f7fa;
    color: #e3005c;
}

.custom-option.selected {
    background: rgba(227, 0, 92, 0.05);
    color: #e3005c;
    font-weight: 600;
}

/* Distance & Utility Cards */
.hover-up { 
    transition: all 0.3s ease; 
}

.hover-up:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; 
    border-color: #e3005c !important; 
}

.distance-card i {
    color: #e3005c !important;
}

/* Intro Section Highlight */
.intro-box {
    border-left: 5px solid #e3005c !important;
}

@media (max-width: 991px) {
    .attraction-img img { height: 280px; }
    .travel-guide-page .breadcrumb-title { font-size: 24px; line-height: normal; }
}
