/* Blog Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-header p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.table-of-contents h2 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-size: 1.8em;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
}

.toc-list {
    list-style: none;
}

.toc-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.toc-item:hover {
    background: #fff3e0;
    transform: translateX(10px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.2);
}

.toc-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
}

.toc-item a:hover {
    color: #ff6b35;
}

.tour-number {
    font-weight: bold;
    color: #ff6b35;
    font-size: 1.2em;
    margin-right: 10px;
}

.tour-name {
    flex: 1;
}

.tour-price {
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95em;
}

/* Tour Section */
.tour-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 100px;
}

.tour-section h2 {
    color: #ff6b35;
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-section h2 .number {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.tour-price-box {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tour-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.tour-highlights {
    margin-top: 25px;
}

.tour-highlights h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.tour-highlights ul {
    list-style: none;
    padding-left: 0;
}

.tour-highlights li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.tour-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2em;
}

.tour-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #ff8c42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-secondary:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5em;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ff8c42;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8em;
    }

    .blog-header p {
        font-size: 1em;
    }

    .table-of-contents {
        padding: 20px;
    }

    .toc-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tour-price {
        align-self: flex-start;
    }

    .tour-section {
        padding: 25px;
    }

    .tour-section h2 {
        font-size: 1.5em;
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-container {
        padding: 20px 10px;
    }

    .blog-header {
        padding: 30px 15px;
    }

    .blog-header h1 {
        font-size: 1.5em;
    }

    .tour-section {
        padding: 20px;
    }
}
