/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

/* Blog Post Styles */
.blog-card-container {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    margin-top: -4rem; /* Overlap with hero */
    position: relative;
    z-index: 20;
}

@media (min-width: 768px) {
    .blog-card-container {
        padding: 4rem;
        margin-top: -6rem;
    }
}

.blog-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #374151; /* gray-700 */
    font-size: 1.125rem; /* lg */
}

.blog-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.875rem; /* 3xl */
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem; /* 2xl */
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #E63946; /* primary */
    background-color: #F9FAFB; /* gray-50 */
    padding: 1.5rem 2rem;
    font-style: italic;
    font-size: 1.25rem;
    color: #4B5563;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-content img {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    height: auto;
}

.blog-content a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.blog-content a:hover {
    border-bottom-color: #E63946;
}

.blog-content strong {
    font-weight: 700;
    color: #111827;
}

/* Lead paragraph style */
.blog-lead {
    font-size: 1.25rem; /* xl */
    line-height: 1.8;
    color: #4B5563; /* gray-600 */
    font-weight: 300;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #E5E7EB;
}

@media (min-width: 768px) {
    .blog-lead {
        font-size: 1.5rem; /* 2xl */
    }
}

.mt-0 {
    margin-top: 0 !important;
}

.social-share-section a{
    color: #fff !important
}

/* Article Content - Universal styling for rich text content */
.article-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #374151;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .article-content {
        font-size: 1.0625rem;
    }
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h1 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.25rem;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.article-content h4 {
    font-size: 1.25rem;
}

.article-content h5 {
    font-size: 1.125rem;
}

.article-content h6 {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .article-content h1 {
        font-size: 2.25rem;
    }
    
    .article-content h2 {
        font-size: 2rem;
    }
    
    .article-content h3 {
        font-size: 1.75rem;
    }
    
    .article-content h4 {
        font-size: 1.5rem;
    }
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.625rem;
    padding-left: 0.5rem;
    line-height: 1.7;
}

.article-content li::marker {
    color: #E63946;
    font-weight: 700;
}

.article-content ul ul,
.article-content ol ul,
.article-content ul ol,
.article-content ol ol {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
}

.article-content blockquote {
    border-left: 4px solid #E63946;
    background: linear-gradient(to right, #FEF2F2 0%, #FFF5F5 100%);
    padding: 1.25rem 1.75rem;
    font-style: italic;
    font-size: 1.0625rem;
    color: #4B5563;
    margin: 2rem 0;
    border-radius: 0 0.75rem 0.75rem 0;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.08);
}

@media (min-width: 768px) {
    .article-content blockquote {
        font-size: 1.125rem;
        padding: 1.5rem 2rem;
    }
}

.article-content img {
    border-radius: 1rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.18);
}

.article-content a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.article-content a:hover {
    border-bottom-color: #E63946;
    color: #C42E3A;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: #111827;
}

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

.article-content code {
    background-color: #F3F4F6;
    color: #DC2626;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875em;
    font-weight: 600;
}

.article-content pre {
    background-color: #1F2937;
    color: #F9FAFB;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-content pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 400;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #FFFFFF;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-content th,
.article-content td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.article-content th {
    background-color: #F9FAFB;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.025em;
}

.article-content tr:hover {
    background-color: #FAFAFA;
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content hr {
    border: none;
    border-top: 2px solid #E5E7EB;
    margin: 2.5rem 0;
}

.article-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
}

/* First paragraph larger (lead) */
.article-content > p:first-of-type {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4B5563;
}

@media (min-width: 768px) {
    .article-content > p:first-of-type {
        font-size: 1.1875rem;
    }
}

/* Product Detail Page Styles */

/* Product Summary (Lead Text) */
.product-summary {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #374151;
    font-weight: 400;
}

@media (min-width: 768px) {
    .product-summary {
        font-size: 1.25rem;
        line-height: 1.8;
    }
}

/* Highlights Section */
.highlights-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 768px) {
    .highlights-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: #F9FAFB;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background-color: #F3F4F6;
    transform: translateX(4px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #10B981;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.highlight-text {
    flex: 1;
    color: #1F2937;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .highlight-text {
        font-size: 1rem;
    }
}

/* Section Titles */
.section-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #E63946;
    display: inline-block;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Itinerary Timeline */
.itinerary-container {
    position: relative;
}

.itinerary-step {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2rem;
}

.itinerary-step:last-child {
    padding-bottom: 0;
}

.itinerary-step::before {
    content: '';
    position: absolute;
    left: 0.4375rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #E5E7EB 0%, #E5E7EB 100%);
}

.itinerary-step:last-child::before {
    display: none;
}

.itinerary-dot {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.125rem;
    height: 1.125rem;
    background-color: #E63946;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #FEE2E2;
    z-index: 10;
}

.itinerary-content {
    background-color: #FFFFFF;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.7;
    transition: all 0.2s ease;
}

.itinerary-content:hover {
    border-color: #E63946;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .itinerary-content {
        font-size: 1rem;
        padding: 1.5rem 1.75rem;
    }
}

/* Info Cards (Included/Not Included, Meeting Point, Cancellation) */
.info-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card-green {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-color: #A7F3D0;
}

.info-card-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.info-list-item:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

.info-list-item:last-child {
    margin-bottom: 0;
}

.info-icon-check {
    flex-shrink: 0;
    color: #10B981;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0.125rem;
}

.info-icon-cross {
    flex-shrink: 0;
    color: #F87171;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0.125rem;
}

.info-text {
    flex: 1;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .info-text {
        font-size: 1rem;
    }
}

/* Meeting Point Special Styles */
.meeting-location {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px dashed #E5E7EB;
}

.meeting-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.meeting-content {
    flex: 1;
}

.meeting-title {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.meeting-address {
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.faq-item:hover {
    border-color: #E63946;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.faq-summary {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    user-select: none;
}

.faq-summary:hover {
    background-color: #F9FAFB;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9CA3AF;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #E63946;
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.7;
    border-top: 1px solid #F3F4F6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .faq-summary {
        font-size: 1.0625rem;
        padding: 1.5rem 1.75rem;
    }
    
    .faq-content {
        font-size: 1rem;
        padding: 0 1.75rem 1.75rem 1.75rem;
    }
}