:root {
    --primary: #08aae2;
    --primary-dark: #0690c0;
    --primary-light: #e0f5ff;
    --accent: #ff7a00;
    --dark: #0d1b2a;
    --text: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-soft: #f4f8fb;
    --border: #e5e7eb;
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
}

.blog-hero {
    position: relative;
    background: url('../images/spiti-mountain.webp') center center / cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 26, 50, 0.82) 0%, rgba(8, 170, 226, 0.45) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 60px 20px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 170, 226, 0.2);
    border: 1px solid rgba(8, 170, 226, 0.5);
    color: #7de6ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    animation: fadeInDown 0.7s ease both;
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.blog-hero h1 .hl {
    color: #08aae2 !important;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 30px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.breadcrumb-blog li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-blog li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-blog li a:hover {
    color: #08aae2;
}

.breadcrumb-blog li.sep {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-blog li.active {
    color: #08aae2;
    font-weight: 600;
}

.scroll-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 3;
}

.blog-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 360px;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--bg-soft);
    outline: none;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8, 170, 226, 0.12);
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 15px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.blog-main-section {
    padding: 70px 0 90px;
    background: var(--bg-soft);
}

.blog-grid-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.featured-post {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 380px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-post:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.featured-img {
    position: relative;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.featured-post:hover .featured-img img {
    transform: scale(1.06);
}

.featured-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(8, 26, 50, 0.7) 0%, transparent 100%);
}

.featured-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.featured-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 700;
}

.featured-body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-body h2 a:hover {
    color: var(--primary);
}

.featured-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: var(--primary);
    font-size: 12px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(8, 170, 226, 0.3);
}

.btn-read-more:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(8, 170, 226, 0.4);
    color: var(--white);
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.blogs-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(8, 170, 226, 0.15);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.blog-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    color: var(--white);
    z-index: 2;
}

.tag-adventure {
    background: #ef4444;
}

.tag-destination {
    background: #8b5cf6;
}

.tag-tips {
    background: #10b981;
}
.a{
    color:black!important;
}

.tag-spiritual {
    background: #f59e0b;
}

.tag-trekking {
    background: #06b6d4;
}

.read-time-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-body-blog {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.card-meta-row span {
    display: flex;
    align-items: center;
    gap: 4px;
    color black!important;
}

.card-meta-row i {
    color: var(--primary);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.35;
    flex: 1;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.card-title a:hover {
    color: var(--primary);
}

.card-excerpt {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-blog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.author-role {
    font-size: 11px;
    color: var(--text-light);
}

.link-read {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.link-read:hover {
    gap: 9px;
    color: var(--primary-dark);
}

.blog-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 28px;
}

.widget-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-header i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.widget-header h3 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.widget-body {
    padding: 20px 24px;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    border-bottom: 1px solid var(--border);
}

.cat-list li:last-child {
    border-bottom: none;
}

.cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.cat-list li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
}

.cat-count {
    background: var(--bg-soft);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.popular-post-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.popular-post-item:last-child {
    border-bottom: none;
}

.pop-img {
    width: 70px;
    height: 65px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.popular-post-item:hover .pop-img {
    transform: scale(1.05);
}

.pop-info {
    flex: 1;
    min-width: 0;
}

.pop-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pop-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.pop-title a:hover {
    color: var(--primary);
}

.pop-date {
    font-size: 11.5px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pop-date i {
    color: var(--primary);
    font-size: 10px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.tag-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.newsletter-widget::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(8, 170, 226, 0.12);
}

.nl-icon {
    width: 56px;
    height: 56px;
    background: rgba(8, 170, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 24px;
}

.newsletter-widget h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nl-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    margin-bottom: 10px;
    outline: none;
    transition: background 0.3s;
}

.nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.nl-form input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.nl-form button {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
}

.nl-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 170, 226, 0.4);
}

.load-more-wrap {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 170, 226, 0.3);
}

.blog-stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #0690c0 50%, #0579a6 100%);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num sup {
    font-size: 1.4rem;
    vertical-align: super;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.explore-cta {
    background: var(--white);
    padding: 70px 0;
}

.cta-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(8, 170, 226, 0.15);
    border: 1px solid rgba(8, 170, 226, 0.3);
    color: #7de6ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}

.cta-card h2 .hl {
    color: #08aae2 !important;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.65;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: #06c5ff;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 170, 226, 0.35);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-animate .animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
}

.js-animate .animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .blog-grid-container {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .blog-grid-container {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .featured-img {
        height: 260px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .filter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        max-width: 100%;
        width: 100%;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        gap: 20px;
    }

    .blog-main-section {
        padding: 50px 0 70px;
    }
}

.post-meta span {
    color: black !important;
}

/* end blog page */




/* blog inner pages  */





/* --- Breadcrumb Hero --- */
.article-hero {
    position: relative;
    background: linear-gradient(rgba(13, 27, 42, 0.75), rgba(8, 170, 226, 0.55)), url('../images/spiti-mountain.webp') center center / cover no-repeat;
    padding: 95px 0 75px;
    color: #ffffff;
    text-align: center;
}

.hero-cat-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    max-width: 950px;
    margin: 0 auto 20px;
    color: #ffffff;
}

.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.article-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-hero-meta i {
    color: #7de6ff;
}

.breadcrumb-trail {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-trail a:hover {
    color: var(--primary);
}

.breadcrumb-trail .active {
    color: #7de6ff;
}

/* --- Article Layout --- */
.article-wrapper {
    padding: 70px 0 90px;
    background-color: var(--bg-soft);
}

.article-content-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
}

.featured-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.article-intro {
    font-size: 1.18rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.85;
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

/* Semantic Typography: Only 1 primary h2 for sections, clean h3 for subsections */
.article-content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 45px 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.article-content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.article-content-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 30px 0 12px;
}

.article-content-card p {
    font-size: 16px;
    margin-bottom: 22px;
    color: var(--text-body);
}

.article-content-card a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.article-content-card a:hover {
    color: var(--primary-dark);
}

/* --- Route Comparison & Tips --- */
.route-info-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin: 20px 0 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.route-info-box h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.route-info-box p {
    font-size: 15px;
    margin: 0;
    color: var(--text-body);
}

/* --- Bullet / List Style --- */
.styled-article-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.styled-article-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 15.5px;
    color: var(--text-body);
}

.styled-article-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* --- Itinerary Timeline --- */
.itinerary-list {
    position: relative;
    padding-left: 28px;
    border-left: 2px solid #cbd5e1;
    margin: 30px 0 40px 10px;
}

.itinerary-step {
    position: relative;
    margin-bottom: 24px;
}

.itinerary-step:last-child {
    margin-bottom: 0;
}

.itinerary-step::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary);
}

.itinerary-step strong {
    display: block;
    font-size: 15.5px;
    color: #0f172a;
    margin-bottom: 4px;
}

.itinerary-step p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-muted);
}

/* --- Share & Tags --- */
.article-footer-meta {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.article-tags span {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

.article-tags a {
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.article-tags a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons span {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-fb {
    background: #1877f2;
}

.share-wa {
    background: #25d366;
}

.share-tw {
    background: #1da1f2;
}

/* --- Sidebar Widgets --- */
.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 26px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.sidebar-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: var(--primary);
}

.sidebar-cta-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(8, 170, 226, 0.15);
    border-radius: 50%;
}

.sidebar-cta-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 12px;
}

.sidebar-cta-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

.btn-sidebar-book {
    display: block;
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-sidebar-book:hover {
    background: #06c5ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 170, 226, 0.4);
}

/* Related Packages in Sidebar */
.related-package-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-package-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-package-img {
    width: 75px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-package-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.35;
}

.related-package-info h5 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.related-package-info h5 a:hover {
    color: var(--primary);
}

.related-package-price {
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 991px) {
    .article-content-card {
        padding: 30px 24px;
    }

    .featured-main-img {
        height: 320px;
    }

    .article-sidebar {
        margin-top: 50px;
        position: relative;
        top: 0;
    }
}