/* Attraction Details Page Styles */

/* Custom Comment Wrapper */
.custom-comment-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    margin-bottom: 20px;
    width: 100%;
}

.custom-comment-wrapper .fb-comments iframe {
    width: 100% !important;
    min-height: 150px !important;
    max-height: 600px !important;
    border: none;
    background-color: transparent;
    display: block;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddCommentInput,
.custom-comment-wrapper .fb-comments iframe .UFIInputContainer {
    display: flex !important;
    align-items: center;
    padding: 10px;
    border: none !important;
    background-color: #f9f9f9 !important;
    border-radius: 4px;
    width: 100% !important;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddCommentInput {
    flex: 1;
    border: none !important;
    outline: 0 !important;
    font-size: 14px;
    color: #333;
    padding-left: 10px;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddCommentInput::placeholder {
    color: #888;
}

.custom-comment-wrapper .fb-comments iframe .UFIImageBlockImage {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px !important;
    border-radius: 50% !important;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddComment .UFICommentAttachmentButtons {
    margin-left: 10px !important;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddComment .UFICommentAttachmentButtons img {
    width: 20px !important;
    height: 20px !important;
    opacity: .6;
    transition: opacity .3s;
}

.custom-comment-wrapper .fb-comments iframe .UFIAddComment .UFICommentAttachmentButtons img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .custom-comment-wrapper .fb-comments iframe {
        min-height: 200px !important;
    }
    
    .custom-comment-wrapper .fb-comments iframe .UFIAddCommentInput {
        font-size: 12px;
    }
    
    .custom-comment-wrapper .fb-comments iframe .UFIImageBlockImage {
        width: 30px !important;
        height: 30px !important;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
}

.faq-question {
    margin: 0;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s;
}

.faq-item.active .faq-question:after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    display: none;
    padding: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0 0 10px 0;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Enhanced Attraction Details Page Styles */
.attraction-hero {
    position: relative;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.attraction-hero figure {
    margin: 0;
    position: relative;
}

.attraction-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info Card Styles */
.attraction-info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    margin: -50px 20px 30px 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.attraction-info-card h2 {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 2px;
}

.info-item-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.info-item-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Section Styles */
.content-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
    font-family: Verdana, Geneva, sans-serif;
}

.content-section h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.content-section h2 i {
    color: #667eea;
    margin-right: 10px;
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

.content-section ul {
    padding-left: 25px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

/* Description Text - Match paragraph styling exactly */
.content-section .description_text {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
    margin-bottom: 0;
}

.content-section .description_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section .description_text p:last-child {
    margin-bottom: 0;
}

.content-section .description_text ul {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 15px;
}

.content-section .description_text ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.content-section .description_text ol {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 15px;
}

.content-section .description_text ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.content-section .description_text div {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.content-section .description_text span {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.content-section .description_text strong,
.content-section .description_text b {
    font-weight: 600;
    color: #2c3e50;
}

.content-section .description_text em,
.content-section .description_text i {
    font-style: italic;
}

.content-section .description_text a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.content-section .description_text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.content-section .description_text h1,
.content-section .description_text h2,
.content-section .description_text h3,
.content-section .description_text h4,
.content-section .description_text h5,
.content-section .description_text h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content-section .description_text h1 {
    font-size: 1.75rem;
}

.content-section .description_text h2 {
    font-size: 1.5rem;
}

.content-section .description_text h3 {
    font-size: 1.25rem;
}

.content-section .description_text h4 {
    font-size: 1.1rem;
}

.content-section .description_text h5 {
    font-size: 1rem;
}

.content-section .description_text h6 {
    font-size: 0.9rem;
}

/* Gallery Styles */
.gallery-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-section h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Theme Link Styles */
.theme-link {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.theme-link a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.theme-link a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Social Share Styles */
.page-header-small {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header-small h1 {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.header-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-share {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-share a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-share a.facebook {
    background: #3b5998;
}

.social-share a.twitter {
    background: #1da1f2;
}

.social-share a.linkedin {
    background: #0077b5;
}

.social-share a.whatsapp {
    background: #25d366;
}

.social-share a:hover {
    transform: scale(1.1);
}

/* Additional Info Styles */
.additional-info {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #667eea;
}

.additional-info h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
}

.additional-info h3 i {
    color: #667eea;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-label {
    font-weight: 600;
    color: #555;
}

.info-label i {
    margin-right: 5px;
}

.info-value {
    color: #333;
}

.info-value strong {
    color: #ffc107;
}

.info-value .rating-stars {
    color: #ffc107;
    margin-left: 5px;
}

.info-value .rating-denominator {
    color: #999;
}

.info-value a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.info-value a:hover {
    color: #764ba2;
}

.attraction-info-card .google-maps-link,
.attraction-info-card .google-maps-link.attraction-info-card-link {
    color: #fff !important;
}

.attraction-info-card .google-maps-link:hover,
.attraction-info-card .google-maps-link.attraction-info-card-link:hover {
    color: #ffd700 !important;
}

/* Google Maps Link */
.google-maps-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.google-maps-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.google-maps-link i {
    font-size: 1rem;
}

.map-link-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.map-coordinates {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.map-coordinates i {
    margin-right: 5px;
    color: #667eea;
}

/* Sidebar Widget Styles */
.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid #667eea;
}

.sidebar-widget h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.sidebar-widget h3 i {
    color: #667eea;
}

.sidebar-widget p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget a {
    color: #667eea;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.sidebar-widget a:hover {
    color: #764ba2;
}

.sidebar-widget img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.sidebar-widget h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.sidebar-widget h4 a {
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
}

.sidebar-widget h4 a:hover {
    color: #667eea;
}

.sidebar-news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s;
    text-align: center;
}

.sidebar-cta-button:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Related Attractions */
.related-attractions {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
}

.related-attractions h2 {
    color: #2c3e50;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-attractions h2 i {
    color: #667eea;
}

.related-attractions > p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Attraction Cards Grid */
.related-attractions .row {
    margin: 0 -10px;
}

.related-attractions .isotopeSelector {
    padding: 0 10px;
    margin-bottom: 20px;
}

.related-attractions .new-listing-style-fullbg {
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    height: 280px;
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-attractions .new-listing-style-fullbg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.related-attractions .home-page-insight-panel {
    height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.related-attractions .new-listing-style-fullbg:hover .home-page-insight-panel {
    transform: scale(1.05);
}

.related-attractions .insight-desc {
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 20;
    padding: 15px 15px 12px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    border-radius: 0 0 12px 12px;
}

.related-attractions .insight-desc h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-attractions .insight-desc h4 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.related-attractions .insight-desc h4 a:hover {
    color: #ffd700;
}

/* Sidebar More Attractions Section */
.sidebar-widget .fa-map-signs {
    color: #667eea;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .related-attractions .isotopeSelector {
        margin-bottom: 20px;
    }
    
    .related-attractions .new-listing-style-fullbg {
        height: 250px;
    }
    
    .related-attractions .home-page-insight-panel {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .attraction-info-card {
        margin: -30px 10px 20px 10px;
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-social-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-attractions {
        padding: 20px;
    }
    
    .related-attractions h2 {
        font-size: 1.5rem;
    }
    
    .related-attractions .row {
        margin: 0 -5px;
    }
    
    .related-attractions .isotopeSelector {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .related-attractions .new-listing-style-fullbg {
        height: 220px;
    }
    
    .related-attractions .home-page-insight-panel {
        height: 220px;
    }
    
    .related-attractions .insight-desc {
        padding: 12px 10px 10px 10px;
    }
    
    .related-attractions .insight-desc h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .related-attractions .new-listing-style-fullbg {
        height: 200px;
    }
    
    .related-attractions .home-page-insight-panel {
        height: 200px;
    }
}

