/* ============================================
   Release Ads Now — Pure Custom CSS (No Framework)
   Colors: Red #ed3933, Black #111
   Typography: Playfair Display + Inter
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #111111;
    --primary-dark: #000000;
    --primary-light: #333333;
    --accent: #ed3933;
    --accent-hover: #d42f2a;
    --accent-light: #fdeaea;
    --bg-light: #F5F5F5;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-body: #333;
    --text-muted: #666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 10px;
    --green: #0a8f3f;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- Custom Grid (flexbox) ---------- */
.grid { display: flex; flex-wrap: wrap; }
.grid.gap-12 { gap: 12px; }
.grid.gap-16 { gap: 16px; }
.grid.gap-20 { gap: 20px; }

/* Columns: calc-based so gap doesn't break layout */
.col-2  { width: calc(16.666% - 14px); }
.col-3  { width: calc(25% - 12px); }
.col-4  { width: calc(33.333% - 11px); }
.col-6  { width: calc(50% - 8px); }
.col-12 { width: 100%; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }

/* ---------- Global Button ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all .2s;
    line-height: 1.4;
    text-decoration: none;
}
.btn i { font-size: 13px; }
.btn-accent     { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-white      { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-outline    { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-primary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-outline-green { background: #fff; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ============================================
   SECTION HEADING
   ============================================ */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 {
    font-size: 28px;
    margin-bottom: 8px;
    display: inline-block;
}
.section-heading h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-heading p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 550px;
    margin: 8px auto 0;
}

/* ============================================
   HEADER ROW 1 — Logo + Center + Phone
   Matches BhaskarAd.com top bar exactly
   ============================================ */
.hdr-top {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.hdr-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}

/* Logo — "Release" red bold, "Ads" dark bold, ".Now" dark */
.hdr-logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    flex-shrink: 0;
}
.hdr-logo-release {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ed3933;
    letter-spacing: -0.5px;
    line-height: 1;
}
.hdr-logo-ads {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}
.hdr-logo-now {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

/* Center tagline */
.hdr-center {
    flex: 1;
    text-align: center;
    min-width: 0;
}
.hdr-tagline {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Phone CTA — green, right side */
.hdr-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    transition: color .2s;
}
.hdr-phone i {
    font-size: 20px;
}
.hdr-phone:hover { color: #07732f; }

/* ============================================
   HEADER ROW 2 — Navigation (warm gradient)
   ============================================ */
.hdr-nav {
    background: linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hdr-nav-inner {
    display: flex;
    align-items: center;
    height: 48px;
    gap: 0;
}

/* Hamburger toggle (hidden on desktop) */
.hdr-mob-toggle { display: none; }

/* Nav links wrapper */
.hdr-nav-links-wrap { flex: 1; }
.hdr-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

/* ---- MOBILE SIDEBAR (separate element, outside nav) ---- */
.mob-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.65);
    z-index: 9998;
}
.mob-overlay.show { display: block; }

.mob-sidebar {
    position: fixed;
    top: 0; left: -300px;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    transition: left .3s ease;
    overflow-y: auto;
}
.mob-sidebar.open { left: 0; }

.mob-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}
.mob-menu-logo { text-decoration: none; display: flex; align-items: baseline; }
.mob-menu-logo .hdr-logo-release { font-size: 20px; }
.mob-menu-logo .hdr-logo-ads { font-size: 20px; }
.mob-menu-logo .hdr-logo-now { font-size: 16px; }
.mob-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer;
    box-shadow: 0 2px 8px rgba(237,57,51,.3);
    transition: all .2s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.mob-close:hover, .mob-close:active {
    background: var(--accent-hover);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(237,57,51,.4);
}
.mob-close i { line-height: 1; }
.mob-overlay {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mob-sidebar-links {
    flex: 1;
    padding: 8px 0;
}
.mob-sidebar-links > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background .15s;
}
.mob-sidebar-links > a:hover { background: #f8f8f8; }
.mob-sidebar-links > a i { font-size: 16px; color: var(--accent); width: 20px; text-align: center; }
.mob-chev { font-size: 11px; margin-left: auto; color: #aaa; transition: transform .2s; }
.mob-chev.rotated { transform: rotate(180deg); }

.mob-sub {
    display: none;
    background: #f9f9f9;
}
.mob-sub.show { display: block; }
.mob-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 52px;
    font-size: 13px;
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}
.mob-sub a:hover { background: #f0f0f0; }
.mob-sub a i { font-size: 14px; width: 18px; text-align: center; }

.mob-sidebar-footer {
    padding: 16px 18px;
    border-top: 1px solid #eee;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.mob-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
}
.mob-cta-btn:hover { background: var(--accent-hover); color: #fff; }
.mob-wa-btn { background: #25d366; }
.mob-wa-btn:hover { background: #1da851; color: #fff; }

/* Hide mobile menu elements on desktop */
.mob-menu-header, .mob-menu-footer { display: none; }
.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 16px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: color .2s;
}
.hdr-nav-link:hover { color: var(--accent); }
.hdr-nav-link i { font-size: 12px; }

/* Divider pipe between nav items */
.hdr-nav-divider {
    width: 1px;
    height: 18px;
    background: #ccc;
    flex-shrink: 0;
}

/* Dropdown */
.hdr-has-dropdown { position: relative; }
.hdr-dropdown-toggle i.bi-chevron-down { font-size: 10px; transition: transform .2s; }
.hdr-has-dropdown:hover .hdr-dropdown-toggle i.bi-chevron-down { transform: rotate(180deg); }

.hdr-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 220px;
    max-height: 70vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    z-index: 1100;
}
/* Thin scrollbar for long dropdowns */
.hdr-dropdown::-webkit-scrollbar { width: 6px; }
.hdr-dropdown::-webkit-scrollbar-track { background: transparent; }
.hdr-dropdown::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.hdr-dropdown::-webkit-scrollbar-thumb:hover { background: #aaa; }
.hdr-has-dropdown:hover .hdr-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hdr-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    color: var(--text-dark);
    transition: background .15s, color .15s;
}
.hdr-dropdown li a:hover {
    background: var(--bg-light);
    color: var(--accent);
}
.hdr-dropdown li a i { font-size: 14px; width: 18px; text-align: center; }

/* Right side — WhatsApp + Login */
.hdr-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}
.hdr-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 17px;
    transition: background .2s;
}
.hdr-wa-btn:hover { background: #1da851; color: #fff; }

.hdr-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 7px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}
.hdr-login-btn:hover { background: var(--accent-hover); color: #fff; }

/* ============================================
   HERO BANNER (static)
   ============================================ */
.hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 560px;
    height: 560px;
    background: linear-gradient(135deg, #111 0%, #1c1c1c 60%, #2a0d0c 100%);
}
.hero-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/Untitled-1.jpg') center center / cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}
.hero-banner > .container { position: relative; z-index: 1; }
/* Hero flex layout */
.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-banner-content {
    position: relative;
    color: #fff;
    max-width: 540px;
    padding: 50px 0;
    flex-shrink: 0;
    z-index: 2;
}

/* ---- NEWSPAPER ANIMATION SCENE (right side) ---- */
.np-scene {
    flex: 1;
    position: relative;
    min-height: 440px;
    perspective: 800px;
}

/* Floating background newspaper names */
.np-bg-logo {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: rgba(255,255,255,.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.nbl-1 { font-size: 20px; top: 8%; left: 5%; animation: bgFloat 8s ease-in-out infinite; }
.nbl-2 { font-size: 16px; top: 25%; right: 0; animation: bgFloat 9s ease-in-out 1s infinite; }
.nbl-3 { font-size: 22px; bottom: 30%; left: -5%; animation: bgFloat 7s ease-in-out .5s infinite; }
.nbl-4 { font-size: 14px; top: 60%; right: 10%; animation: bgFloat 10s ease-in-out 2s infinite; }
.nbl-5 { font-size: 18px; bottom: 10%; left: 20%; animation: bgFloat 8.5s ease-in-out 1.5s infinite; }
.nbl-6 { font-size: 15px; top: 5%; right: 25%; animation: bgFloat 9.5s ease-in-out .8s infinite; }

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0); opacity: .06; }
    25% { transform: translate(8px, -6px); opacity: .1; }
    50% { transform: translate(-4px, 8px); opacity: .04; }
    75% { transform: translate(6px, 4px); opacity: .08; }
}

/* Main newspaper card */
.np-main {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateY(-3deg) rotateX(2deg);
    width: 290px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.05);
    overflow: hidden;
    animation: paperSway 8s ease-in-out infinite;
    z-index: 3;
}
@keyframes paperSway {
    0%, 100% { transform: translate(-50%, -50%) rotateY(-3deg) rotateX(2deg); }
    25% { transform: translate(-50%, -52%) rotateY(2deg) rotateX(-1deg); }
    50% { transform: translate(-50%, -48%) rotateY(-1deg) rotateX(3deg); }
    75% { transform: translate(-50%, -51%) rotateY(3deg) rotateX(0deg); }
}

/* Newspaper header */
.np-main-head {
    background: #111;
    padding: 14px 16px 10px;
    text-align: center;
}
.np-main-logo {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity .4s;
}
.np-main-logo.changing { opacity: 0; }
.np-main-sub {
    font-size: 8px;
    color: #666;
    margin-top: 3px;
    letter-spacing: .5px;
}
.np-main-rule {
    height: 2px;
    background: var(--accent);
    margin-top: 8px;
}

/* Newspaper body */
.np-main-body { padding: 12px 14px 16px; }
.np-headline {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    transition: opacity .3s;
}

/* Text columns */
.np-columns { display: flex; gap: 10px; margin-bottom: 14px; }
.np-col { flex: 1; }
.np-txt-line {
    height: 4px;
    background: #e8e8e8;
    border-radius: 2px;
    margin-bottom: 4px;
}
.w100 { width: 100%; }
.w90  { width: 90%; }
.w85  { width: 85%; }
.w80  { width: 80%; }
.w75  { width: 75%; }
.w70  { width: 70%; }
.w60  { width: 60%; }
.w50  { width: 50%; }

/* Ad section */
.np-ad-box {
    border: 2px dashed var(--accent);
    border-radius: 4px;
    padding: 10px;
    background: rgba(237,57,51,.03);
}
.np-ad-header {
    font-size: 7px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 8px;
}
.np-ad-content {
    position: relative;
    height: 24px;
    overflow: hidden;
}
.np-ad-item {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    font-size: 11px;
    font-weight: 500;
    color: #333;
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all .5s ease;
}
.np-ad-item.active {
    opacity: 1;
    transform: translateY(0);
}
.np-ad-item i { color: var(--accent); font-size: 13px; flex-shrink: 0; }

/* ---- End newspaper animation ---- */

.hero-banner-content .badge-offer {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.hero-banner-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Typewriter effect */
.typewriter-wrap { display: inline; }
.typewriter { color: var(--accent); }
.typewriter-cursor {
    color: var(--accent);
    font-weight: 300;
    animation: blink .7s infinite;
    margin-left: 1px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.hero-banner-content p {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
    max-width: 520px;
    line-height: 1.6;
}
.hero-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--accent); color: #fff; border: none; }
.btn-hero-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-hero-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

@media (max-width: 768px) {
    .hero-banner { min-height: 280px; }
    .hero-banner-content { padding: 36px 0; }
    .hero-banner-content h1 { font-size: 30px; }
    .hero-banner-content p { font-size: 13px; }
}
@media (max-width: 480px) {
    .hero-banner { min-height: 240px; }
    .hero-banner-content h1 { font-size: 24px; }
}

/* ============================================
   QUICK BOOKING BAR
   ============================================ */
.quick-booking-bar {
    background: var(--bg-white);
    margin-top: -40px;
    position: relative;
    z-index: 20;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px;
    border: 1px solid var(--border-color);
}
.booking-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }
.booking-field { flex: 1; min-width: 160px; }
.booking-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.booking-field select,
.booking-field input {
    width: 100%;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--text-dark);
    background: var(--bg-light);
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
}
.booking-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23777' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.booking-field select:focus,
.booking-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(237,57,51,.12);
}
.booking-submit { flex-shrink: 0; }

/* Trust strip below booking bar */
.booking-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}
.booking-trust-item i {
    font-size: 15px;
    color: var(--accent);
}
.booking-trust-item strong {
    color: var(--text-dark);
    font-weight: 700;
}
.booking-trust-stars { color: var(--accent); font-size: 11px; letter-spacing: -1px; }

/* ============================================
   NEWSPAPER LOGOS CAROUSEL (auto-scroll)
   ============================================ */
.np-carousel-section {
    padding: 30px 0;
    background: var(--bg-white);
    overflow: hidden;
}
.np-carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    /* fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.np-carousel-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: npScroll 300s linear infinite;
}
.np-carousel-track:hover { animation-play-state: paused; }

.np-carousel-item {
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background: #fff;
    transition: border-color .2s;
}
.np-carousel-item:hover { border-color: var(--accent); }
.np-carousel-item img {
    height: 34px;
    max-width: 140px;
    object-fit: contain;
    opacity: 1;
    transition: all .3s;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.np-carousel-item:hover img { opacity: .8; }

@keyframes npScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.booking-submit .btn { width: 100%; min-height: 44px; justify-content: center; }

/* ============================================
   HOW IT WORKS — 6 Steps (process style)
   ============================================ */
.how-it-works { padding: 70px 0; background: var(--bg-white); }

.process-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 0 0 auto;
    width: 130px;
}

/* Circle with dashed border + icon */
.process-circle-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
}
.process-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all .3s;
    position: relative;
}
.process-circle i {
    font-size: 28px;
    color: var(--accent);
    transition: transform .3s;
}
.process-step:hover .process-circle {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(237,57,51,.08);
}
.process-step:hover .process-circle i {
    transform: scale(1.15);
}

/* Step number badge */
.process-num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(237,57,51,.3);
}

/* Text */
.process-step h6 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.process-step p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    padding: 0 4px;
}

/* Curved dashed connectors between steps */
.process-connector {
    flex: 0 0 60px;
    margin-top: 36px;
}
.process-connector svg {
    width: 60px;
    height: 30px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .process-row { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .process-connector { display: none; }
    .process-step { width: calc(33.33% - 10px); }
}
@media (max-width: 600px) {
    .process-step { width: calc(50% - 10px); }
    .process-circle { width: 64px; height: 64px; }
    .process-circle i { font-size: 22px; }
}

/* ============================================
   AD CATEGORIES GRID
   ============================================ */
.categories-section { padding: 60px 0; background: var(--bg-light); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
}
.category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.cat-link { text-decoration: none; display: block; }
.category-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--bg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;
    transition: all .25s;
}
.category-card:hover .category-icon { background: var(--accent-light); color: var(--accent); }
.category-card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.category-card p { font-size: 12px; color: var(--text-muted); }
/* Category icons — all unified red */
.category-icon i,
.ic-red, .ic-blue, .ic-green, .ic-yellow,
.ic-cyan, .ic-purple, .ic-gray, .ic-orange { color: var(--accent); }

/* ============================================
   TRUST STATS BAR
   ============================================ */
.trust-stats { padding: 40px 0; background: var(--primary); color: #fff; }
.stats-row { display: flex; flex-wrap: wrap; text-align: center; }
.stat-item { flex: 1; min-width: 140px; padding: 10px 16px; }
.stat-icon { font-size: 28px; color: rgba(255,255,255,.25); margin-bottom: 6px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 2px; }

/* ============================================
   NEWSPAPERS
   ============================================ */
.newspapers-section { padding: 60px 0; background: var(--bg-white); }
.np-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.newspaper-logo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 14px 10px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.newspaper-logo-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.newspaper-logo-card img {
    height: 40px;
    max-width: 130px;
    object-fit: contain;
    margin-bottom: 4px;
}
.np-text-logo {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.newspaper-logo-card span { display: block; font-size: 12px; font-weight: 600; color: var(--text-dark); margin-top: 6px; }
.newspaper-logo-card small { font-size: 11px; color: var(--text-muted); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section { padding: 60px 0; background: var(--bg-light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.why-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all .25s;
}
.why-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.why-card-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.why-card h6 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   HELP ME BOOK STRIP
   ============================================ */
.help-strip {
    background: var(--accent-light);
    border: 1px solid rgba(230,126,34,.2);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.help-strip-content h5 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.help-strip-content p { font-size: 13px; color: var(--text-muted); }
.help-strip-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 60px 0; background: var(--bg-white); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.testimonial-stars { color: #ed3933; font-size: 14px; margin-bottom: 10px; }
.testimonial-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author h6 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.testimonial-author span { font-size: 12px; color: var(--text-muted); display: block; }

/* ============================================
   BLOG SLIDER (homepage)
   ============================================ */
.blog-slider-section { padding: 60px 0; background: var(--bg-light); }

.blog-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-slider-track-wrap {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.blog-slider-track-wrap::-webkit-scrollbar { display: none; }
.blog-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
}

/* Each blog card */
.blog-slide-card {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    text-decoration: none;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.blog-slide-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.blog-slide-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 12px;
}
.blog-slide-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    align-self: flex-start;
}
.blog-slide-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-slide-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}
.blog-slide-date {
    font-size: 11px;
    color: #aaa;
    margin-top: 12px;
}
.blog-slide-date i { margin-right: 3px; }

/* Slider arrows */
.blog-slider-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: #fff;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .2s;
}
.blog-slider-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 768px) {
    .blog-slide-card { flex: 0 0 240px; }
    .blog-slider-arrow { display: none; }
    .blog-slider-track-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .blog-slider-track { padding-bottom: 4px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}
.cta-banner h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
    color: #b0bec5;
    padding: 50px 0 20px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
    gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .f-logo-release { font-family: 'Inter',sans-serif; font-size: 20px; font-weight: 900; color: #ed3933; }
.footer-brand .f-logo-ads { font-family: 'Inter',sans-serif; font-size: 20px; font-weight: 900; color: #fff; }
.footer-brand .f-logo-now { font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 700; color: #fff; }

.footer-about { font-size: 13px; color: #90a4ae; line-height: 1.6; margin-top: 12px; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #b0bec5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #90a4ae; font-size: 13px; transition: all .2s; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #90a4ae;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-contact li i { color: var(--accent); margin-top: 2px; }
.footer-contact a { color: #90a4ae; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 24px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #78909c;
}
.footer-bottom a { color: #90a4ae; font-size: 13px; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    z-index: 999;
    transition: all .3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #20bf5b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
}
.whatsapp-float i { font-size: 22px; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    background: var(--primary);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.page-header h1 { color: #fff; font-size: 28px; margin-bottom: 6px; }
.page-header p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 600px; margin: 0 auto; }

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}
.filter-bar-inner { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { flex: 1; min-width: 180px; }
.filter-group label { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    background: #fff;
    outline: none;
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--accent); }

/* ============================================
   NEWSPAPER LISTING
   ============================================ */
.np-listing-grid { display: flex; flex-direction: column; gap: 12px; }
.np-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all .2s;
}
.np-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.np-card-logo { width: 50px; height: 50px; background: var(--bg-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); flex-shrink: 0; }
.np-card-info { flex: 1; }
.np-card-info h3 { font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.np-card-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); }
.np-card-meta i { margin-right: 3px; }

/* ============================================
   NEWSPAPER CARD GRID (redesigned)
   ============================================ */
.np-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.npc {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 16px 20px;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.npc:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    transform: translateY(-3px);
}

/* Logo area */
.npc-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px;
}
.npc-logo img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}
.npc-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

/* Name */
.npc-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Meta — language, city */
.npc-meta {
    display: flex;
    gap: 12px;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.npc-meta i { font-size: 11px; margin-right: 2px; }

/* Circulation */
.npc-circ {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.npc-circ i { color: var(--accent); margin-right: 3px; }

/* Action buttons */
.npc-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}
.npc-btn-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: transparent;
    text-decoration: none;
    transition: all .2s;
}
.npc-btn-details:hover {
    background: var(--accent-light);
    color: var(--accent);
}
.npc-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 20px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}
.npc-btn-book:hover {
    background: var(--accent-hover);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) { .np-card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .np-card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .np-card-grid { grid-template-columns: 1fr; } }

/* Load More Button */
.npc-btn-loadmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 25px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
}
.npc-btn-loadmore:hover {
    background: var(--text-dark);
    color: #fff;
}
.npc-btn-loadmore i { font-size: 16px; }
.np-showing-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}
.mt-32 { margin-top: 32px; }

/* ============================================
   CATEGORY PAGE LAYOUT
   ============================================ */
.cat-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.cat-main h2, .cat-main h3 { font-size: 22px; margin-bottom: 12px; }
.cat-main p { line-height: 1.7; }
.cat-intro, .cat-who { padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); border: 1px solid var(--border-color); }

/* Sample ad box */
.sample-ad-box { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px; }
.sample-ad-preview { border: 2px dashed #ccc; padding: 16px; margin-top: 12px; font-family: 'Times New Roman', serif; }
.sample-ad-header { font-weight: bold; font-size: 12px; color: var(--text-muted); border-bottom: 1px solid #eee; padding-bottom: 6px; margin-bottom: 8px; }
.sample-ad-body p { font-size: 14px; color: #333; margin-bottom: 4px; }
.sample-ad-body small { color: #999; font-style: italic; }

/* Rate table */
.rate-table-wrap { overflow-x: auto; }
.rate-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rate-table th { background: var(--primary); color: #fff; padding: 12px 14px; text-align: left; font-size: 13px; font-weight: 600; white-space: nowrap; }
.rate-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-color); vertical-align: middle; }
.rate-np-logo { height: 22px; width: auto; max-width: 80px; object-fit: contain; display: inline-block; vertical-align: middle; margin-right: 8px; }
.rate-table tr:hover td { background: var(--bg-light); }
.rate-table .btn { font-size: 12px; padding: 6px 14px; }
.rate-note { font-size: 13px; color: var(--text-muted); background: var(--bg-light); padding: 14px 18px; border-radius: var(--radius); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center; width: 100%;
    padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--text-dark);
    background: var(--bg-light); text-align: left; cursor: pointer; border: none;
}
.faq-question i { transition: transform .2s; font-size: 12px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 14px 18px; font-size: 14px; color: var(--text-body); line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

/* Sidebar */
.sidebar-cta, .sidebar-help, .sidebar-cats {
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.sidebar-cta h4, .sidebar-help h4, .sidebar-cats h4 { font-family: 'Inter',sans-serif; font-size: 16px; margin-bottom: 8px; }
.sidebar-cta p, .sidebar-help p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.sidebar-cat-list li { margin-bottom: 8px; }
.sidebar-cat-list a { font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
.sidebar-cat-list a:hover { color: var(--accent); }
.sidebar-cat-list i { width: 18px; text-align: center; }

/* ============================================
   FORMS (global)
   ============================================ */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(237,57,51,.08); }
.form-group textarea { resize: vertical; }

/* Alerts */
.alert-success { display: flex; gap: 12px; align-items: flex-start; background: #e8f8ef; border: 1px solid #b2dfdb; color: #1b5e20; padding: 16px 20px; border-radius: var(--radius); font-size: 14px; }
.alert-success i { font-size: 20px; margin-top: 2px; }
.alert-error { background: #fdeaea; border: 1px solid #f5c6c6; color: #c0392b; padding: 12px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; }

/* ============================================
   HELP ME BOOK PAGE
   ============================================ */
.help-page-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }
.help-side { display: flex; flex-direction: column; gap: 16px; }
.help-side-card { padding: 18px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); }
.help-side-card h4 { font-family: 'Inter',sans-serif; font-size: 15px; margin-bottom: 6px; }
.help-side-card p { font-size: 13px; color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { padding: 20px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); text-align: center; }
.contact-info-card i { font-size: 28px; color: var(--accent); margin-bottom: 8px; display: block; }
.contact-info-card h4 { font-family: 'Inter',sans-serif; font-size: 15px; margin-bottom: 6px; }
.contact-info-card a { color: var(--accent); font-weight: 600; }
.contact-info-card p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* --- Redesigned Contact Page --- */
.contact-hero {
    background: linear-gradient(135deg, #111 0%, #1f1f1f 60%, #2a0d0c 100%);
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(237,57,51,.18), transparent 40%),
                      radial-gradient(circle at 80% 60%, rgba(237,57,51,.12), transparent 45%);
    pointer-events: none;
}
.contact-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.contact-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(237,57,51,.15); color: #ff7a75;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: .3px;
    border: 1px solid rgba(237,57,51,.35); margin-bottom: 18px;
}
.contact-hero h1 { color: #fff; font-size: 40px; line-height: 1.15; margin-bottom: 14px; }
.contact-hero h1 .text-accent { color: var(--accent); }
.contact-hero p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 600px; margin: 0 auto 24px; }
.contact-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: #fff; color: #111; }

.contact-strip { padding: 40px 0; background: #fff; }
.contact-strip-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    margin-top: -90px; position: relative; z-index: 5;
}
.contact-strip-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    padding: 22px; display: flex; gap: 14px; align-items: flex-start;
    box-shadow: var(--shadow-md); transition: all .25s ease; color: var(--text-dark);
}
a.contact-strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.csc-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.csc-icon.csc-green { background: #e6f7ec; color: var(--green); }
.contact-strip-card h4 { font-size: 14px; margin-bottom: 2px; color: var(--text-dark); }
.contact-strip-card p { font-size: 14px; font-weight: 600; color: var(--text-dark); margin: 0; }
.contact-strip-card small { font-size: 12px; color: var(--text-muted); }

.contact-main-grid {
    display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start;
}
.contact-form-card {
    background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-sm);
}
.contact-form-head h2 { font-size: 26px; margin-bottom: 6px; }
.contact-form-head p { color: var(--text-muted); font-size: 14px; }
.contact-form-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 8px; flex-wrap: wrap;
}
.contact-form-footer small { color: var(--text-muted); font-size: 12px; }
.contact-form-footer small i { color: var(--green); }

.contact-success { text-align: center; padding: 30px 10px; }
.contact-success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #e6f7ec; color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 38px; margin: 0 auto 18px;
}
.contact-success h3 { font-size: 22px; margin-bottom: 8px; }
.contact-success p { color: var(--text-muted); }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-side-card {
    background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 24px;
}
.contact-side-card h4 {
    font-size: 15px; margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.contact-side-card h4 i { color: var(--accent); }
.contact-hours { list-style: none; padding: 0; margin: 0; }
.contact-hours li {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px dashed var(--border-color);
    font-size: 13px; color: var(--text-muted);
}
.contact-hours li:last-child { border-bottom: 0; }
.contact-hours strong { color: var(--text-dark); font-weight: 600; }
.contact-why { list-style: none; padding: 0; margin: 0; }
.contact-why li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 14px; color: var(--text-body);
}
.contact-why i { color: var(--green); font-size: 16px; }

.contact-map-section { line-height: 0; }
.contact-map-section iframe { display: block; filter: grayscale(.2); }

@media (max-width: 900px) {
    .contact-hero h1 { font-size: 30px; }
    .contact-strip-grid { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px; }
}
@media (max-width: 540px) {
    .contact-strip-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 50px 0 50px; }
    .contact-hero h1 { font-size: 26px; }
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: all .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-img { height: 140px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 16px; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-light); padding: 2px 8px; border-radius: 3px; margin-bottom: 8px; }
.blog-card-body h3 { font-family: 'Inter',sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text-dark); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.blog-card-meta { display: flex; gap: 14px; margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.blog-card-img { display: flex; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); }
.blog-card-readmore:hover { gap: 10px; }

.blog-single-grid { display: grid; grid-template-columns: 1fr 300px; gap: 30px; }
.blog-content { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.blog-content h2, .blog-content h3 { margin: 24px 0 12px; }
.blog-content p { margin-bottom: 16px; }

/* --- Blog Detail Page --- */
.blog-detail-hero {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 60%, #2a0d0c 100%);
    color: #fff;
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}
.blog-detail-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(237,57,51,.15), transparent 45%);
    pointer-events: none;
}
.blog-detail-hero > .container { position: relative; max-width: 880px; }
.blog-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; flex-wrap: wrap;
}
.blog-breadcrumb a { color: rgba(255,255,255,.75); }
.blog-breadcrumb a:hover { color: var(--accent); }
.blog-breadcrumb i { font-size: 11px; }
.blog-detail-tag {
    display: inline-block; background: rgba(237,57,51,.18); color: #ff8a85;
    border: 1px solid rgba(237,57,51,.35);
    padding: 5px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 600; margin-bottom: 14px; letter-spacing: .3px;
}
.blog-detail-title {
    color: #fff; font-size: 38px; line-height: 1.2; margin-bottom: 14px;
}
.blog-detail-excerpt {
    color: rgba(255,255,255,.75); font-size: 16px; max-width: 720px; margin-bottom: 22px;
}
.blog-detail-meta {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,.7);
}
.bdm-author { display: flex; align-items: center; gap: 10px; }
.bdm-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
}
.bdm-avatar-lg { width: 64px; height: 64px; font-size: 24px; flex-shrink: 0; }
.bdm-author strong { display: block; color: #fff; font-size: 14px; }
.bdm-author small { color: rgba(255,255,255,.55); font-size: 11px; }
.bdm-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }
.bdm-item { display: flex; align-items: center; gap: 6px; }
.bdm-item i { color: var(--accent); }

.blog-detail-feature { padding: 0; margin-top: -30px; position: relative; z-index: 5; }
.blog-detail-feature .container { max-width: 980px; }
.blog-feature-img {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    height: 360px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-img i { font-size: 90px; color: #ccc; }

.blog-detail-grid {
    display: grid; grid-template-columns: 1fr 320px; gap: 40px;
    max-width: 1140px; margin: 0 auto;
}
.blog-detail-content { min-width: 0; }
.blog-share-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; background: var(--bg-light);
    border: 1px solid var(--border-color); border-radius: var(--radius);
    margin-bottom: 28px; font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.blog-share-bar a {
    width: 34px; height: 34px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--border-color);
    color: var(--text-muted); transition: all .2s;
}
.blog-share-bar a:hover { transform: translateY(-2px); color: #fff; }
.blog-share-bar .share-fb:hover { background: #1877f2; border-color: #1877f2; }
.blog-share-bar .share-tw:hover { background: #000; border-color: #000; }
.blog-share-bar .share-li:hover { background: #0a66c2; border-color: #0a66c2; }
.blog-share-bar .share-wa:hover { background: var(--green); border-color: var(--green); }
.blog-share-bar .share-em:hover { background: var(--accent); border-color: var(--accent); }

.blog-prose { font-size: 16px; line-height: 1.85; color: var(--text-body); }
.blog-prose h2 { font-size: 26px; margin: 32px 0 14px; color: var(--text-dark); }
.blog-prose h3 { font-size: 20px; margin: 26px 0 12px; color: var(--text-dark); }
.blog-prose p { margin-bottom: 18px; }
.blog-prose ul, .blog-prose ol { margin: 0 0 18px 22px; }
.blog-prose li { margin-bottom: 8px; }
.blog-prose a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.blog-prose blockquote {
    border-left: 4px solid var(--accent); padding: 12px 20px;
    background: var(--accent-light); color: var(--text-dark);
    margin: 22px 0; border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.blog-prose img { max-width: 100%; border-radius: var(--radius); margin: 18px 0; }

.blog-author-box {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 24px; margin-top: 36px;
    background: var(--bg-light); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.blog-author-box small { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.blog-author-box h4 { font-size: 18px; margin: 4px 0 6px; }
.blog-author-box p { font-size: 14px; color: var(--text-muted); margin: 0; }

.blog-inline-cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; margin-top: 28px; padding: 28px;
    background: linear-gradient(135deg, #111 0%, #2a0d0c 100%);
    border-radius: var(--radius-lg); color: #fff;
}
.blog-inline-cta h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.blog-inline-cta p { color: rgba(255,255,255,.75); margin: 0; font-size: 14px; }
.blog-inline-cta .btn { flex-shrink: 0; }

.blog-detail-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; align-self: start; }
.blog-detail-sidebar > div { margin: 0 !important; }
.blog-detail-sidebar h4 i { color: var(--accent); margin-right: 4px; }
.sidebar-tag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag-list a {
    display: inline-block; padding: 6px 12px;
    background: var(--bg-light); border: 1px solid var(--border-color);
    border-radius: 999px; font-size: 12px; color: var(--text-body); font-weight: 500;
}
.sidebar-tag-list a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================
   SOLEDAD-STYLE BLOG ARTICLE
   ============================================ */
.sol-article { background: #fff; }
.sol-container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }

.sol-head { padding: 50px 0 30px; text-align: center; }
.sol-breadcrumb {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; font-size: 12px; color: #999;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px;
}
.sol-breadcrumb a { color: #999; }
.sol-breadcrumb a:hover { color: var(--accent); }
.sol-cat-pill {
    display: inline-block; background: var(--accent); color: #fff;
    padding: 5px 14px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 22px;
}
.sol-cat-pill:hover { background: var(--accent-hover); color: #fff; }
.sol-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px; line-height: 1.2; font-weight: 700;
    color: #111; margin-bottom: 18px; letter-spacing: -0.5px;
}
.sol-excerpt {
    font-size: 19px; line-height: 1.55; color: #666;
    font-style: italic; max-width: 640px; margin: 0 auto 26px;
}
.sol-meta {
    display: flex; justify-content: center; align-items: center;
    gap: 12px; font-size: 13px; color: #777; flex-wrap: wrap;
}
.sol-meta a { color: #111; }
.sol-meta a:hover { color: var(--accent); }
.sol-meta-author { display: flex; align-items: center; gap: 10px; }
.sol-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.sol-meta-sep { color: #ddd; }

.sol-feature {
    margin: 0 auto 50px; max-width: 1140px; padding: 0 20px;
}
.sol-feature img {
    width: 100%; height: auto; max-height: 560px; object-fit: cover;
    border-radius: 2px;
}
.sol-feature-placeholder {
    width: 100%; height: 420px; background: #f2f2f2;
    display: flex; align-items: center; justify-content: center;
}
.sol-feature-placeholder i { font-size: 100px; color: #ccc; }
.sol-feature figcaption {
    text-align: center; font-size: 13px; color: #999;
    font-style: italic; margin-top: 14px; max-width: 640px; margin-left: auto; margin-right: auto;
}

.sol-body { padding-bottom: 60px; }
.sol-body-inner { position: relative; }
.sol-share-rail {
    position: absolute; left: -90px; top: 0;
    display: flex; flex-direction: column; gap: 8px;
    align-items: center;
}
.sol-share-label {
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    color: #999; margin-bottom: 8px;
}
.sol-share {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f5f5f5; color: #555;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: all .25s;
}
.sol-share:hover { transform: translateY(-2px); color: #fff; }
.sol-share-fb:hover { background: #1877f2; }
.sol-share-tw:hover { background: #000; }
.sol-share-li:hover { background: #0a66c2; }
.sol-share-pn:hover { background: #e60023; }
.sol-share-wa:hover { background: var(--green); }
.sol-share-em:hover { background: var(--accent); }

.sol-prose {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px; line-height: 1.85; color: #333;
}
.sol-prose > p:first-of-type::first-letter {
    float: left; font-family: 'Playfair Display', Georgia, serif;
    font-size: 78px; line-height: 0.9; font-weight: 700;
    color: var(--accent); padding: 6px 10px 0 0; margin-top: 4px;
}
.sol-prose p { margin: 0 0 24px; }
.sol-prose h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px; font-weight: 700; color: #111;
    margin: 36px 0 16px; line-height: 1.3;
}
.sol-prose h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px; font-weight: 700; color: #111;
    margin: 30px 0 14px;
}
.sol-prose ul, .sol-prose ol { margin: 0 0 24px 24px; }
.sol-prose li { margin-bottom: 10px; }
.sol-prose a { color: var(--accent); text-decoration: underline; font-weight: 600; }
.sol-prose blockquote {
    border: 0; border-left: 4px solid var(--accent);
    margin: 30px 0; padding: 6px 0 6px 26px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px; line-height: 1.5; font-style: italic; color: #222;
    background: transparent;
    border-radius: 0;
}
.sol-prose img { max-width: 100%; height: auto; margin: 24px 0; border-radius: 2px; }

.sol-tags {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    padding: 26px 0 20px; margin-top: 30px;
    border-top: 1px solid #eee; font-size: 13px; color: #777;
}
.sol-tags > span { font-weight: 600; color: #111; margin-right: 6px; }
.sol-tags a {
    display: inline-block; padding: 6px 12px;
    background: #f5f5f5; color: #555; font-size: 12px;
    text-transform: uppercase; letter-spacing: .5px; font-weight: 600;
    border-radius: 2px; transition: all .2s;
}
.sol-tags a:hover { background: var(--accent); color: #fff; }

.sol-share-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.sol-share-bottom > span {
    font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
    font-weight: 700; color: #111;
}
.sol-share-bottom > div { display: flex; gap: 8px; flex-wrap: wrap; }
.sol-share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; font-size: 12px; font-weight: 600;
    color: #fff; border-radius: 2px; text-transform: uppercase; letter-spacing: .5px;
}
.sol-share-btn.sol-share-fb { background: #1877f2; }
.sol-share-btn.sol-share-tw { background: #000; }
.sol-share-btn.sol-share-wa { background: var(--green); }
.sol-share-btn:hover { opacity: .9; color: #fff; }

.sol-author-box {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 36px; margin-top: 50px; background: #f8f8f8;
    border-radius: 2px;
}
.sol-author-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; font-weight: 700; flex-shrink: 0;
}
.sol-author-content small {
    font-size: 11px; color: #999; letter-spacing: 1.5px; font-weight: 600;
}
.sol-author-content h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px; margin: 4px 0 10px; color: #111;
}
.sol-author-content p { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.7; }
.sol-author-social { display: flex; gap: 8px; }
.sol-author-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: #fff; color: #555; border: 1px solid #e5e5e5;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; transition: all .2s;
}
.sol-author-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.sol-prevnext {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-top: 40px; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.sol-prevnext-item {
    padding: 24px; color: #111; transition: background .2s;
}
.sol-prevnext-item:hover { background: #f8f8f8; color: #111; }
.sol-prevnext-item small {
    display: block; font-size: 11px; color: #999;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; font-weight: 600;
}
.sol-prevnext-item strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px; line-height: 1.4; font-weight: 700;
}
.sol-prev { border-right: 1px solid #eee; }
.sol-next { text-align: right; }

.sol-related { padding: 60px 0; background: #fafafa; }
.sol-section-title {
    text-align: center; position: relative; margin-bottom: 36px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px; color: #111;
}
.sol-section-title::before {
    content: ''; position: absolute; left: 0; right: 0; top: 50%;
    height: 1px; background: #e5e5e5; z-index: 0;
}
.sol-section-title span {
    position: relative; z-index: 1; background: #fafafa; padding: 0 22px;
}

.sol-comments { padding: 60px 0; background: #fff; }
.sol-comments .sol-section-title span { background: #fff; }
.sol-comments-note { text-align: center; font-size: 13px; color: #999; margin-bottom: 26px; }
.sol-comment-form .form-group { margin-bottom: 14px; }
.sol-comment-form textarea,
.sol-comment-form input {
    width: 100%; padding: 14px 16px; border: 1px solid #e0e0e0;
    border-radius: 2px; font-size: 14px; font-family: inherit;
    background: #fafafa; transition: all .2s;
}
.sol-comment-form textarea:focus,
.sol-comment-form input:focus { outline: none; border-color: var(--accent); background: #fff; }

@media (max-width: 1024px) {
    .sol-share-rail { position: static; flex-direction: row; justify-content: center; margin-bottom: 24px; }
    .sol-share-label { writing-mode: horizontal-tb; transform: none; margin: 0 8px 0 0; }
}
@media (max-width: 720px) {
    .sol-title { font-size: 30px; }
    .sol-excerpt { font-size: 16px; }
    .sol-prose { font-size: 16px; }
    .sol-prose > p:first-of-type::first-letter { font-size: 60px; }
    .sol-prose h2 { font-size: 24px; }
    .sol-author-box { flex-direction: column; text-align: center; align-items: center; padding: 28px; }
    .sol-author-social { justify-content: center; }
    .sol-prevnext { grid-template-columns: 1fr; }
    .sol-prev { border-right: 0; border-bottom: 1px solid #eee; }
    .sol-next { text-align: left; }
}

/* --- Newspaper Detail Page --- */
.np-detail-hero {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 60%, #2a0d0c 100%);
    color: #fff;
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}
.np-detail-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(237,57,51,.18), transparent 45%);
    pointer-events: none;
}
.np-detail-hero > .container { position: relative; }
.np-detail-hero-grid {
    display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: center; margin-top: 18px;
}
.np-detail-logo {
    background: #fff; border-radius: var(--radius-lg);
    padding: 24px; height: 180px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
}
.np-detail-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.np-detail-logo span { font-weight: 700; font-size: 18px; color: #111; text-align: center; }
.np-detail-info h1 { color: #fff; font-size: 36px; margin: 10px 0 12px; line-height: 1.2; }
.np-detail-info p { color: rgba(255,255,255,.78); font-size: 15px; max-width: 680px; margin-bottom: 22px; }
.np-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.np-stats-section { padding: 28px 0; background: #fff; border-bottom: 1px solid var(--border-color); }
.np-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: -50px; position: relative; z-index: 5;
    background: #fff; padding: 24px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); border: 1px solid var(--border-color);
}
.np-stat { display: flex; gap: 14px; align-items: center; }
.np-stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent-light); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.np-stat small { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.np-stat strong { font-size: 18px; color: var(--text-dark); font-weight: 700; }

.np-cat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 16px 0 6px;
}
.np-cat-card {
    border: 1px solid var(--border-color); border-radius: var(--radius);
    padding: 16px; text-align: center; transition: all .2s;
}
.np-cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.np-cat-icon { font-size: 24px; color: var(--accent); margin-bottom: 6px; }
.np-cat-card h4 { font-size: 14px; margin-bottom: 6px; }
.np-cat-card p { font-size: 12px; margin: 2px 0; color: var(--text-muted); }
.np-cat-card strong { color: var(--text-dark); }

@media (max-width: 900px) {
    .np-detail-hero-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .np-detail-logo { max-width: 220px; margin: 0 auto; }
    .np-detail-info h1 { font-size: 26px; }
    .np-hero-actions { justify-content: center; }
    .np-stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
    .np-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .np-stats-grid { grid-template-columns: 1fr; }
    .np-cat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .blog-detail-title { font-size: 28px; }
    .blog-feature-img { height: 240px; }
    .blog-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .blog-detail-sidebar { position: static; }
    .blog-inline-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content { max-width: 800px; }
.about-content p { line-height: 1.8; margin-bottom: 14px; }

/* Story section — 2 column */
.about-story-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.about-story-content h2 { font-size: 26px; margin-bottom: 16px; }
.about-story-content p { line-height: 1.8; margin-bottom: 14px; color: var(--text-body); }
.about-story-image { position: relative; }
.about-ins-badge {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 12px 16px;
    position: absolute; bottom: -20px; left: 20px; right: 20px;
    box-shadow: var(--shadow-md);
}
.about-ins-badge i { font-size: 28px; color: var(--accent); }
.about-ins-badge strong { display: block; font-size: 14px; color: var(--text-dark); }
.about-ins-badge span { font-size: 12px; color: var(--text-muted); }

/* Highlights strip */
.about-highlights { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.about-hl-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-light); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 12px 16px; flex: 1; min-width: 200px;
}
.about-hl-item i { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.about-hl-item strong { display: block; font-size: 13px; color: var(--text-dark); }
.about-hl-item span { font-size: 12px; color: var(--text-muted); }

/* Mission cards */
.about-mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-mv-card { padding: 28px; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); text-align: center; }
.about-mv-icon { font-size: 36px; color: var(--accent); margin-bottom: 14px; }
.about-mv-card h3 { font-size: 18px; margin-bottom: 8px; }
.about-mv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Stats bar */
.about-stats-section { background: var(--primary); padding: 50px 0; }
.about-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; text-align: center; }
.about-stat { padding: 10px 16px; }
.about-stat span { font-family: 'Playfair Display',serif; font-size: 32px; font-weight: 800; color: var(--accent); display: block; }
.about-stat p { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
    background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; transition: all .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--bg-light); border: 3px solid var(--border-color);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 36px; color: #bbb; margin-bottom: 14px;
}
.team-card:hover .team-avatar { border-color: var(--accent); }
.team-card h4 { font-family: 'Inter',sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: var(--accent); background: var(--accent-light);
    padding: 2px 10px; border-radius: 12px; margin-bottom: 10px;
}
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Partner newspaper logos grid */
.about-np-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.about-np-logo {
    background: #fff; border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 16px 12px;
    display: flex; align-items: center; justify-content: center;
    min-height: 70px; transition: all .2s;
}
.about-np-logo:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.about-np-logo img { max-height: 36px; max-width: 130px; object-fit: contain; }

/* Trust grid */
.about-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-trust-item { display: flex; gap: 14px; padding: 20px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); }
.about-trust-item i { font-size: 26px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.about-trust-item h4 { font-family: 'Inter',sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.about-trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Responsive — About */
@media (max-width: 992px) {
    .about-story-grid { grid-template-columns: 1fr; }
    .about-story-image { order: -1; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-np-logos { grid-template-columns: repeat(4, 1fr); }
    .about-trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .about-np-logos { grid-template-columns: repeat(3, 1fr); }
    .about-highlights { flex-direction: column; }
}

/* ============================================
   BOOKING WIZARD
   ============================================ */
/* Wizard Progress — Circle + Line style (compact) */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 12px 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
.wizard-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #bbb;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.wizard-step-label {
    font-size: 10px;
    font-weight: 600;
    color: #bbb;
    transition: color .3s;
    white-space: nowrap;
}
.wizard-step.active .wizard-step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(237,57,51,.15);
}
.wizard-step.active .wizard-step-label { color: var(--accent); font-weight: 700; }
.wizard-step.done .wizard-step-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.wizard-step.done .wizard-step-label { color: var(--text-dark); }
.wizard-step-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    min-width: 16px;
    margin: 0 -2px;
    margin-bottom: 18px;
    transition: background .3s;
    z-index: 1;
}
.wizard-step-line.done { background: var(--accent); }

@media (max-width: 768px) {
    .wizard-step-num { width: 30px; height: 30px; font-size: 12px; }
    .wizard-step-label { font-size: 9px; }
    .wizard-progress { max-width: 100%; }
}
@media (max-width: 480px) {
    .wizard-step-label { display: none; }
    .wizard-step-line { margin-bottom: 0; }
}

.wizard-panel { display: none; max-width: 700px; margin: 0 auto; }
.wizard-panel.active { display: block; }
.wizard-panel h2 { font-size: 22px; margin-bottom: 6px; }
.wizard-desc { font-size: 14px; color: var(--text-muted); }
.wizard-hint { font-size: 13px; color: var(--text-muted); }
.wizard-nav { display: flex; justify-content: space-between; }

.wizard-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.wizard-cat-card { cursor: pointer; }
.wizard-cat-card input { display: none; }
.wizard-cat-inner { padding: 18px 10px; border: 2px solid var(--border-color); border-radius: var(--radius); text-align: center; transition: all .2s; }
.wizard-cat-inner i { font-size: 28px; display: block; margin-bottom: 6px; color: var(--text-muted); }
.wizard-cat-inner span { font-size: 13px; font-weight: 600; }
.wizard-cat-card input:checked + .wizard-cat-inner { border-color: var(--accent); background: var(--accent-light); }
.wizard-cat-card input:checked + .wizard-cat-inner i { color: var(--accent); }

/* Rich Text Editor */
.ad-editor-wrap {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}
.ad-editor-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(237,57,51,.08);
}
.ad-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.ad-editor-toolbar button {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-body);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .15s;
}
.ad-editor-toolbar button:hover {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.toolbar-divider {
    width: 1px;
    height: 20px;
    background: var(--border-color);
    margin: 0 4px;
}
.ad-editor {
    min-height: 180px;
    max-height: 400px;
    overflow-y: auto;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: #fff;
    outline: none;
}
.ad-editor:empty::before {
    content: 'Type your ad content here...';
    color: #bbb;
    pointer-events: none;
}
.ad-counter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}
.ad-counter-left {
    display: flex;
    gap: 16px;
}
.ad-counter-left strong,
.ad-counter-right strong {
    color: var(--text-dark);
}
.ad-counter-right {
    color: var(--accent);
    font-weight: 600;
}
/* Ad Type Selection Cards */
.adtype-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.adtype-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all .25s;
    background: #fff;
    position: relative;
}
.adtype-card:hover { border-color: #aaa; }
.adtype-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(237,57,51,.12);
}
.adtype-card input[type="radio"] { display: none; }

/* Thumbnail */
.adtype-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
}
.adtype-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: opacity .3s;
}

/* Info */
.adtype-info {
    padding: 14px;
}
.adtype-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.adtype-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}
.adtype-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--bg-light);
    color: var(--text-muted);
}
.adtype-card.active .adtype-tag {
    background: var(--accent-light);
    color: var(--accent);
}

/* Active check indicator */
.adtype-card.active::after {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .adtype-cards { grid-template-columns: 1fr; }
    .adtype-thumb { height: 140px; }
}

.ad-type-hint {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 14px;
}
.ad-type-hint i { margin-right: 6px; color: var(--accent); }

.ad-format-tips { background: var(--bg-light); padding: 16px; border-radius: var(--radius); }
.ad-format-tips h4 { font-family: 'Inter',sans-serif; font-size: 14px; margin-bottom: 8px; }
.ad-format-tips ul { padding-left: 20px; font-size: 13px; color: var(--text-muted); }
.ad-format-tips li { margin-bottom: 4px; list-style: disc; }

.preview-box { background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 18px; }
.preview-row { padding: 8px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; display: flex; justify-content: space-between; }
.preview-row:last-child { border-bottom: none; }
.preview-row.total { font-size: 16px; color: var(--accent); font-weight: 700; }
.preview-ad-box { border: 2px solid #ccc; padding: 18px; font-family: 'Times New Roman',serif; font-size: 14px; min-height: 80px; background: #fffef5; }
.payment-summary { background: var(--bg-light); padding: 18px; border-radius: var(--radius); border: 1px solid var(--border-color); }
.payment-summary h4 { font-family: 'Inter',sans-serif; font-size: 16px; margin-bottom: 12px; }
.payment-badges { font-size: 13px; color: var(--text-muted); }
.payment-badges i { color: #27ae60; margin-right: 4px; }

/* Login box */
.login-box { max-width: 420px; margin: 0 auto; padding: 32px; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius-lg); }

/* ============================================
   RESPONSIVE — INNER PAGES
   ============================================ */
@media (max-width: 992px) {
    .cat-page-grid { grid-template-columns: 1fr; }
    .cat-sidebar { order: -1; }
    .help-page-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-single-grid { grid-template-columns: 1fr; }
    .about-mission-grid { grid-template-columns: 1fr; }
    .about-trust-grid { grid-template-columns: 1fr; }
    .wizard-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; }
    .np-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Hide mobile-only elements on desktop */
.mob-menu-header, .mob-menu-footer { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .hdr-center { display: none; }
    .hdr-phone span { font-size: 15px; }

    /* Show hamburger, hide desktop nav */
    .hdr-mob-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 12px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .hdr-mob-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
    }
    .hdr-nav-links-wrap { display: none; }
    .hdr-nav-right { gap: 8px; }
    .hdr-login-btn { font-size: 11px; padding: 6px 12px; }

    .step-arrow { display: none; }

    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .np-grid  { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header compact — clean mobile layout: logo + stacked phone/email on right */
    .hdr-top { padding: 0; }
    .hdr-top-inner { height: auto; min-height: 56px; gap: 10px; padding: 8px 0; align-items: center; }
    .hdr-logo-release, .hdr-logo-ads { font-size: 19px; }
    .hdr-logo-now { font-size: 13px; }

    /* Contact stack — right side (mobile) */
    .hdr-contact {
        gap: 4px;
        align-items: flex-end;
        text-align: right;
        flex-shrink: 0;
    }
    .hdr-phone {
        padding: 0;
        gap: 6px;
        line-height: 1.2;
        font-size: 13px;
        font-weight: 700;
        color: var(--green);
        display: inline-flex;
        align-items: center;
    }
    .hdr-phone i {
        font-size: 12px;
        color: #fff;
        background: var(--green);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hdr-phone span {
        display: inline;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        color: var(--green);
    }
    /* Keep "Call Us" prefix visible on mobile, also green to match the design */
    .hdr-phone-prefix { display: inline; color: var(--green); }
    .hdr-email {
        display: inline-flex !important;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
        gap: 5px;
        line-height: 1.2;
        max-width: none;
        white-space: nowrap;
        color: var(--text-dark);
    }
    .hdr-email i {
        font-size: 12px;
        color: var(--accent);
        flex-shrink: 0;
    }

    /* Nav bar compact */
    .hdr-nav-inner { height: 42px; }
    .hdr-login-btn { font-size: 10px; padding: 5px 10px; }
    .hdr-wa-btn { width: 30px; height: 30px; font-size: 14px; }

    /* Hero compact */
    .hero-flex { flex-direction: column; gap: 0; }
    .np-scene { display: none; }
    .hero-banner { min-height: auto; }
    .hero-banner-content { max-width: 100%; padding: 30px 0; }
    .hero-banner-content h1 { font-size: 26px; }
    .hero-banner-content p { font-size: 13px; margin-bottom: 14px; }
    .hero-banner-content .badge-offer { font-size: 10px; padding: 3px 8px; margin-bottom: 8px; }
    .hero-btn-row .btn { font-size: 12px; padding: 7px 14px; }

    /* Booking bar compact */
    .quick-booking-bar { margin-top: -16px; padding: 14px; border-radius: 8px; }
    .booking-form { flex-direction: column; gap: 10px; }
    .booking-field { min-width: 100%; }
    .booking-field label { font-size: 10px; margin-bottom: 3px; }
    .booking-field select, .booking-field input { padding: 8px 10px; font-size: 13px; }
    .booking-trust { gap: 8px; padding-top: 10px; margin-top: 10px; }
    .booking-trust-item { font-size: 10px; gap: 4px; }
    .booking-trust-item i { font-size: 12px; }

    /* Carousel compact */
    .np-carousel-section { padding: 16px 0; }
    .np-carousel-item { height: 44px; padding: 6px 12px; }
    .np-carousel-item img { height: 26px; }

    /* Sections compact */
    .how-it-works { padding: 40px 0; }
    .categories-section { padding: 40px 0; }
    .newspapers-section { padding: 40px 0; }
    .why-us-section { padding: 40px 0; }
    .testimonials-section { padding: 40px 0; }
    .py-40 { padding-top: 24px; padding-bottom: 24px; }
    .py-60 { padding-top: 40px; padding-bottom: 40px; }

    /* Section headings compact */
    .section-heading { margin-bottom: 24px; }
    .section-heading h2 { font-size: 20px; }
    .section-heading p { font-size: 13px; }

    /* Process steps compact */
    .process-row { flex-wrap: wrap; gap: 8px; justify-content: center; }
    .process-connector { display: none; }
    .process-step { width: calc(33.33% - 8px); }
    .process-circle { width: 56px; height: 56px; }
    .process-circle i { font-size: 22px; }
    .process-num { width: 20px; height: 20px; font-size: 10px; top: -2px; right: -2px; }
    .process-step h6 { font-size: 12px; }
    .process-step p { font-size: 10px; }

    /* Category grid compact */
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-card { padding: 16px 10px; }
    .category-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 8px; }
    .category-card h5 { font-size: 13px; }
    .category-card p { font-size: 11px; }

    /* Stats compact */
    .trust-stats { padding: 24px 0; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 11px; }
    .stat-icon { font-size: 20px; margin-bottom: 4px; }

    /* Newspapers grid compact */
    .np-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .newspaper-logo-card { padding: 10px 6px; min-height: 90px; }
    .newspaper-logo-card img { height: 30px; }
    .newspaper-logo-card span { font-size: 10px; margin-top: 4px; }

    /* Why us compact */
    .why-grid { grid-template-columns: 1fr; gap: 10px; }
    .why-card { padding: 14px; gap: 10px; }
    .why-card-icon { width: 36px; height: 36px; font-size: 16px; }
    .why-card h6 { font-size: 13px; }
    .why-card p { font-size: 12px; }

    /* Help strip compact */
    .help-strip { padding: 16px; gap: 12px; }
    .help-strip-content h5 { font-size: 14px; }
    .help-strip-content p { font-size: 12px; }
    .help-strip-btns .btn { font-size: 12px; padding: 8px 14px; }

    /* Testimonials compact */
    .testimonial-grid { grid-template-columns: 1fr; gap: 12px; }
    .testimonial-card { padding: 16px; }
    .testimonial-text { font-size: 13px; margin-bottom: 12px; }

    /* Blog slider compact */
    .blog-slider-section { padding: 40px 0; }
    .blog-slide-card { flex: 0 0 220px; padding: 16px 14px; }
    .blog-slide-card h4 { font-size: 13px; }
    .blog-slide-card p { font-size: 12px; }
    .blog-slider-arrow { display: none; }

    /* CTA compact */
    .cta-banner { padding: 32px 0; }
    .cta-banner h2 { font-size: 20px; }
    .cta-banner p { font-size: 13px; margin-bottom: 14px; }

    /* Footer mobile — Brand full-width on top, then 3 sections (Quick Links / Categories / Contact) side-by-side */
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px 10px;
    }
    .footer-grid > div:first-child {
        grid-column: 1 / -1;  /* Brand spans full width */
    }
    .site-footer { padding: 28px 0 16px; font-size: 12px; }
    .footer-heading {
        font-size: 12px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: .4px;
    }
    .footer-about { font-size: 12.5px; line-height: 1.5; margin-top: 10px; }
    .footer-social { gap: 8px; margin-top: 12px; }
    .footer-social a { width: 30px; height: 30px; font-size: 14px; }
    .footer-links li { margin-bottom: 6px; }
    .footer-links a { font-size: 11.5px; word-break: break-word; }
    .footer-contact li { margin-bottom: 8px; font-size: 11.5px; word-break: break-word; }
    .footer-contact li i { font-size: 12px; flex-shrink: 0; }
    .footer-contact a { word-break: break-all; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-top: 14px;
        margin-top: 18px;
        font-size: 11.5px;
    }
    .footer-bottom a { font-size: 11.5px; }
    .footer-brand .f-logo-release,
    .footer-brand .f-logo-ads { font-size: 18px; }
    .footer-brand .f-logo-now { font-size: 14px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hdr-top-inner { min-height: 46px; gap: 6px; }
    .hdr-logo-release, .hdr-logo-ads { font-size: 17px; }
    .hdr-logo-now { font-size: 12px; }
    .hdr-phone span { font-size: 11px; }
    .hdr-email { font-size: 9.5px; }
    .hdr-nav-inner { height: 38px; }

    .hero-banner { min-height: 320px; }
    .hero-banner-content h1 { font-size: 22px; }
    .hero-banner-content p { font-size: 12px; }

    .quick-booking-bar { padding: 12px; }
    .booking-trust { flex-direction: column; align-items: flex-start; gap: 6px; }

    .process-step { width: calc(33.33% - 6px); }
    .process-circle { width: 48px; height: 48px; }
    .process-circle i { font-size: 18px; }
    .process-step h6 { font-size: 11px; }
    .process-step p { display: none; }

    .cat-grid { gap: 8px; }
    .np-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { flex-wrap: wrap; }
    .stat-item { min-width: 50%; padding: 8px; }
}

/* ============================================
   PREMIUM NEWSPAPER SHOWCASE (Hero right side)
   Dual auto-scroll marquee — left up, right down
   ============================================ */
.npx-showcase {
    /* EDIT: scroll speeds (higher = slower) */
    --npx-speed-up: 38s;
    --npx-speed-down: 42s;
    /* EDIT: ad highlight palette (yellow → red, high attention) */
    --npx-ad-bg: #fff200;
    --npx-ad-bg-2: #ffd400;
    --npx-ad-border: #ed1c24;
    --npx-ad-text: #1a0000;
    --npx-ad-glow: rgba(237, 28, 36, .55);

    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    height: 560px;
    overflow: hidden;
    padding: 6px;
    perspective: 1400px;
}
.npx-fade {
    position: absolute; left: 0; right: 0; height: 90px;
    pointer-events: none; z-index: 5;
}
.npx-fade-top    { top: 0;    background: linear-gradient(to bottom, #101010 0%, rgba(16,16,16,0) 100%); }
.npx-fade-bottom { bottom: 0; background: linear-gradient(to top,    #101010 0%, rgba(16,16,16,0) 100%); }

.npx-col { position: relative; overflow: hidden; }
.npx-track {
    display: flex;
    flex-direction: column;
    gap: 22px;
    will-change: transform;
}

/* Two duplicate sets — translate exactly -50% for seamless loop */
.npx-col-up   .npx-track { animation: npxScrollUp   var(--npx-speed-up)   linear infinite; }
.npx-col-down .npx-track { animation: npxScrollDown var(--npx-speed-down) linear infinite; }

@keyframes npxScrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes npxScrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.npx-showcase:hover .npx-track { animation-play-state: paused; }

/* --- Newspaper card (B/W editorial) --- */
.npx-card {
    background: #fdfdfb;
    border: 1px solid #d6d3cc;
    border-radius: 0;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 0 rgba(0,0,0,.04),
        0 12px 30px -14px rgba(0,0,0,.18),
        0 2px 6px rgba(0,0,0,.06);
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
    position: relative;
}
.npx-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 0;
    background:
        repeating-linear-gradient(90deg, rgba(0,0,0,.015) 0 1px, transparent 1px 4px);
    pointer-events: none;
}

/* Force layout order so the logo masthead is ALWAYS at the top of every card,
   followed by date, headline, image, lines, and finally the ad block at the bottom. */
.npx-card .npx-masthead { order: 1; }
.npx-card .npx-date     { order: 2; }
.npx-card .npx-headline { order: 3; }
.npx-card .npx-img      { order: 4; }
.npx-card .npx-lines    { order: 5; }
.npx-card .npx-ad       { order: 6; margin-top: 16px; }

.npx-masthead {
    text-align: center;
    border-top: 3px double #111;
    border-bottom: 1px solid #111;
    padding: 10px 6px;
    margin-bottom: 6px;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.npx-masthead img {
    max-height: 28px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    display: block;
}
.npx-date {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 12px;
}
.npx-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0 0 10px;
}
.npx-img {
    width: 100%;
    height: 70px;
    background:
        linear-gradient(135deg, #2b2b2b 0%, #555 50%, #888 100%);
    border: 1px solid #333;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.npx-img::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,.18) 0 6px, transparent 7px),
        radial-gradient(circle at 70% 60%, rgba(0,0,0,.25) 0 8px, transparent 9px);
}
.npx-lines { display: flex; flex-direction: column; gap: 5px; }
.npx-lines span {
    display: block; height: 5px;
    background: #2b2b2b;
    opacity: .55;
    border-radius: 1px;
}
.npx-lines span.w100 { width: 100%; }
.npx-lines span.w95  { width: 95%; }
.npx-lines span.w92  { width: 92%; }
.npx-lines span.w90  { width: 90%; }
.npx-lines span.w85  { width: 85%; }
.npx-lines span.w80  { width: 80%; }
.npx-lines span.w75  { width: 75%; }
.npx-lines span.w70  { width: 70%; }
.npx-lines span.w65  { width: 65%; }

/* --- Highlighted ad block (premium gold) --- */
.npx-ad {
    /* override grayscale */
    filter: none;
    -webkit-filter: none;
    background: #ffffff;
    border: 2px dashed var(--npx-ad-border);
    border-radius: 3px;
    padding: 12px 14px;
    margin: 10px 0;
    color: var(--npx-ad-text);
    font-family: 'Inter', sans-serif;
    box-shadow: none;
    position: relative;
    z-index: 2;
}
/* Card itself stays grayscale; ad opts out via filter:none + isolation */
.npx-card .npx-ad { isolation: isolate; }
.npx-ad-tag {
    display: inline-block;
    background: var(--npx-ad-border);
    color: #fff;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
}
.npx-ad strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    color: #1a1200;
    margin-bottom: 2px;
}
.npx-ad small { font-size: 11px; color: #4a0000; font-weight: 600; }


/* --- Responsive --- */
@media (max-width: 1024px) {
    .npx-showcase { height: 480px; gap: 16px; }
    .npx-masthead { font-size: 18px; }
    .npx-headline { font-size: 14px; }
}
@media (max-width: 720px) {
    .npx-showcase { height: 420px; gap: 12px; padding: 4px; }
    .npx-card { padding: 14px; }
    .npx-masthead { font-size: 16px; }
    .npx-img { height: 56px; }
}
@media (max-width: 480px) {
    .npx-showcase { height: 380px; }
    .npx-headline { font-size: 13px; }
    .npx-ad strong { font-size: 13px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .npx-col-up .npx-track,
    .npx-col-down .npx-track { animation: none; }
}
