/* Blog Hero Section */
.blog-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-image: url('../image/pkg_ladakh.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px; /* Or 40px depending on standard */
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Blog Layout */
.section-padding {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary, #0A1128);
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold, #d4af37);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 95px; /* Pushed down as requested */
    margin-bottom: 30px;
}

.widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary, #0A1128);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold, #d4af37);
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.category-list a i {
    color: var(--gold, #d4af37);
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.category-list a:hover {
    background: var(--primary, #0A1128);
    color: #fff;
    transform: translateX(5px);
}

.category-list a:hover i {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Blog Cards */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold, #d4af37);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.blog-date span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-card-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #777;
    font-family: 'Outfit', sans-serif;
}

.blog-meta span i {
    color: var(--gold, #d4af37);
    margin-right: 5px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary, #0A1128);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--gold, #d4af37);
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary, #0A1128);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--gold, #d4af37);
}

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

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }
    .blog-card-image {
        width: 100%;
        height: 250px;
    }
    .blog-card-content {
        width: 100%;
        padding: 20px;
    }
    .blog-excerpt {
        text-align: justify;
    }
    
    /* Sidebar Mobile Responsiveness */
    .sidebar-widget {
        margin-top: 30px;
        padding: 20px;
    }
    .widget-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .category-list a {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    
    /* Tour Cards Mobile Responsiveness */
    .tour-title {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
    }
    .tour-title i {
        font-size: 1.1rem !important;
        margin-right: 6px !important;
    }
    .feature-tag {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }
    .feature-tag i {
        font-size: 0.85rem !important;
    }
    
    /* Fix horizontal overflow on small screens */
    .grid-3-col {
        grid-template-columns: 1fr !important;
    }

    .tour-content {
        padding: 15px !important;
    }

    .tour-actions {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }

    .tour-actions a {
        padding: 10px 5px !important;
        font-size: 0.85rem !important;
    }

    .tour-actions a i {
        font-size: 0.9rem !important;
        margin-right: 5px !important;
    }

}

/* Tour Cards Design */
.tour-grid-section {
    background-color: #f8f9fa;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.tour-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.08);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1c2a38;
    color: #facc15;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A1128;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.tour-title i {
    color: #facc15; /* yellow icon */
    margin-right: 10px;
    font-size: 1.5rem;
}

.tour-features {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.feature-tag i {
    color: #facc15; /* yellow icon */
    margin-right: 6px;
    font-size: 1rem;
}

.tour-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.tour-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.tour-actions a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-call {
    background: #facc15;
    color: #000;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.btn-call:hover {
    background: #eab308;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .tour-actions {
        flex-direction: column;
    }
}

.breadcrumb {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb a {
    color: var(--gold, #d4af37);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb i {
    font-size: 12px;
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb span {
    color: #fff;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero .subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        height: 10vh;
        min-height: 150px;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .blog-hero .subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px !important;
        margin-bottom: 5px;
    }

    .breadcrumb {
        font-size: 12px !important;
        margin-top: 10px !important;
    }
    
    /* Section Titles Responsive (Left Align & Size Reduce) */
    .section-padding {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        text-align: left !important;
        display: flex;
        align-items: center;
    }
    
    .section-title::after, .section-title::before {
        left: 0 !important;
        transform: none !important;
        margin: 10px 0 0 0 !important;
    }
    
    div[style*="text-align: center; margin-bottom: 50px;"] {
        text-align: left !important;
        margin-bottom: 20px !important;
    }
    
    div[style*="text-align: center; margin-bottom: 50px;"] p {
        text-align: justify !important;
        margin-left: 0 !important;
        font-size: 0.85rem !important;
    }
    
    .blog-title {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    /* Popular Blogs Mobile Responsiveness */
    .pop-blog-card .card-title {
        font-size: 1.35rem !important;
        margin-bottom: 12px !important;
    }
    
    .pop-blog-card .card-desc {
        text-align: justify !important;
        font-size: 0.9rem !important;
    }

    /* Popular Destinations Mobile Responsiveness (Production CSS Slider) */
    .dest-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px !important;
        padding-bottom: 20px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .dest-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .dest-card {
        flex: 0 0 100% !important; /* Show exactly one card */
        scroll-snap-align: center;
        height: 300px !important;
    }
    
    .dest-overlay h3 {
        font-size: 1.5rem !important;
    }
    
    .dest-slider-btn {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        color: #0A1128;
        font-size: 1.2rem;
        align-items: center;
        justify-content: center;
        z-index: 100 !important;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .dest-slider-btn.prev-btn {
        left: 10px !important;
    }
    
    .dest-slider-btn.next-btn {
        right: 10px !important;
    }
}

/* Popular Blogs Cards */
.pop-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.pop-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pop-blog-card .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pop-blog-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pop-blog-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.pop-blog-card .card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pop-blog-card .card-meta-top {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.pop-blog-card .card-meta-top i {
    color: var(--primary, #0A1128);
    margin-right: 5px;
}

.pop-blog-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pop-blog-card .card-title a {
    color: var(--primary, #0A1128);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pop-blog-card .card-title a:hover {
    color: var(--gold, #d4af37);
}

.pop-blog-card .card-desc {
    color: #666;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pop-blog-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
    margin-top: auto;
}

.pop-blog-card .card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #333;
}

.pop-blog-card .card-author i {
    font-size: 1.2rem;
    color: var(--primary, #0A1128);
    background: #e2e8f0;
    padding: 8px;
    border-radius: 50%;
}

.pop-blog-card .btn-read-more {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gold, #d4af37);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.pop-blog-card .btn-read-more i {
    transition: transform 0.3s ease;
}

.pop-blog-card .btn-read-more:hover {
    color: var(--primary, #0A1128);
}

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

/* Popular Destinations Section */
.dest-slider-wrapper {
    position: relative;
    width: 100%;
}

.dest-slider-btn {
    display: none; /* Hidden on desktop */
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.dest-card:hover img {
    transform: scale(1.15);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px 25px;
}

.dest-info {
    width: 100%;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-info {
    transform: translateY(0);
}

.dest-overlay h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 5px 0;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.dest-card:hover .dest-overlay h3 {
    color: var(--gold, #d4af37);
}

.dest-tours {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.4s ease, color 0.3s ease;
}

.dest-tours i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.dest-card:hover .dest-tours {
    opacity: 1;
}

.dest-card:hover .dest-tours i {
    transform: translateX(5px);
    color: var(--gold, #d4af37);
}

/* Travel Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.tip-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--gold, #d4af37);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: var(--primary, #0A1128);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.tip-card:hover .tip-icon {
    background: var(--primary, #0A1128);
    color: var(--gold, #d4af37);
}

.tip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary, #0A1128);
    margin-bottom: 12px;
}

.tip-desc {
    font-family: 'Outfit', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Call To Action Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: url('../image/banner1.png') center/cover no-repeat fixed;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.85); /* Dark primary color overlay */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--gold, #d4af37);
    color: #000;
    border: 2px solid var(--gold, #d4af37);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #0A1128;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
        gap: 12px;
    }
    .cta-buttons a {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
