
/* Main Content Wrapper */
.main-content-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    margin-top: 30px;
    position: relative;
}

.hero-content-section {
    background: var(--gradient-hero);
    color: white;
    padding: 25px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.1)"/></svg>') repeat-x;
    opacity: 0.3;
}

.content-hero-badge {
    background: rgba(197, 149, 91, 0.9);
    color: var(--primary-navy);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.content-hero-badge i {
    font-size: 1.1rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.title-decoration-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 25px auto 0;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.content-body-section {
    padding: 0;
}

.content-card {
    background: white;
    margin: 0;
    position: relative;
}

.content-header {
    background: var(--gradient-elegant);
    padding: 40px;
    border-bottom: 1px solid rgba(197, 149, 91, 0.2);
}

.content-subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    position: relative;
}

.content-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.content-text {
    padding: 50px 40px;
    color: var(--charcoal-deep);
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text h2 {
    font-size: 1.6rem;
    border-bottom: 2px solid rgba(197, 149, 91, 0.2);
    padding-bottom: 10px;
}

.content-text h3 {
    font-size: 1.4rem;
    color: var(--rich-gold);
}

.content-text p {
    margin-bottom: 20px;
    text-align: left;
}

.content-text ul,
.content-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-text a {
    color: var(--rich-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-text a:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: var(--shadow-medium);
}

.content-text blockquote {
    background: var(--light-sand);
    border-left: 5px solid var(--rich-gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: var(--primary-navy);
}

/* Responsive Design for Main Content */
@media (max-width: 768px) {
    .main-content-wrapper {
        margin-top: 20px;
    }
    
    .hero-content-section {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-header {
        padding: 30px 25px;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
    }
    
    .content-text {
        padding: 40px 25px;
        font-size: 1rem;
    }
}

/* Related Articles Section */
.related-articles-section {
    background: var(--gradient-elegant);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.related-articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.05)"/></svg>') repeat-x;
    opacity: 0.5;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(197, 149, 91, 0.3);
}

.section-badge i {
    font-size: 1.1rem;
}

.section-main-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-decoration {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-description {
    color: var(--warm-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.article-card-wrapper {
    display: flex;
}

.related-article-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 149, 91, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
}

.article-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.related-article-card:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 50, 92, 0.8), rgba(26, 75, 102, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.related-article-card:hover .article-overlay {
    opacity: 1;
}

.read-more-badge {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(197, 149, 91, 0.3);
}

.related-article-card:hover .read-more-badge {
    transform: translateY(0);
}

.article-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(197, 149, 91, 0.2);
}

.article-category,
.reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--warm-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.article-category i,
.reading-time i {
    color: var(--rich-gold);
    font-size: 1rem;
}

.article-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    flex-grow: 1;
}

.article-title a {
    color: var(--primary-navy);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.article-title a:hover {
    color: var(--rich-gold);
}

.article-excerpt {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.article-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 149, 91, 0.1);
}

.read-more-btn {
    background: transparent;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.read-more-btn:hover {
    color: var(--rich-gold);
    border-bottom-color: var(--rich-gold);
}

.read-more-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Related Articles */
@media (max-width: 768px) {
    .related-articles-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .section-header-centered {
        margin-bottom: 40px;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-title {
        font-size: 1.2rem;
    }
}
.suggested-tours-section {
    margin-top: 30px;
}

.section-header-simple {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-simple {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.tours-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Modern Tour Card */
.modern-tour-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 149, 91, 0.1);
    position: relative;
}

.modern-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dramatic);
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.tour-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.modern-tour-card:hover .tour-featured-image {
    transform: scale(1.1);
}

.tour-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(197, 149, 91, 0.4);
    backdrop-filter: blur(10px);
}

.currency {
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.tour-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 50, 92, 0.8), rgba(26, 75, 102, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-tour-card:hover .tour-image-overlay {
    opacity: 1;
}

.view-tour-btn {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(197, 149, 91, 0.3);
}

.modern-tour-card:hover .view-tour-btn {
    transform: translateY(0);
}

.view-tour-btn:hover {
    background: var(--warm-bronze);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 149, 91, 0.5);
}

.tour-content-wrapper {
    padding: 25px;
}

.tour-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(197, 149, 91, 0.2);
}

.duration-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.duration-info i {
    color: var(--rich-gold);
    font-size: 1.2rem;
}

.rating-info .stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FFD700;
    font-size: 1rem;
}

.tour-card-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.tour-card-title a {
    color: var(--primary-navy);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.tour-card-title a:hover {
    color: var(--rich-gold);
}

.tour-excerpt {
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 149, 91, 0.1);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-label {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

.price-amount {
    color: var(--rich-gold);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price-unit {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

.book-now-btn {
    background: var(--gradient-hero);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.book-now-btn:hover {
    background: transparent;
    border-color: var(--primary-navy);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 50, 92, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content-wrapper {
        margin-top: 20px;
    }
    
    .hero-content-section {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-header {
        padding: 30px 25px;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
    }
    
    .content-text {
        padding: 40px 25px;
        font-size: 1rem;
    }
    
    .suggested-tours-section {
        margin-top: 50px;
    }
    
    .section-title-simple {
        font-size: 1.4rem;
    }
    
    .tour-content-wrapper {
        padding: 15px;
    }
    
    .tour-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .book-now-btn {
        text-align: center;
        padding: 12px;
    }
    
    .tour-meta-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}
