/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f9fbfd;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #003366;
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #002855;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #007BFF;
}

.breadcrumb a:hover {
    color: #0056b3;
}

/* Post Header - Now Clearly Visible */
.post-header {
    background: linear-gradient(135deg, #003366, #0055aa);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.post-header h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
}

.post-header .post-meta {
    font-size: 0.95rem;
    color: #e0e7ff;
}

.post-header .post-meta span {
    margin: 0 10px;
    white-space: nowrap;
}

.post-header .post-meta a {
    color: #a0d8f1;
    text-decoration: underline;
}

/* Content */
.post-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #003366;
    margin: 1.5em 0 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
    color: #0055aa;
    margin: 1.2em 0 0.8em;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ul {
    margin: 1rem 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.highlight {
    background: #fffacd;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Combo Offers Section */
.combo-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.combo-card {
    flex: 1;
    min-width: 300px;
    background: #f1f8ff;
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-8px);
    border-color: #007BFF;
}

.combo-card.featured {
    border: 2px solid #FFC107;
    background: #fffbea;
    position: relative;
}

.combo-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FFC107;
    color: #003366;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.combo-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #007BFF;
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-left: 10px;
}

.save-tag {
    display: inline-block;
    background: #28a745;
    color: white;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

.combo-features {
    list-style: none;
    margin: 20px 0;
}

.combo-features li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}

.combo-features li::before {
    content: "✔";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007BFF;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

.btn-yellow {
    background: #FFC107;
    color: #003366;
}

.btn-yellow:hover {
    background: #e0a800;
}

/* Why Bundle? */
.why-bundle {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 5px solid #007BFF;
}

.why-bundle h3 {
    color: #003366;
    margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #003366, #0055aa);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.cta-button {
    padding: 14px 35px;
    background: #FFC107;
    color: #003366;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

/* Support Section (Above Footer) */
.support-section {
    text-align: center;
    margin: 50px 0 30px;
    padding: 30px;
    background: #e3f2fd;
    border-radius: 12px;
    border: 1px solid #bbdefb;
}

.support-section h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-section p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 180px;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.support-btn i {
    font-size: 1.3rem;
}

.support-whatsapp {
    background: #25D366;
}

.support-telegram {
    background: #0088cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }
    .post-content {
        padding: 25px;
    }
    .combo-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .support-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Note */
.footer-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}