/* ============================================
   MAIN STYLESHEET - SWJ Swaraj Tour & Travels
   Complete CSS for all pages
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8fafc;
    overflow-x: hidden;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease, visibility .4s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #f1f5f9;
    border-top-color: #f97316;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}
.skip-to-content:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: #f97316;
    color: #fff;
    z-index: 99999;
    border-radius: 8px;
    font-weight: 600;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.blog-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
    transition: all .3s ease;
    min-height: 72px;
}
.blog-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .06);
}

/* Header Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.header-brand img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}
.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.header-brand-text .brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.5px;
}
.header-brand-text .brand-name span {
    color: #f97316;
}
.header-brand-text .brand-tagline {
    font-size: 9px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -1px;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a,
.nav-links .nav-item > a {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    transition: all .3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a:hover,
.nav-links .nav-item > a:hover {
    color: #f97316;
    background: rgba(249, 115, 22, .08);
}
.nav-links a.active,
.nav-links .nav-item > a.active {
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 4px 15px rgba(249, 115, 22, .3);
}
.nav-links a.active i,
.nav-links .nav-item > a.active i {
    color: #fff !important;
}

/* Category Dropdown */
.nav-item {
    position: relative;
}
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    border-radius: 14px;
    z-index: 1000;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    border: 1px solid rgba(226, 232, 240, .5);
}
.nav-item:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.category-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(226, 232, 240, .5);
    border-left: 1px solid rgba(226, 232, 240, .5);
}
.dropdown-post a {
    transition: all .2s ease;
    display: block;
    padding: 6px 16px;
    font-size: 13px;
    color: #4b5563;
    border-radius: 6px;
    text-decoration: none;
}
.dropdown-post a:hover {
    color: #f97316;
    background: rgba(249, 115, 22, .06);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(249, 115, 22, .08);
    color: #f97316;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s ease;
    flex-shrink: 0;
}
.mobile-toggle:hover {
    background: rgba(249, 115, 22, .15);
    transform: scale(1.05);
}
.mobile-toggle:active {
    transform: scale(.95);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    padding: 20px 20px 30px;
    transition: .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .1);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-brand img {
    height: 38px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}
.mobile-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.mobile-brand-text .brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.5px;
}
.mobile-brand-text .brand-name span {
    color: #f97316;
}
.mobile-brand-text .brand-tagline {
    font-size: 7px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: -1px;
}

.close-menu-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.close-menu-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}
.close-menu-btn:active {
    transform: scale(.9);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all .2s ease;
    background: transparent;
    text-decoration: none;
}
.mobile-link:hover,
.mobile-link.active {
    background: rgba(249, 115, 22, .06);
    color: #f97316;
}
.mobile-link:active {
    transform: scale(.97);
}

.mobile-category-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all .2s ease;
    width: 100%;
    background: transparent;
    border: none;
    font-family: Inter, sans-serif;
}
.mobile-category-toggle:hover {
    background: rgba(249, 115, 22, .06);
    color: #f97316;
}
.mobile-category-toggle.active {
    background: rgba(249, 115, 22, .08);
    color: #f97316;
}
.mobile-category-toggle:active {
    transform: scale(.97);
}

.mobile-category-posts {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.mobile-category-posts.show {
    max-height: 600px;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
    margin-top: 60px;
    border-top: 4px solid #f97316;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
}
.footer a {
    transition: all .3s ease;
}
.footer a:hover {
    color: #f97316;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
}
.footer-brand-text .brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}
.footer-brand-text .brand-name span {
    color: #f97316;
}
.footer-brand-text .brand-tagline {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.footer .heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer .heading i {
    color: #f97316;
    font-size: 20px;
}

.footer .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 14px;
    padding: 5px 0;
    transition: all .3s ease;
    text-decoration: none;
}
.footer .footer-link:hover {
    color: #f97316;
    transform: translateX(4px);
}
.footer .footer-link i {
    width: 18px;
    font-size: 13px;
    color: #f97316;
}

.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
}
.footer .social-link:hover {
    background: #f97316;
    transform: translateY(-4px);
    border-color: #f97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, .3);
}
.footer .social-link i {
    font-size: 16px;
    color: #cbd5e1;
    transition: all .3s ease;
}
.footer .social-link:hover i {
    color: #fff;
}

.footer .divider {
    border-color: rgba(255, 255, 255, .06);
}
.footer .copyright a {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
}
.footer .copyright a:hover {
    color: #f97316;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(249, 115, 22, .4);
    border: none;
    outline: none;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, .5);
}

/* ============================================
   BLOG CARD STYLES
   ============================================ */
.blog-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}
.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-image {
    overflow: hidden;
    position: relative;
}
.blog-image img {
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget {
    transition: all .3s ease;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    padding: 20px 24px;
}
.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.category-pill {
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f8fafc;
    text-decoration: none;
    color: #334155;
}
.category-pill:hover {
    transform: translateX(4px);
    background: #f97316;
    color: #fff;
}
.category-pill.active {
    background: #f97316;
    color: #fff;
}

/* ============================================
   FAQ STYLES
   ============================================ */
.faq-question {
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
}
.faq-question:hover {
    background: #fef3c7;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 16px;
}
.faq-answer.open {
    max-height: 500px;
    padding: 16px 16px 20px;
}
.faq-icon {
    transition: transform .3s ease;
}
.faq-icon.rotate {
    transform: rotate(180deg);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, #f97316, #f59e0b, #f97316);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.glass {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transition: all .3s ease;
    border: none;
    color: #fff;
    font-weight: 600;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, .35);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsletter-msg {
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    display: none;
}
.newsletter-msg.success {
    display: block;
    background: rgba(34, 197, 94, .15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, .25);
}
.newsletter-msg.error {
    display: block;
    background: rgba(239, 68, 68, .15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, .25);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes pulse-slow {
    0%, 100% { opacity: .3; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.1); }
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-slide-up { animation: slide-up .6s ease-out forwards; }

.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.delay-500 { animation-delay: .5s; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: auto;
    padding: 3rem 0;
}

/* ============================================
   BLOG DETAILS / POST CONTENT
   ============================================ */
.post-content p {
    line-height: 1.8;
    color: #16191d;
    font-size: .95rem;
    margin-bottom: 1rem;
}
.post-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #f1f5f9;
}
.post-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: .6rem;
}
.post-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-top: 1.2rem;
    margin-bottom: .4rem;
}
.post-content ul,
.post-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.post-content ul li,
.post-content ol li {
    margin-bottom: .4rem;
    color: #475569;
    line-height: 1.7;
    font-size: .95rem;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}
.post-content blockquote {
    border-left: 4px solid #f97316;
    padding: .8rem 1.2rem;
    margin: 1.2rem 0;
    background: #f8fafc;
    border-radius: 8px;
    font-style: italic;
    color: #475569;
    font-size: .95rem;
}
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    overflow-x: auto;
    display: block;
    font-size: .9rem;
}
.post-content th,
.post-content td {
    border: 1px solid #e2e8f0;
    padding: .5rem .75rem;
    text-align: left;
}
.post-content th {
    background: #f1f5f9;
    font-weight: 600;
}
.post-content iframe {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.2rem 0;
}

/* ===== RATING STARS ===== */
.rating-stars {
    display: flex;
    gap: .4rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.rating-stars input {
    display: none;
}
.rating-stars label {
    font-size: 1.5rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all .2s ease;
}
.rating-stars label:hover,
.rating-stars label:hover~label,
.rating-stars input:checked~label {
    color: #fbbf24;
}

/* ===== SHARE BUTTONS ===== */
.share-btn {
    transition: all .3s ease;
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

/* ===== CUSTOM LINK BUTTON ===== */
.custom-link-btn {
    transition: all .3s ease;
    font-size: .85rem;
    padding: .5rem 1rem;
}
.custom-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, .2);
}

/* ===== COMMENT CARD ===== */
.comment-card {
    transition: all .3s ease;
}
.comment-card:hover {
    background: #f8fafc;
}

/* ===== RELATED POSTS CARD ===== */
.related-card {
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}
.related-card img {
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.related-card:hover img {
    transform: scale(1.05);
}

/* ===== FEATURED IMAGE ===== */
.featured-image-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}
.featured-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}
.featured-image-wrap .category-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 20px 0 18px;
    border: 1px solid #e2e8f0;
}
.cta-section .cta-text {
    text-align: center;
    margin-bottom: 12px;
}
.cta-section .cta-text p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}
.cta-section .cta-text strong {
    color: #0f172a;
}
.cta-section .cta-text .highlight {
    color: #f97316;
    font-weight: 600;
}
.cta-section .cta-text .highlight-email {
    color: #3b82f6;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all .25s ease;
    border: none;
    cursor: pointer;
}
.cta-btn:hover {
    transform: translateY(-2px);
}
.cta-btn.phone {
    background: #22c55e;
    color: #fff;
}
.cta-btn.phone:hover {
    background: #16a34a;
    box-shadow: 0 4px 15px rgba(34, 197, 94, .3);
}
.cta-btn.whatsapp {
    background: #25D366;
    color: #fff;
}
.cta-btn.whatsapp:hover {
    background: #1da851;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .3);
}
.cta-btn.email {
    background: #3b82f6;
    color: #fff;
}
.cta-btn.email:hover {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(59, 130, 246, .3);
}
.cta-btn.contact {
    background: #f97316;
    color: #fff;
}
.cta-btn.contact:hover {
    background: #ea580c;
    box-shadow: 0 4px 15px rgba(249, 115, 22, .3);
}
.cta-btn i {
    font-size: 14px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f97316, #ea580c);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }
    .mobile-toggle {
        display: flex !important;
    }
    .blog-header {
        min-height: 64px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
    }
    .footer .heading {
        justify-content: center;
    }
    .footer .footer-link {
        justify-content: center;
    }
    .footer .social-link {
        width: 44px;
        height: 44px;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-brand-text .brand-name {
        font-size: 18px;
    }
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    /* Hero responsive */
    .hero-title {
        font-size: 1.8rem !important;
    }
    .section-title {
        font-size: 1.5rem !important;
    }
    .hero-section {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    /* Blog card responsive */
    .blog-card .p-4 {
        padding: 1rem !important;
    }
    .blog-card h3 {
        font-size: 1rem !important;
    }
    .blog-card p {
        font-size: .85rem !important;
    }
    /* FAQ responsive */
    .faq-question h4 {
        font-size: .9rem !important;
    }
    .faq-answer {
        font-size: .85rem !important;
    }
    /* Sidebar responsive */
    .sidebar-widget .text-lg {
        font-size: 1rem !important;
    }
    .sidebar-widget .text-sm {
        font-size: .8rem !important;
    }
    /* CTA responsive */
    .cta-section {
        padding: 14px 16px;
    }
    .cta-section .cta-text p {
        font-size: 13px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    .section-title {
        font-size: 1.5rem !important;
    }
    .hero-section {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    .blog-card .p-4 {
        padding: 1rem !important;
    }
    .blog-card h3 {
        font-size: 1rem !important;
    }
    .blog-card p {
        font-size: .85rem !important;
    }
    .blog-card .text-\[10px\] {
        font-size: 9px !important;
    }
    .faq-question h4 {
        font-size: .9rem !important;
    }
    .faq-answer {
        font-size: .85rem !important;
    }
    .sidebar-widget .text-lg {
        font-size: 1rem !important;
    }
    .sidebar-widget .text-sm {
        font-size: .8rem !important;
    }
    .pagination a,
    .pagination span {
        font-size: .75rem !important;
        padding: .4rem .7rem !important;
        min-width: 32px !important;
    }
    .glass {
        padding: .4rem 1rem !important;
        font-size: .7rem !important;
    }
    .hero-description {
        font-size: .9rem !important;
        max-width: 100% !important;
    }
    .category-pill {
        padding: .4rem .8rem !important;
        font-size: .75rem !important;
    }
    .hero-badge-text {
        font-size: 9px !important;
    }
    /* Post content responsive */
    .post-content p {
        font-size: .9rem;
        line-height: 1.7;
    }
    .post-content h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    .post-content h3 {
        font-size: 1.05rem;
        margin-top: 1.2rem;
    }
    .post-content h4 {
        font-size: .95rem;
    }
    .post-content ul li,
    .post-content ol li {
        font-size: .9rem;
    }
    .post-content blockquote {
        font-size: .9rem;
        padding: .6rem 1rem;
    }
    .post-content table {
        font-size: .8rem;
    }
    .post-content th,
    .post-content td {
        padding: .4rem .6rem;
    }
    .rating-stars label {
        font-size: 1.3rem;
    }
    .custom-link-btn {
        font-size: .8rem;
        padding: .4rem .8rem;
    }
    .share-btn {
        font-size: .8rem;
        padding: .4rem .8rem;
    }
    .featured-image-wrap .category-badge {
        bottom: 12px;
        left: 12px;
    }
    .featured-image-wrap .category-badge a {
        font-size: 9px !important;
        padding: 4px 10px !important;
    }
}

@media (max-width: 480px) {
    .blog-header {
        min-height: 60px;
    }
    .mobile-menu {
        padding: 16px 16px 24px;
        width: 280px;
    }
    .header-brand img {
        height: 36px;
    }
    .header-brand-text .brand-name {
        font-size: 16px;
    }
    .header-brand-text .brand-tagline {
        font-size: 7px;
    }
    .mobile-brand img {
        height: 32px;
    }
    .mobile-brand-text .brand-name {
        font-size: 14px;
    }
    .footer-brand img {
        height: 38px;
    }
    .footer-brand-text .brand-name {
        font-size: 16px;
    }
    .footer-brand-text .brand-tagline {
        font-size: 8px;
    }
    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 14px;
        bottom: 12px;
        right: 12px;
    }
    .hero-title {
        font-size: 1.5rem !important;
    }
    .section-title {
        font-size: 1.3rem !important;
    }
    .hero-section {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
    }
    .blog-card h3 {
        font-size: .9rem !important;
    }
    .blog-card p {
        font-size: .8rem !important;
    }
    .blog-card .gap-3 {
        gap: .5rem !important;
    }
    .faq-question h4 {
        font-size: .8rem !important;
    }
    .faq-answer {
        font-size: .8rem !important;
    }
    .pagination a,
    .pagination span {
        font-size: .65rem !important;
        padding: .3rem .5rem !important;
        min-width: 28px !important;
    }
    .glass {
        font-size: .6rem !important;
        padding: .3rem .8rem !important;
    }
    .hero-description {
        font-size: .8rem !important;
        max-width: 100% !important;
    }
    .category-pill {
        padding: .3rem .6rem !important;
        font-size: .65rem !important;
    }
    .hero-badge-text {
        font-size: 8px !important;
    }
    .post-content p {
        font-size: .85rem;
    }
    .post-content h2 {
        font-size: 1.1rem;
    }
    .post-content h3 {
        font-size: .95rem;
    }
    .post-content ul li,
    .post-content ol li {
        font-size: .85rem;
    }
    .post-content blockquote {
        font-size: .85rem;
    }
    .cta-section .cta-text p {
        font-size: 12px;
    }
}