/* ============================================
   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: transparent; 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: 13px;
    font-weight: 500;
    color: var(--text-muted);
    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 (hidden on desktop) */
.hdr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1100;
}
.hdr-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s;
}
.hdr-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hdr-hamburger.active span:nth-child(2) { opacity: 0; }
.hdr-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav links row */
.hdr-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}
.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;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    z-index: 1100;
}
.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;
    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 SLIDER
   ============================================ */
.hero-slider-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
}
.hero-slide-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,36,64,.92) 0%, rgba(15,36,64,.75) 50%, rgba(15,36,64,.4) 100%);
    z-index: 1;
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 620px;
}
.hero-slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.hero-slide-content p {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    margin-bottom: 16px;
    max-width: 480px;
}
.hero-slide-content .badge-offer {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
/* Hero buttons — compact */
.hero-slide-content .btn {
    font-size: 12px;
    padding: 7px 18px;
}
.hero-slide-content .btn i { font-size: 12px; }
.hero-slide-content .btn-hero-primary { background: var(--accent); color: #fff; border: none; }
.hero-slide-content .btn-hero-primary:hover { background: var(--accent-hover); color: #fff; }
.hero-slide-content .btn-hero-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.hero-slide-content .btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.hero-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Slider nav arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(4px);
    transition: all .2s;
}
.hero-slider-nav:hover { background: var(--accent); border-color: var(--accent); }
.hero-slider-prev { left: 15px; }
.hero-slider-next { right: 15px; }

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .3s;
}
.hero-slider-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 4px;
}

/* ============================================
   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 35s 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
   ============================================ */
.how-it-works { padding: 60px 0; background: var(--bg-white); }
.steps-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.step-card {
    flex: 1;
    min-width: 130px;
    max-width: 170px;
    text-align: center;
    padding: 16px 10px;
    position: relative;
}
.step-number {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 2px solid var(--accent);
}
.step-card h6 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.step-card p { font-size: 12px; color: var(--text-muted); }
.step-arrow {
    position: absolute;
    right: -8px;
    top: 32px;
    color: #ccc;
    font-size: 18px;
}

/* ============================================
   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); }
/* Icon colors */
.ic-red    { color: #ed3933; }
.ic-blue   { color: #333; }
.ic-green  { color: #27ae60; }
.ic-yellow { color: #ed3933; }
.ic-cyan   { color: #555; }
.ic-purple { color: #444; }
.ic-gray   { color: #666; }
.ic-orange { color: #ed3933; }

/* ============================================
   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; }

/* ============================================
   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); }
.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; }

/* ============================================
   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-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; }

/* ============================================
   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 { display: flex; justify-content: center; gap: 4px; margin-bottom: 32px; }
.wizard-step { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text-muted); background: var(--bg-light); transition: all .2s; }
.wizard-step.active { background: var(--accent); color: #fff; }
.wizard-step.done { background: #e8f8ef; color: #1b5e20; }
.wizard-step-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,.08); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.wizard-step.active .wizard-step-num { background: rgba(255,255,255,.3); }
.wizard-step-label { display: none; }
@media (min-width: 769px) { .wizard-step-label { display: inline; } }

.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-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; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .hdr-center { display: none; }
    .hdr-phone span { font-size: 15px; }

    /* Mobile nav */
    .hdr-hamburger { display: flex; }
    .hdr-nav-links {
        position: fixed;
        top: 0; left: -280px;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 60px 0 20px;
        box-shadow: 4px 0 20px rgba(0,0,0,.15);
        transition: left .3s;
        z-index: 1050;
        overflow-y: auto;
        gap: 0;
    }
    .hdr-nav-links.open { left: 0; }
    .hdr-nav-link { padding: 12px 20px; font-size: 14px; }
    .hdr-nav-divider { width: 100%; height: 1px; background: #eee; }

    /* Dropdown on mobile */
    .hdr-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        display: none;
    }
    .hdr-has-dropdown.open .hdr-dropdown { display: block; }

    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,.4);
        z-index: 1040;
    }
    .nav-overlay.show { display: block; }

    .hero-slider { height: 280px; }
    .hero-slide-content h2 { font-size: 24px; }
    .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) {
    .hero-slider { height: 250px; }
    .hero-slide-content h2 { font-size: 20px; }
    .hero-slide-content p { font-size: 13px; }
    .quick-booking-bar { margin-top: -20px; padding: 16px; }
    .booking-form { flex-direction: column; }
    .booking-field { min-width: 100%; }
    .booking-trust { gap: 12px; }
    .booking-trust-item { font-size: 11px; }
    .section-heading h2 { font-size: 22px; }
    .stat-number { font-size: 26px; }
    .cta-banner h2 { font-size: 22px; }

    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .np-grid  { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hdr-top-inner { height: 56px; }
    .hdr-logo-release, .hdr-logo-ads { font-size: 22px; }
    .hdr-logo-now { font-size: 17px; }
    .hdr-phone { font-size: 14px; }
    .hdr-phone i { font-size: 16px; }

    .hero-slider { height: 220px; }
    .hero-slide-content h2 { font-size: 18px; }
    .hero-slider-nav { width: 30px; height: 30px; font-size: 14px; }

    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .np-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .steps-row { gap: 0; }
    .step-card { min-width: 100px; max-width: 140px; padding: 10px 6px; }
}
