* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4431c;
    text-decoration: none;
}

.logo-icon {
    background-size: cover;
    background-position: center;
    width: 120px;
    height: 70px;
    background-color: #d4431c;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d4431c;
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: #d4431c !important;
    font-weight: 600;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.content {
    min-height: 70vh;
    height: auto;
    background: linear-gradient(135deg, rgba(212, 67, 28, 0.8), rgba(244, 196, 48, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f4c430" width="1200" height="800"/><path fill="%23d4431c" d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z"/><circle fill="%23fff" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23fff" opacity="0.1" cx="800" cy="100" r="80"/><circle fill="%23fff" opacity="0.1" cx="1000" cy="200" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 110px 50px;
    text-align: center;
    color: white;
    position: relative;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Blog Posts Section */
.posts-section {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #f4c430;
    color: #d4431c;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 67, 28, 0.3);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.post-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.post-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
}

.post-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-status.published {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.post-status.draft {
    background: rgba(255, 152, 0, 0.9);
    color: white;
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

        .price-tag {
            background: linear-gradient(135deg, #f4c430, #d4431c);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .post-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .itinerary-highlights {
            margin-bottom: 20px;
        }

        .highlights-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #d4431c;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .highlights-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .highlight-item {
            background: rgba(244, 196, 48, 0.1);
            color: #d4431c;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(244, 196, 48, 0.3);
        }
.post-actions {
    display: flex;
    gap: 10px;
}

.btnP {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    box-shadow: 0 3px 10px rgba(212, 67, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 67, 28, 0.4);
}

.btn-outline {
    background: transparent;
    color: #d4431c;
    border: 2px solid #d4431c;
}

.btn-outline:hover {
    background: #d4431c;
    color: white;
}

/* Search Bar */
.search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px;
    display: flex;
    max-width: 500px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-input {
    font-family: 'Poppins', sans-serif !important;
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 1rem;
    background: transparent;
    color: #333;
}

.search-btn {
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 67, 28, 0.4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: rgba(245, 245, 245, 0.968);
    color: #d4431c !important;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #f4c430;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #d4431c;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f4c430;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: center;
    }

    .nav-menu.show {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }

    .logo-icon {
        width: 80px;
        height: 50px;
    }

    .content {
        padding: 80px 20px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .content .subtitle {
        font-size: 1.1rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .search-container {
        max-width: 90%;
    }
}