/*
Theme Name: Zen Natural Healthcare
Theme URI: https://zennaturalhealth.com/
Author: Rajesh / Custom Dev
Author URI: https://zennaturalhealth.com/
Description: Custom healthcare theme for Zen Natural Healthcare & Dr. Dhanesh Patel.
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zen-natural-healthcare
Tags: healthcare, clinic, wellness, blog, e-commerce
*/

/* ---------------------------------
   FONTS & RESETS
-----------------------------------*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #20233a;
  background-color: #f4f5fb;
}

/* Better default media */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: #285fe8;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Inter", serif;
  color: #151937;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  background: #ffffff;
  z-index: 1000;
}

/* Containers */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin: 0 auto;
}

/* Utility */
.text-center {
  text-align: center;
}


/* ---------------------------------
   HEADER / NAV
-----------------------------------*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(19, 33, 68, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 0;
  gap: 1.5rem;
}

/* Branding */
.site-branding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo img,
.site-header .custom-logo {
  max-height: 52px;
  width: auto;
}

.site-title {
  font-size: 1.12rem;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.site-title a {
  color: #151937;
  text-decoration: none;
}

.site-description {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: #747b99;
}

/* Nav */
.main-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left aligned on desktop */
  margin-left: 2.4rem;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.main-navigation a {
  font-weight: 500;
  color: #292f52;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  border-color: #285fe8;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid #d6dcf4;
  background: #ffffff;
  color: #20233a;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(19, 33, 68, 0.06);
  cursor: pointer;
  transition: all 0.18s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(19, 33, 68, 0.08);
}

.menu-toggle__icon {
  position: relative;
  width: 22px;
  height: 16px;
  display: inline-block;
}

/* three-line hamburger icon */
.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  background: #151937;
  border-radius: 999px;
  display: block;
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}


.menu-toggle__icon { top: 50%; transform: translateY(-50%); }
.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }

.menu-toggle.is-active .menu-toggle__icon {
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__icon::before {
  transform: rotate(-90deg) translateX(-6px);
}

.menu-toggle.is-active .menu-toggle__icon::after {
  opacity: 0;
}

/* Mobile menu simple stack */
@media (max-width: 760px) {
  .site-header .container {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.7rem;
  }

  .main-navigation {
    width: 100%;
    margin-left: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0.35rem;
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 12px 24px rgba(15, 21, 70, 0.08);
  }

  .main-navigation a {
    font-size: 0.9rem;
    display: block;
  }
}

@media (max-width: 960px) {
  .site-header .container {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-navigation {
    width: 100%;
    margin-left: 0;
    display: none;
    order: 3;
  }

  .main-navigation.is-open {
    display: block;
  }
}

/* ---------------------------------
   GLOBAL LAYOUT
-----------------------------------*/

.site-main {
  padding-top: 0; /* hero handles its own spacing */
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: #151937;
  color: #e5e7ff;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2.2rem 0 1rem;
}

.footer-widget,
.site-footer .widget {
  font-size: 0.9rem;
}

.site-footer a {
  color: #f1f3ff;
}

.site-footer .widget-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: #a1a7d6;
}

/* Widgets / Sidebar */
#secondary {
  font-size: 0.9rem;
}
.widget-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* ---------------------------------
   BUTTONS
-----------------------------------*/

.znh-btn,
button,
input[type="submit"] {
  font-family: "Inter", sans-serif;
}

.znh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.znh-btn-primary {
  background: linear-gradient(135deg, #285fe8 0%, #23a36a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(18, 51, 150, 0.35);
}

.znh-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(18, 51, 150, 0.4);
  text-decoration: none;
}

.znh-btn-ghost {
  background: #ffffff;
  color: #285fe8;
  border-color: #d5ddff;
}

.znh-btn-ghost:hover {
  background: #eef2ff;
  text-decoration: none;
}

.znh-link-btn {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ---------------------------------
   HOMEPAGE – FRONT PAGE LAYOUT
-----------------------------------*/

.znh-front {
  background: #f4f5fb;
}

/* HERO */

.znh-hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 2.8rem;
  min-height: calc(100vh - 80px); /* fill almost full screen below sticky header */
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, #f3f6ff 0%, #f5f7ff 54%, #fff3e6 54%, #ffeedc 100%);
}


.znh-hero::before,
.znh-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.znh-hero::before {
  inset: 2rem 52% auto auto;
  width: 36%;
  height: 90%;
  background: radial-gradient(circle at 30% 30%, rgba(40, 95, 232, 0.16), rgba(40, 95, 232, 0)),
    radial-gradient(circle at 80% 70%, rgba(255, 145, 84, 0.18), rgba(255, 145, 84, 0));
  filter: blur(1px);
  border-radius: 28px;
}

.znh-hero::after {
  inset: auto auto -18% 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(40, 95, 232, 0.08), rgba(255, 255, 255, 0));
  filter: blur(1px);
}

.znh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.znh-hero-text {
  max-width: 680px;
}

.znh-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #8b90b0;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.znh-hero-text h1 {
  font-size: clamp(2rem, 2.2rem + 1.4vw, 2.9rem);
  line-height: 1.18;
  margin-bottom: 0.9rem;
}

.znh-hero-text h1 span {
  color: #285fe8;
}

.znh-hero-lead {
  font-size: 0.98rem;
  color: #4c5274;
  margin-bottom: 1.1rem;
}

.znh-hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.2rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(15, 21, 70, 0.08);
  margin-bottom: 1.2rem;
}

.znh-hero-assurance > div {
  flex: 1 1 220px;
  min-width: 0;
}

.znh-hero-assurance-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b70a3;
  margin-bottom: 0.4rem;
}

.znh-hero-conditions ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #373d61;
}

.znh-hero-conditions li {
  display: flex;
  align-items: flex-start;
}

.znh-hero-conditions li::before {
  content: "✔";
  color: #1d9160;
  margin-right: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

.znh-hero-hotline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.znh-hero-hotline-cta .znh-btn {
  flex: 1 1 180px;
  text-align: center;
}

.znh-btn-whatsapp {
  background: #25d366;
  color: #0d2918;
}

.znh-btn-whatsapp:hover {
  background: #1ebe5d;
}

.znh-hero-outcome {
  font-size: 0.82rem;
  color: #3c4264;
  font-weight: 600;
}

.znh-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.znh-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.83rem;
}

.znh-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(13, 25, 75, 0.12);
  font-weight: 600;
  color: #37406a;
}

.znh-hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #285fe8, #23a36a);
  box-shadow: 0 0 0 4px rgba(40, 95, 232, 0.12);
}

.znh-hero-trust {
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 18px 40px rgba(14, 25, 76, 0.12);
}

.znh-hero-trust ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.znh-hero-trust li {
  font-size: 0.85rem;
  color: #4a5174;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.znh-hero-trust li span {
  font-weight: 700;
  color: #1d3d7c;
}

/* HERO RIGHT CARD */

.znh-hero-profile-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: 0 24px 55px rgba(13, 25, 75, 0.2);
  border: 1px solid rgba(22, 30, 70, 0.05);
  display: grid;
  gap: 1rem;
}

.znh-hero-profile-photo {
  position: relative;
  background: linear-gradient(135deg, rgba(40, 95, 232, 0.12), rgba(255, 145, 84, 0.18));
  border-radius: 1.4rem;
  padding: 0.8rem;
}

.znh-hero-photo-shell {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 30px rgba(17, 28, 84, 0.18);
}

.znh-hero-photo-shell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.znh-hero-doctor-photo-fallback {
  width: 100%;
  height: 100%;
  display: block;
}

.znh-hero-photo-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: #1d3d7c;
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: 0 10px 22px rgba(29, 61, 124, 0.25);
}

.znh-hero-profile-body {
  display: grid;
  gap: 0.5rem;
}

.znh-hero-profile-heading h2 {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

.znh-hero-profile-heading p {
  font-size: 0.9rem;
  color: #6b70a3;
  margin: 0;
}

.znh-hero-profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: #384067;
  font-size: 0.92rem;
}

.znh-hero-profile-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem;
  align-items: start;
}

.znh-hero-profile-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  margin-top: 0.3rem;
}

.znh-hero-video-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ba0c7;
  margin-bottom: 0.4rem;
}

/* HERO VIDEO – RESPONSIVE 16:9 */

.znh-hero-video-frame {
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #151937 0%, #232c64 55%, #5020c3 100%);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.znh-hero-video-frame iframe,
.znh-video-card-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1.1rem;
}

.znh-video-trigger {
  width: 100%;
  height: 100%;
  border: none;
  background: linear-gradient(120deg, rgba(11, 18, 54, 0.85), rgba(40, 95, 232, 0.75));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.85rem;
  position: absolute;
  inset: 0;
  padding: 0 1.5rem;
  transition: background 0.2s ease;
  z-index: 1;
}

.znh-video-trigger:hover,
.znh-video-trigger:focus-visible {
  background: linear-gradient(120deg, rgba(40, 95, 232, 0.85), rgba(35, 163, 106, 0.8));
}

.znh-video-play-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.znh-video-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 4px;
}

.znh-video-transcript-link {
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

/* QUICK ACTION STRIP */

.znh-quick-strip {
  margin-top: 1.9rem;
  background: linear-gradient(120deg, rgba(40, 95, 232, 0.08), rgba(35, 163, 106, 0.08));
  border-radius: 1.6rem;
  padding: 0.9rem;
  border: 1px solid rgba(40, 95, 232, 0.1);
}

.znh-quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.znh-quick-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 28px rgba(18, 30, 76, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.znh-quick-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.znh-quick-item:hover,
.znh-quick-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(18, 30, 76, 0.14);
}

.znh-quick-item:hover::after,
.znh-quick-item:focus-visible::after {
  border-color: rgba(40, 95, 232, 0.3);
}

.znh-quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(40, 95, 232, 0.15), rgba(35, 163, 106, 0.15));
  display: grid;
  place-items: center;
  grid-row: span 2;
}

.znh-quick-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: #285fe8;
}

.znh-quick-label {
  font-weight: 600;
  color: #1f2851;
  font-size: 0.92rem;
  line-height: 1.2;
}

.znh-quick-subtext {
  font-size: 0.78rem;
  color: #59608b;
}

/* GENERIC SECTIONS */

.znh-section {
  padding: 3rem 0;
}

.znh-section-alt {
  background: #edf0ff;
}

.znh-section-header {
  text-align: left;
  margin-bottom: 1.8rem;
}

.znh-section-header h2 {
  margin: 0.2rem 0;
  position: relative;
}

.znh-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #285fe8, #23a36a);
}

.znh-section-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.znh-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff6b4a;
  font-weight: 600;
}

/* FEATURE GRID */

.znh-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.znh-feature-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 36px rgba(15, 21, 70, 0.08);
  font-size: 0.93rem;
}

/* Card heading pill background */
.znh-feature-card h3,
.znh-process-step h3,
.znh-condition-card h3,
.znh-location-card h3,
.znh-review-name,
.znh-video-section-title {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #eef2ff;
  font-size: 0.86rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #232856;
  margin-bottom: 0.45rem;
}

/* PROCESS FLOW */

.znh-process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.1rem;
}

.znh-process-step {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  position: relative;
  box-shadow: 0 14px 30px rgba(15, 21, 70, 0.07);
}

.znh-process-number {
  font-weight: 700;
  font-size: 1.25rem;
  color: #285fe8;
  margin-bottom: 0.35rem;
}

/* CONDITIONS GRID */

.znh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.znh-condition-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 32px rgba(15, 21, 70, 0.08);
  font-size: 0.93rem;
}

.znh-condition-card a {
  display: inline-flex;
  margin-top: 0.55rem;
  font-weight: 600;
}

/* STATS BAND */

.znh-stats-band {
  background: linear-gradient(90deg, #251b60 0%, #332774 60%, #1e6a5b 100%);
  color: #ffffff;
  padding: 2.3rem 0;
}

.znh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.znh-stat-number {
  font-size: 1.45rem;
  font-weight: 700;
}

.znh-stat-label {
  font-size: 0.83rem;
  opacity: 0.88;
}

/* LOCATIONS */

.znh-locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.znh-locations-copy p {
  margin-bottom: 1.1rem;
  color: #41486a;
}

.znh-locations-slider {
  position: relative;
}

.znh-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.znh-slider-btn {
  border: none;
  background: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 21, 70, 0.1);
  font-size: 1rem;
  cursor: pointer;
}

.znh-slider-btn:focus-visible {
  outline: 2px solid #285fe8;
}

.znh-locations-track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.5rem;
}

.znh-locations-track,
.znh-reviews-track {
  scrollbar-width: thin;
  scrollbar-color: rgba(40, 95, 232, 0.5) transparent;
}

.znh-locations-track::-webkit-scrollbar,
.znh-reviews-track::-webkit-scrollbar {
  height: 8px;
}

.znh-locations-track::-webkit-scrollbar-thumb,
.znh-reviews-track::-webkit-scrollbar-thumb {
  background: rgba(40, 95, 232, 0.4);
  border-radius: 999px;
}

.znh-locations-track::-webkit-scrollbar-track,
.znh-reviews-track::-webkit-scrollbar-track {
  background: transparent;
}

.znh-location-card {
  min-width: 230px;
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 32px rgba(15, 21, 70, 0.1);
  font-size: 0.9rem;
  scroll-snap-align: start;
}

.znh-location-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.znh-location-rating {
  margin-top: 0.4rem;
  font-weight: 500;
  color: #f39c12;
}

.znh-map-placeholder {
  margin-top: 1.3rem;
  min-height: 210px;
  border-radius: 1.3rem;
  background: repeating-linear-gradient(
    135deg,
    #d1dafc,
    #d1dafc 8px,
    #c3cffb 8px,
    #c3cffb 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #303763;
}

/* REVIEWS */

.znh-google-rating {
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.znh-reviews-wrapper {
  position: relative;
}

.znh-reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding: 0.5rem;
  padding-bottom: 0.2rem;
}

.znh-review-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 21, 70, 0.08);
  font-size: 0.9rem;
  min-width: 260px;
  scroll-snap-align: start;
}

.znh-review-name {
  margin-bottom: 0.2rem;
}

.znh-review-stars {
  color: #ffb400;
  margin: 0 0 0.5rem;
}

/* VIDEO SECTION */

.znh-video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.znh-video-card {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 18px 36px rgba(15, 21, 70, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.znh-video-card.is-featured {
  grid-column: span 2;
}

.znh-video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0d1a44, #1f3c88);
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
}

.znh-video-card-body {
  padding: 1rem 1.2rem 1.3rem;
  font-size: 0.9rem;
}

.znh-video-card-body h3 {
  font-family: "Inter", sans-serif;
  margin-bottom: 0.3rem;
}

.znh-video-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem;
  color: #4c5274;
}

.znh-youtube-cta {
  margin-top: 1.3rem;
}

/* BLOG PREVIEW – ADVANCED CARDS */

.znh-blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.znh-blog-card {
  background: #ffffff;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 21, 70, 0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.znh-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 21, 70, 0.14);
}

.znh-blog-thumb img {
  width: 100%;
  display: block;
  height: 190px;
  object-fit: cover;
}

.znh-blog-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  background: linear-gradient(135deg, rgba(40, 95, 232, 0.12), rgba(35, 163, 106, 0.12));
}

.znh-blog-thumb-icon {
  font-size: 2rem;
  color: #285fe8;
}

.znh-blog-body {
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
}

.znh-blog-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #8c92b7;
}

.znh-blog-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin: 0.3rem 0 0.35rem;
}

/* NEWSLETTER */

.znh-newsletter-band {
  padding: 2.4rem 0;
  background: linear-gradient(135deg, #251b60 0%, #3641a6 60%, #1b8a66 100%);
  color: #ffffff;
}

.znh-newsletter-band,
.znh-newsletter-band h2,
.znh-newsletter-band p,
.znh-newsletter-band span,
.znh-newsletter-band label {
  color: #ffffff;
}

.znh-newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: center;
}

.znh-newsletter-copy h2 {
  margin-bottom: 0.25rem;
}

.znh-newsletter-copy p {
  font-size: 0.9rem;
  opacity: 0.95;
}

.znh-newsletter-assurance {
  font-size: 0.82rem;
  opacity: 0.8;
}

.znh-newsletter-form {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.znh-newsletter-form input[type="email"] {
  flex: 1 1 190px;
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.znh-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.znh-newsletter-form button {
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  border: none;
  font-weight: 600;
  background: #ffb400;
  color: #333;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.znh-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.znh-newsletter-consent {
  flex-basis: 100%;
  font-size: 0.78rem;
  opacity: 0.85;
  margin: 0;
}

.znh-newsletter-feedback {
  flex-basis: 100%;
  font-size: 0.85rem;
  margin: 0.2rem 0 0;
}

.znh-newsletter-feedback.is-success {
  color: #87f3c5;
}

.znh-newsletter-feedback.is-error {
  color: #ffdede;
}

/* ---------------------------------
   BLOG / ARCHIVE / SINGLE
-----------------------------------*/

.page-header {
  margin-bottom: 1.8rem;
}

/* Generic article styling */
article {
  margin-bottom: 1.8rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 12px 26px rgba(15, 21, 70, 0.06);
}

.entry-title {
  margin-bottom: 0.6rem;
}

.entry-meta {
  font-size: 0.8rem;
  color: #7e84aa;
  margin-bottom: 0.6rem;
}

.entry-content {
  font-size: 0.95rem;
}

/* Search form */
.search-form isplay: flex;
  gap: 0.4rem;
}
.search-form .search-field {
  flex: 1;
  padding: 0.5rem 0.7rem;
}
.search-form .search-submit {
  padding: 0.5rem 0.9rem;
}

/* ---------------------------------
   RESPONSIVE BREAKPOINTS
-----------------------------------*/

@media (max-width: 960px) {
  .znh-hero-inner {
    grid-template-columns: 1fr;
  }

  .znh-locations-layout,
  .znh-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .znh-hero-profile-card {
    max-width: 460px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .znh-hero {
    padding-top: 2.5rem;
  }

  .znh-section {
    padding: 2.2rem 0;
  }

  .znh-quick-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .znh-quick-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .znh-quick-icon {
    margin: 0 auto 0.5rem;
    grid-row: auto;
  }

  .znh-hero-assurance {
    flex-direction: column;
  }

  .znh-video-card.is-featured {
    grid-column: auto;
  }

  .footer-widgets {
    padding-top: 1.8rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.6rem, 100%);
  }

  .znh-hero-text h1 {
    font-size: 1.85rem;
  }

  .znh-hero-profile-card {
    padding: 1.1rem;
  }

  .znh-newsletter-form {
    flex-direction: column;
  }

  .znh-quick-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .znh-quick-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* =================================
   CUSTOM FOOTER LAYOUT (4 COLUMNS)
====================================*/

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.4rem 0 1.4rem;
}

/* general footer column */

.footer-col {
  font-size: 0.9rem;
  min-width: 0;
}

/* Column 1: branding + social */

.footer-col-brand {
  max-width: 280px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-logo img,
.site-footer .custom-logo {
  max-height: 60px; /* larger, clearer logo in footer */
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.footer-site-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin: 0;
}

.footer-site-title a {
  color: #ffffff;
  text-decoration: none;
}

.footer-site-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #b6bae6;
}

/* headings */

.footer-heading,
.footer-social h3 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.45rem;
  font-family: "Inter", sans-serif;
  color: #f2f3ff;
}

/* Social icons */

.footer-social {
  margin-top: 0.2rem;
}

.footer-social-list {
  list-style: none;
  margin: 0.3rem 0 0.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-social-list li {
  margin: 0;
}

.footer-social-list a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.15s ease;
}

.footer-social-list a .dashicons {
  font-size: 18px;
  line-height: 1;
}

.footer-social-list a:hover {
  background: #ffb400;
  border-color: #ffb400;
  color: #151937;
  text-decoration: none;
}

.footer-social-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #aeb2e4;
}

/* Column 2 & 3: link lists */

.footer-col-links,
.footer-col-legal {
  min-width: 0;
}

.footer-link-list {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0;
}

.footer-link-list li + li {
  margin-top: 0.25rem;
}

.footer-link-list a {
  color: #d7dbff;
}

.footer-link-list a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* footer nav used as quick links */

.footer-nav ul {
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0;
}
.footer-nav li + li {
  margin-top: 0.25rem;
}
.footer-nav a {
  color: #d7dbff;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Column 4: map + address */

.footer-col-map .footer-map-wrap {
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  background: #0b0f2e;
  margin-bottom: 0.7rem;
}

.footer-col-map iframe {
  width: 100%;
  min-height: 190px;
  border: 0;
}

.footer-map-info {
  font-size: 0.85rem;
  color: #dbe0ff;
}

.footer-map-address {
  margin-bottom: 0.3rem;
}

.footer-map-contact {
  margin-bottom: 0.55rem;
}

.footer-map-contact a {
  color: #f6f7ff;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff !important;
  border-radius: 999px;
  text-decoration: none !important;
  background: linear-gradient(135deg, #285fe8 0%, #5f3dc4 50%, #23a36a 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border: none;
  transition: all 0.25s ease;
}

.footer-map-btn:hover {
  background: linear-gradient(135deg, #5f3dc4 0%, #285fe8 50%, #1f9a66 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.footer-map-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Site info line */

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: #a1a7d6;
}

/* Responsive footer layout */

@media (max-width: 1020px) {
  .footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.8rem;
  }
}

@media (max-width: 640px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .footer-col-brand {
    max-width: 100%;
  }

  .footer-col-map iframe {
    min-height: 220px;
  }

  .footer-map-btn {
    width: 100%;
    justify-content: center;
  }
}
