/* ========== BLOG PAGE STYLES ========== */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=600&fit=crop'); */
    background-size: cover;
    background-position: center;
    padding: 140px 0 80px;
    margin-top: 56px;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.blog-breadcrumb a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-breadcrumb .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.blog-hero-title {
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-meta {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-top: 20px;
}

.meta-item {
    margin-right: 25px;
    display: inline-block;
}

.meta-item i {
    margin-right: 6px;
    color: #ffc107;
}

/* Blog Content Section */
.blog-content-section {
    background: #f8f9fa;
}

/* Blog Article */
.blog-article {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.blog-intro {
    border-left: 4px solid #667eea;
    padding-left: 25px;
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
}

.blog-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.blog-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Content Sections */
.content-section {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
}

.heading-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
}

.subsection-heading {
    font-size: 1.6rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #ffc107;
}

.subsection-heading-sm {
    font-size: 1.4rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.subsection-heading-sm i {
    color: #667eea;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    border-left: 5px solid #ffc107;
    padding: 25px 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.15);
}

.quote-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    color: #ffc107;
    opacity: 0.3;
}

.highlight-box p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-left: 40px;
}

/* Service Type Cards */
.service-type-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.service-type-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.service-type-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-type-header h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.service-type-body {
    padding: 25px;
}

.service-type-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Routes List */
.routes-list {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.route-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #555;
}

.route-item:last-child {
    border-bottom: none;
}

.route-icon {
    color: #667eea;
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Why Rudra Grid */
.why-rudra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-rudra-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.why-rudra-item:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.why-content h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Cab Options */
.cab-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cab-option-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cab-option-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.cab-option-card:hover .cab-icon,
.cab-option-card:hover h5,
.cab-option-card:hover p {
    color: white;
}

.cab-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.cab-option-card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.cab-option-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

/* Booking Info Box */
.booking-info-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
}

.booking-info-box p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.booking-cta {
    text-align: center;
}

/* Final CTA Box */
.final-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.final-cta-box h5 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.final-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-gradient {
    background: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
    padding: 14px 35px;
    font-weight: bold;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: white;
    color: #667eea;
    border-color: white;
    transform: scale(1.05);
}

/* Share Section */
.share-section {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
    margin-top: 40px;
}

.share-section h5 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

/* Contact Widget */
.contact-widget-content {
    padding: 10px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item .label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 3px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-item a:hover {
    color: #667eea;
}

/* Services Widget */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.services-list li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-list li a:hover {
    background: #f8f9ff;
    color: #667eea;
    padding-left: 15px;
}

.services-list li a i {
    color: #667eea;
    margin-right: 12px;
    font-size: 0.85rem;
}

/* Destinations Widget */
.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.destination-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.destination-item:hover {
    background: #f8f9ff;
    transform: translateX(5px);
}

.destination-item img {
    width: 80px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.destination-info h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.destination-info span {
    font-size: 0.85rem;
    color: #999;
}

.destination-info i {
    color: #667eea;
    font-size: 0.75rem;
    margin-right: 4px;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget-content {
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.cta-widget-content h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.cta-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.cta-list li i {
    color: #ffc107;
    margin-right: 12px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-article {
        padding: 35px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
}

/* ========== NEW BLOG ARTICLE STYLES ========== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #667eea;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.feature-text strong {
    color: #333;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-grid-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-grid-item:hover {
    border-color: #ffc107;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.2);
}

.service-grid-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-grid-item:hover .service-grid-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-grid-item h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.service-grid-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Benefits Cards Grid */
.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover i {
    color: white;
}

.benefit-card p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.benefit-card:hover p {
    color: white;
}

/* Article Header */
.article-header {
    border-bottom: 3px solid #667eea;
    padding-bottom: 20px;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .feature-list-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .feature-number {
        margin-bottom: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .benefit-item i {
        font-size: 1.1rem;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .service-grid-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .service-grid-item h5 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-article {
        padding: 35px;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .blog-article {
        padding: 25px;
    }
    
    .blog-hero {
        padding: 120px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .meta-item {
        margin-right: 15px;
        font-size: 0.9rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .heading-icon {
        margin-bottom: 10px;
    }
    
    .subsection-heading {
        font-size: 1.3rem;
    }
    
    .why-rudra-grid {
        grid-template-columns: 1fr;
    }
    
    .cab-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-article {
        padding: 20px;
    }
    
    .blog-hero-title {
        font-size: 1.5rem;
    }
    
    .blog-intro {
        padding: 20px;
    }
    
    .blog-intro .lead {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 1.4rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* ========== ADDITIONAL BLOG CONTENT STYLES ========== */

/* Additional Blog Content Section */
.additional-blog-content {
    margin-top: 50px;
    padding-top: 40px;
}

.blog-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
    margin-bottom: 30px;
}

/* Benefits List */
.benefits-list {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
    color: #555;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 2rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Services Offered List */
.services-offered-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-offered-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    border: 2px solid #667eea;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-offered-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-details h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.service-details p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Popular Routes Box */
.popular-routes-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.route-card {
    background: white;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.route-card:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe4b3 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.route-card i {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.route-card p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Benefits Cards */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.benefit-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Booking Instruction Box */
.booking-instruction-box {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe4b3 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
}

.booking-instruction-box p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    line-height: 1.8;
}

/* Conclusion CTA Box */
.conclusion-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.conclusion-cta-box h5 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.conclusion-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive for Additional Content */
@media (max-width: 768px) {
    .blog-main-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-routes-box {
        grid-template-columns: 1fr;
    }
    
    .benefits-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .service-offered-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .blog-main-title {
        font-size: 1.6rem;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* ========== READ FULL ARTICLE BUTTON STYLES ========== */

/* Blog Grid Section */
.blog-grid-section {
    background: #f8f9fa;
}

/* Blog Card Styles */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.blog-card-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

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

.blog-card-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.blog-card-meta i {
    color: #667eea;
}

.blog-card-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .btn {
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.blog-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

/* Responsive for Blog Grid */
@media (max-width: 991px) {
    .blog-card-title {
        font-size: 1.4rem;
    }
    
    .blog-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 30px;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
}

/* Read Full Article Button */
.blog-intro .btn {
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-intro .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

.blog-intro .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.blog-intro .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Collapse Animation */
.collapse {
    transition: all 0.5s ease-in-out;
}

.collapsing {
    transition: height 0.5s ease;
}

/* Button State Change */
.btn[aria-expanded="true"] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.btn[aria-expanded="true"] i::before {
    content: "\f146"; /* fa-minus-square */
}

.btn[aria-expanded="true"]:hover {
    background: #764ba2;
    border-color: #764ba2;
}