:root {
    --accent: #0f3d9e;
    --deep: #0d0f1a;
    --gold: #c7a24f;
    --soft: #f8f9fa
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #6c5ce7);
    z-index: 9999;
    width: 0
}

.content-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0)
}

.premium-section {
    background: linear-gradient(180deg, #ffffff 0%, #dde6f0ff 100%);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    padding: 32px;
    margin: 28px 0
}

.premium-heading {
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(90deg, var(--accent), #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
    margin: 30px 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .1)
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: start
}

.reason-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    padding: 18px 20px;
    transition: transform .25s ease, box-shadow .25s ease
}

.reason-card h4 {
    margin: 0 0 6px;
    color: var(--deep);
    font-size: 1.05rem
}

.reason-card p,
.reason-card li {
    margin: 0;
    color: #444
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .12)
}

.section-lead {
    font-size: 1.15rem;
    color: #2a2a2a;
    margin-bottom: 16px
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.package-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px 20px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1)
}

.package-card h3 {
    margin-bottom: 8px
}

.accent {
    color: var(--accent)
}

.cta-duo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.btn-ghost {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08)
}

@media (max-width:992px) {

    .package-grid,
    .fact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    .premium-section {
        padding: 22px
    }

    .featured-image {
        height: 260px
    }

    .table-of-contents {
        top: 70px
    }
}

.header-background {
    position: relative;
    overflow: hidden
}

.header-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 15, 26, .65) 0%, rgba(13, 15, 26, .35) 45%, rgba(13, 15, 26, .1) 100%);
    backdrop-filter: saturate(1.2) blur(2px)
}



.btn.btn-primary {
    background: linear-gradient(45deg, var(--accent), #6c5ce7);
    border: none;
    border-radius: 28px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25);
    filter: saturate(1.1)
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent), var(--gold));
    color: #fff;
    border: none;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25)
}

.btn-ghost {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
    color: #fff;
    background: linear-gradient(45deg, var(--accent), var(--gold));
    border-color: transparent
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.content-section.visible .list li,
.content-section.visible .package-card li {
    opacity: 0;
    animation: fadeUp .45s ease forwards
}

.content-section.visible .list li:nth-child(1),
.content-section.visible .package-card li:nth-child(1) {
    animation-delay: .05s
}

.content-section.visible .list li:nth-child(2),
.content-section.visible .package-card li:nth-child(2) {
    animation-delay: .1s
}

.content-section.visible .list li:nth-child(3),
.content-section.visible .package-card li:nth-child(3) {
    animation-delay: .15s
}

.content-section.visible .list li:nth-child(4),
.content-section.visible .package-card li:nth-child(4) {
    animation-delay: .2s
}

.content-section.visible .list li:nth-child(5),
.content-section.visible .package-card li:nth-child(5) {
    animation-delay: .25s
}

.content-section.visible .list li:nth-child(6),
.content-section.visible .package-card li:nth-child(6) {
    animation-delay: .3s
}

.premium-section,
.reason-card,
.package-card {
    transition: box-shadow .25s ease, transform .25s ease
}

/* ========== Merged from premium.css ========== */

.blog-header {
    text-align: center;
    padding-top: 60px ;
    color: white;
    position: relative;
    z-index: 1
   
}
.blog-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
}
.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
     /* margin-top: 150px; */
    /* margin-bottom: 15px; */
    line-height: 1.2;
    max-width:1250px;
    margin:150px auto 15px auto 

}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* margin: 20px 0 30px 0; */
    padding-bottom: 30px;
    font-size: 0.95rem;
    
    opacity: 0.9;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.blog-content h2 {
    color: #0189ff;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.blog-content h3 {
    color: #0189ff;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

/* .blog-content p {
    margin-bottom: 20px;
} */

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

.blog-content li {
    margin-bottom: 10px;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #2c5530;
}

.table-of-contents h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin: 8px 0;
}

.table-of-contents a {
    color: #0189ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #0189ff;
    text-decoration: underline;
}

.cta-section {
    background: #191514;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    color: white;
    margin-bottom: 15px;
}

.btn-cta {
    background: white;
    color: #0189ff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #0189ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-content .permit-info li {
    line-height: normal;
    margin-bottom: 0;
    padding: 0;
}


@media (max-width: 768px) {
    .blog-header {
        padding-top: 20px; /* Reduce space above header */
    }

    .blog-title {
        margin: 110px auto 10px auto;
        font-size: 1.5rem; 
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-container {
        padding: 15px;
    }
}


