/* ═══════════════════════════════════════════════════════════════════
   AQUA CARE RO — BLOG & BLOG INDEX STYLESHEET
   File   : blog/blog.css
   Covers : Individual article pages + blog.php index page
   Uses   : CSS custom properties from global.css
            --navy  --blue  --cyan  --green  --gold
            --text  --muted --off   --border
   ═══════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════
   1. ARTICLE PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

.blog-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 5% 60px;
}


/* ═══════════════════════════════════════════════════════════════════
   2. BREADCRUMB
   ═══════════════════════════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  flex-wrap: wrap;
  line-height: 1;
}
.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: color .18s;
}
.breadcrumb a:hover {
  color: var(--cyan);
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--border);
  font-size: 11px;
}


/* ═══════════════════════════════════════════════════════════════════
   3. BLOG META BAR
   ═══════════════════════════════════════════════════════════════════ */

.blog-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  line-height: 1;
}


/* ═══════════════════════════════════════════════════════════════════
   4. HERO BANNER (article header card)
   ═══════════════════════════════════════════════════════════════════ */

.blog-hero {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, #1565c0 60%, #1976d2 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow */
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(0,184,217,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(255,255,255,.06) 0%, transparent 45%);
  pointer-events: none;
}

/* Decorative circles */
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.blog-hero > div {
  position: relative;
  z-index: 1;
}

.blog-hero-icon {
  font-size: 58px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.25));
}

.blog-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -.3px;
  max-width: 520px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════════════
   5. ARTICLE TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

.blog-article h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}

.blog-article h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Cyan left-accent stripe */
.blog-article h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 3px;
  flex-shrink: 0;
}

.blog-article h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 10px;
}

.blog-article h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}

.blog-article p {
  font-size: 15.5px;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
  padding-left: 24px;
  margin-bottom: 22px;
}

.blog-article li {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 9px;
}

.blog-article strong {
  color: var(--text);
  font-weight: 700;
}

.blog-article em {
  color: var(--blue);
  font-style: italic;
}

.blog-article a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .18s;
}
.blog-article a:hover {
  color: var(--cyan);
}

/* Horizontal rule */
.blog-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}


/* ═══════════════════════════════════════════════════════════════════
   6. CALLOUT BOXES — info / tip / warn
   ═══════════════════════════════════════════════════════════════════ */

/* Shared base */
.info-box,
.tip-box,
.warn-box {
  border-radius: 0 16px 16px 0;
  padding: 20px 26px;
  margin: 32px 0;
  position: relative;
}

/* Info — cyan */
.info-box {
  background: rgba(0,184,217,.07);
  border-left: 4px solid var(--cyan);
}

/* Tip — green */
.tip-box {
  background: rgba(0,200,83,.07);
  border-left: 4px solid var(--green);
}

/* Warning — gold */
.warn-box {
  background: rgba(245,166,35,.09);
  border-left: 4px solid var(--gold);
}

.info-box h4,
.tip-box h4,
.warn-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.info-box p,  .info-box li,
.tip-box p,   .tip-box li,
.warn-box p,  .warn-box li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 4px;
}

.info-box ul,
.tip-box ul,
.warn-box ul {
  padding-left: 18px;
  margin: 8px 0 0;
}


/* ═══════════════════════════════════════════════════════════════════
   7. PRICE / DATA TABLE
   ═══════════════════════════════════════════════════════════════════ */

.art-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.art-price-table thead th {
  background: var(--navy);
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.art-price-table thead th:last-child {
  text-align: right;
}

.art-price-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  vertical-align: middle;
}
.art-price-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--blue);
  white-space: nowrap;
}
.art-price-table tbody tr:last-child td {
  border-bottom: none;
}
.art-price-table tbody tr:nth-child(even) td {
  background: rgba(0,0,0,.018);
}
.art-price-table tbody tr:hover td {
  background: rgba(21,101,192,.04);
}

/* Table caption / note */
.table-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: -20px;
  margin-bottom: 28px;
  padding-left: 4px;
}


/* ═══════════════════════════════════════════════════════════════════
   8. STEPS / PROCESS LIST
   ═══════════════════════════════════════════════════════════════════ */

.steps-list {
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow .2s;
}
.step-item:hover {
  box-shadow: 0 4px 20px rgba(21,101,192,.08);
}

.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(21,101,192,.25);
}

.step-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
}
.step-text p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   9. AREA TAGS
   ═══════════════════════════════════════════════════════════════════ */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 30px;
}

.area-tag {
  padding: 6px 15px;
  background: rgba(21,101,192,.07);
  border: 1px solid rgba(21,101,192,.18);
  border-radius: 100px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  line-height: 1;
  transition: background .18s, border-color .18s;
  cursor: default;
}
.area-tag:hover {
  background: rgba(21,101,192,.14);
  border-color: rgba(21,101,192,.32);
}


/* ═══════════════════════════════════════════════════════════════════
   10. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════ */

.faq-list {
  margin: 18px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:has(.faq-q.open) {
  box-shadow: 0 4px 24px rgba(21,101,192,.10);
  border-color: rgba(21,101,192,.25);
}

.faq-q {
  width: 100%;
  padding: 17px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: none;
  text-align: left;
  transition: background .18s;
  user-select: none;
  line-height: 1.4;
}
.faq-q:hover {
  background: var(--off);
}

/* + / − icon */
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--cyan);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .22s;
}
.faq-q.open::after {
  content: '−';
}

.faq-a {
  display: none;
  padding: 16px 22px 20px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.faq-a.open {
  display: block;
}


/* ═══════════════════════════════════════════════════════════════════
   11. ARTICLE BOOKING SECTION
       (dark navy full-width bar at the bottom of each article)
   ═══════════════════════════════════════════════════════════════════ */

.art-booking {
  background: linear-gradient(155deg, #0a1f44 0%, #0d2554 50%, #133066 100%);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.art-booking::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(0,184,217,.08);
  pointer-events: none;
}
.art-booking::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,.06) 0%, transparent 70%);
  pointer-events: none;
}

.art-booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.art-booking-header {
  text-align: center;
  margin-bottom: 48px;
}
.art-booking-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.art-booking-header p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  letter-spacing: .2px;
}

/* ── Service Cards Row ── */
.art-service-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 52px;
}

.art-scard {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 22px 14px;
  text-align: center;
  transition: background .2s, border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.art-scard:hover {
  background: rgba(0,184,217,.12);
  border-color: rgba(0,184,217,.28);
  transform: translateY(-3px);
}

.art-scard-icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.art-scard-name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.art-scard-price {
  font-family: 'Sora', sans-serif;
  font-size: 21px;
  font-weight: 900;
  color: #00e5ff;
  line-height: 1;
}
.art-scard-price small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
}
.art-scard-note {
  font-size: 10.5px;
  color: rgba(255,255,255,.38);
  margin-top: 5px;
  line-height: 1.4;
}
.art-scard-btn {
  margin-top: 14px;
  width: 100%;
  padding: 9px 4px;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  letter-spacing: .2px;
}
.art-scard-btn:hover {
  opacity: .86;
  transform: scale(1.02);
}
.art-scard-btn:active {
  transform: scale(.98);
}

/* ── Bottom 2-col row ── */
.art-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Enquiry Form Box ── */
.art-form-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
}
.art-form-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 5px;
}
.art-form-box > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.art-fg {
  margin-bottom: 14px;
}
.art-fg label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.art-fg input,
.art-fg select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
.art-fg input:focus,
.art-fg select:focus {
  border-color: var(--cyan);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,184,217,.10);
}
.art-fg input::placeholder {
  color: rgba(0,0,0,.3);
}

.art-form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: #ffffff;
  border: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  margin-top: 6px;
  letter-spacing: .2px;
  box-shadow: 0 4px 20px rgba(21,101,192,.30);
}
.art-form-submit:hover {
  opacity: .92;
  box-shadow: 0 6px 28px rgba(21,101,192,.40);
}
.art-form-submit:active {
  transform: scale(.98);
}
.art-form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* ── Contact / Call / WhatsApp column ── */
.art-contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.art-contact-card {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  padding: 20px 22px;
  transition: background .2s;
}
.art-contact-card:hover {
  background: rgba(255,255,255,.10);
}
.art-contact-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
  letter-spacing: .2px;
}
.art-contact-card p,
.art-contact-card a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  display: block;
  line-height: 1.65;
  transition: color .18s;
}
.art-contact-card a:hover {
  color: #00e5ff;
}

/* Large phone number */
.art-phone-big {
  font-family: 'Sora', sans-serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #00e5ff !important;
  letter-spacing: -.5px;
  line-height: 1 !important;
  display: block;
}

/* WhatsApp button */
.art-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(37,211,102,.30);
}
.art-wa-btn:hover {
  opacity: .88;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Call button */
.art-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  background: rgba(0,184,217,.14);
  border: 1.5px solid rgba(0,184,217,.35);
  color: #ffffff;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}
.art-call-btn:hover {
  background: rgba(0,184,217,.24);
  border-color: rgba(0,184,217,.55);
  color: #ffffff;
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════════
   12. BLOG INDEX — HERO
   ═══════════════════════════════════════════════════════════════════ */

.blogi-hero {
  background: linear-gradient(155deg, #0a1f44 0%, #1565c0 55%, #1976d2 100%);
  padding: 120px 5% 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blogi-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,184,217,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,.05) 0%, transparent 45%);
  pointer-events: none;
}
.blogi-hero > * {
  position: relative;
  z-index: 1;
}

.blogi-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -.5px;
  line-height: 1.15;
}
.blogi-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.blogi-hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.blogi-hero-stat {
  text-align: center;
}
.blogi-hero-stat .val {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #00e5ff;
  display: block;
  line-height: 1;
}
.blogi-hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  letter-spacing: .3px;
}


/* ═══════════════════════════════════════════════════════════════════
   13. BLOG INDEX — FILTER TABS
   ═══════════════════════════════════════════════════════════════════ */

.blogi-filters {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0 5%;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.blogi-filters-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.blogi-filters-inner::-webkit-scrollbar {
  display: none;
}

.blogi-tab {
  padding: 15px 22px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  outline: none;
}
.blogi-tab:hover {
  color: var(--navy);
}
.blogi-tab.active {
  color: var(--blue);
  border-bottom-color: var(--cyan);
}


/* ═══════════════════════════════════════════════════════════════════
   14. BLOG INDEX — SECTION HEADERS, GRID & CARDS
   ═══════════════════════════════════════════════════════════════════ */

.blogi-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 5%;
}

.blogi-section-alt {
  background: var(--off);
  margin: 0 -5%;
  padding: 56px 10%;
}

.blogi-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Card grid */
.blogi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Individual card */
.blogi-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.blogi-card:hover {
  box-shadow: 0 12px 44px rgba(21,101,192,.13);
  transform: translateY(-4px);
  border-color: rgba(21,101,192,.20);
}

/* Card colour banner (top section) */
.blogi-card-banner {
  padding: 26px 22px 22px;
  background: linear-gradient(135deg, var(--navy), #1565c0);
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blogi-card-banner::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}

/* Green variant — informational articles */
.blogi-card-banner.info {
  background: linear-gradient(135deg, #0b5e3e, #1a7a52);
}

/* Big decorative emoji icon */
.blogi-card-icon {
  font-size: 42px;
  position: absolute;
  top: 14px;
  right: 16px;
  opacity: .28;
  line-height: 1;
  user-select: none;
}

/* Pill badges row */
.blogi-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.badge {
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1;
}
.badge-en  { background: rgba(0,184,217,.28); color: #00e5ff; }
.badge-hi  { background: rgba(255,214,0,.22);  color: #ffd600; }
.badge-svc { background: rgba(255,255,255,.16); color: rgba(255,255,255,.85); }
.badge-inf { background: rgba(255,255,255,.16); color: rgba(255,255,255,.85); }

/* Card body */
.blogi-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blogi-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
}
.blogi-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 16px;
}
.blogi-card-meta {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* "Read Article →" link button */
.blogi-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 9px;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  align-self: flex-start;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(21,101,192,.22);
}
.blogi-card-link:hover {
  opacity: .88;
  color: #ffffff;
  transform: translateX(2px);
  box-shadow: 0 4px 18px rgba(21,101,192,.32);
}


/* ═══════════════════════════════════════════════════════════════════
   15. BLOG INDEX — CTA BAND
   ═══════════════════════════════════════════════════════════════════ */

.blogi-cta {
  background: linear-gradient(155deg, #0a1f44 0%, #1565c0 100%);
  padding: 70px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blogi-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(0,184,217,.10);
  pointer-events: none;
}

.blogi-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -.3px;
  position: relative;
}
.blogi-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.7;
  position: relative;
}
.blogi-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.blogi-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.blogi-cta-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #ffffff;
}
.blogi-cta-btn.primary {
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(21,101,192,.28);
}
.blogi-cta-btn.wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37,211,102,.28);
}
.blogi-cta-btn.ghost {
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.22);
  color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════════════
   16. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Large tablets ── */
@media (max-width: 1000px) {
  .art-service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Tablets / small laptops ── */
@media (max-width: 800px) {
  .blog-main {
    padding: 80px 4% 44px;
  }
  .blog-hero {
    min-height: 170px;
    padding: 28px 22px;
    border-radius: 16px;
  }
  .blog-hero-icon {
    font-size: 44px;
  }
  .art-service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .art-bottom-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blogi-hero {
    padding: 100px 5% 52px;
  }
  .blogi-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

/* ── Mobile ── */
@media (max-width: 560px) {
  .blog-main {
    padding: 72px 4% 36px;
  }
  .blog-article h1 {
    font-size: 24px;
  }
  .blog-article h2 {
    font-size: 18px;
    margin-top: 36px;
  }
  .blog-hero {
    min-height: 140px;
    padding: 22px 16px;
  }
  .blog-hero-icon {
    font-size: 36px;
  }
  .art-booking {
    padding: 52px 4%;
  }
  .art-booking-header h2 {
    font-size: 22px;
  }
  .art-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .art-scard {
    padding: 16px 10px;
  }
  .art-scard-price {
    font-size: 18px;
  }
  .art-form-box {
    padding: 22px 18px;
  }
  .blogi-grid {
    grid-template-columns: 1fr;
  }
  .blogi-hero-stats {
    gap: 20px;
  }
  .blogi-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .blogi-cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  .art-service-cards {
    grid-template-columns: 1fr 1fr;
  }
  .art-scard-name {
    font-size: 11.5px;
  }
}