/*
Theme Name:        Mashive Hub
Theme URI:         https://mashivehub.com
Author:            Mashive Hub
Author URI:        https://mashivehub.com
Description:       Professional bilingual Arabic & English WordPress theme for Mashive Hub house maid services across Saudi Arabia. Supports RTL Arabic, Elementor page builder, city-based service pages, custom booking forms, and full bilingual SEO with hreflang. Built for performance on Saudi mobile networks.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      8.0
License:           Private — All Rights Reserved
License URI:       https://mashivehub.com
Text Domain:       mashivehub
Tags:              rtl-language, arabic, bilingual, services, right-to-left, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --mh-emerald:        #0A4A3A;
  --mh-emerald-mid:    #0D6B53;
  --mh-emerald-light:  #12886A;
  --mh-gold:           #C19B2C;
  --mh-gold-light:     #E5C84A;
  --mh-gold-pale:      #F9F0D0;
  --mh-sand:           #F5EDD9;
  --mh-sand-dark:      #E8D9B8;
  --mh-dark:           #060D0A;
  --mh-white:          #FFFFFF;

  /* Text */
  --mh-text:           #1A1A1A;
  --mh-text-muted:     #6B6B5A;
  --mh-text-light:     #9A9A8A;

  /* UI */
  --mh-border:         #E0DDD5;
  --mh-border-light:   #F0EBE0;
  --mh-bg-input:       #FAFAF8;

  /* Spacing */
  --mh-radius:         12px;
  --mh-radius-lg:      20px;
  --mh-radius-xl:      28px;
  --mh-transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --mh-shadow-sm:      0 2px 8px rgba(10, 74, 58, 0.08);
  --mh-shadow-md:      0 8px 28px rgba(10, 74, 58, 0.12);
  --mh-shadow-lg:      0 16px 48px rgba(10, 74, 58, 0.16);
  --mh-shadow-card:    0 4px 20px rgba(0, 0, 0, 0.07);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Noto Naskh Arabic', 'Segoe UI', sans-serif;
  background: var(--mh-sand);
  color: var(--mh-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lang-en {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  direction: ltr;
}

html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] { direction: ltr; }

/* Bilingual visibility */
body.lang-en [data-ar] { display: none !important; }
body.lang-ar [data-en] { display: none !important; }
body.lang-en [data-en] { display: revert !important; }
body.lang-ar [data-ar] { display: revert !important; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Naskh Arabic', 'Tajawal', serif;
  color: var(--mh-emerald);
  line-height: 1.25;
  font-weight: 700;
}

body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 { font-size: clamp(28px, 4.5vw, 52px); }
h2 { font-size: clamp(22px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin-bottom: 1em;
  color: var(--mh-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--mh-emerald);
  text-decoration: none;
  transition: color var(--mh-transition);
}

a:hover { color: var(--mh-gold); }

strong, b { font-weight: 700; color: var(--mh-text); }
em, i { font-style: italic; }

ul, ol {
  padding-inline-start: 1.5em;
  margin-bottom: 1em;
}

li { margin-bottom: 0.4em; color: var(--mh-text-muted); font-size: 15px; }

blockquote {
  border-inline-start: 4px solid var(--mh-gold);
  padding: 16px 20px;
  background: var(--mh-gold-pale);
  border-radius: 0 var(--mh-radius) var(--mh-radius) 0;
  margin: 24px 0;
  font-style: italic;
}

blockquote p { color: var(--mh-emerald); font-weight: 600; margin: 0; }

code, pre {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  background: #F0EBE0;
  border-radius: 6px;
  font-size: 0.875em;
}

code { padding: 2px 6px; }
pre { padding: 16px 20px; overflow-x: auto; margin-bottom: 1em; }

hr {
  border: none;
  border-top: 1px solid var(--mh-border-light);
  margin: 32px 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.mh-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.mh-section {
  padding: 80px 5%;
}

.mh-section-sm {
  padding: 48px 5%;
}

.mh-section-lg {
  padding: 100px 5%;
}

.mh-text-center { text-align: center; }
.mh-text-start  { text-align: start; }
.mh-text-end    { text-align: end; }

.mh-d-flex { display: flex; }
.mh-align-center { align-items: center; }
.mh-justify-center { justify-content: center; }

.mh-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mh-grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.mh-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--mh-gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
  display: block;
}

.mh-section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--mh-emerald);
  margin-bottom: 14px;
  line-height: 1.25;
}

.mh-section-desc {
  font-size: 15px;
  color: var(--mh-text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0;
}

.mh-text-center .mh-section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* Dark section */
.mh-dark-section { background: var(--mh-emerald); }
.mh-dark-section .mh-eyebrow  { color: var(--mh-gold-light); }
.mh-dark-section .mh-section-title { color: var(--mh-white); }
.mh-dark-section .mh-section-desc  { color: rgba(255, 255, 255, 0.55); }
.mh-dark-section h2, .mh-dark-section h3 { color: var(--mh-white); }
.mh-dark-section p { color: rgba(255, 255, 255, 0.55); }

/* Gold section */
.mh-gold-section { background: var(--mh-gold); }
.mh-gold-section .mh-section-title { color: var(--mh-dark); }
.mh-gold-section p { color: rgba(0, 0, 0, 0.65); }

/* White section */
.mh-white-section { background: var(--mh-white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--mh-radius);
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all var(--mh-transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.mh-btn:hover { text-decoration: none; }

.mh-btn-primary {
  background: var(--mh-gold);
  color: var(--mh-dark);
}
.mh-btn-primary:hover {
  background: var(--mh-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193, 155, 44, 0.3);
  color: var(--mh-dark);
}

.mh-btn-secondary {
  background: var(--mh-emerald);
  color: var(--mh-white);
}
.mh-btn-secondary:hover {
  background: var(--mh-emerald-mid);
  transform: translateY(-2px);
  color: var(--mh-white);
}

.mh-btn-outline {
  background: transparent;
  color: var(--mh-white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.mh-btn-outline:hover {
  border-color: var(--mh-gold);
  color: var(--mh-gold-light);
  transform: translateY(-2px);
}

.mh-btn-outline-dark {
  background: transparent;
  color: var(--mh-emerald);
  border: 1.5px solid var(--mh-emerald);
}
.mh-btn-outline-dark:hover {
  background: var(--mh-emerald);
  color: var(--mh-white);
}

.mh-btn-dark {
  background: var(--mh-dark);
  color: var(--mh-white);
}
.mh-btn-dark:hover {
  background: var(--mh-emerald);
  transform: translateY(-2px);
  color: var(--mh-white);
}

.mh-btn-wa {
  background: #25D366;
  color: var(--mh-white);
}
.mh-btn-wa:hover {
  background: #1fb357;
  transform: translateY(-2px);
  color: var(--mh-white);
}

.mh-btn-sm  { padding: 9px 20px; font-size: 13px; }
.mh-btn-lg  { padding: 17px 38px; font-size: 17px; }
.mh-btn-xl  { padding: 20px 44px; font-size: 18px; }
.mh-btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#mh-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 74, 58, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(193, 155, 44, 0.2);
}

.mh-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.mh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mh-logo:hover { text-decoration: none; }

.mh-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mh-gold), #8B6A10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mh-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: 0.2px;
}

.mh-logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Menu */
.mh-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mh-nav-menu li { position: relative; }

.mh-nav-menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--mh-transition);
  display: block;
  white-space: nowrap;
}

.mh-nav-menu a:hover,
.mh-nav-menu .current-menu-item > a,
.mh-nav-menu .current-page-ancestor > a {
  color: var(--mh-gold-light);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* Dropdown */
.mh-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  background: var(--mh-white);
  border-radius: var(--mh-radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--mh-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--mh-transition);
  z-index: 100;
  list-style: none;
}

.mh-nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mh-nav-menu .sub-menu a {
  color: var(--mh-text);
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.mh-nav-menu .sub-menu a:hover {
  color: var(--mh-emerald);
  background: var(--mh-gold-pale);
}

/* Right side */
.mh-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Toggle */
.mh-lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 3px;
}

.mh-lang-btn {
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--mh-transition);
  font-family: inherit;
  line-height: 1;
}

.mh-lang-btn.active  { background: var(--mh-gold); color: var(--mh-dark); }
.mh-lang-btn:not(.active) { background: transparent; color: rgba(255, 255, 255, 0.55); }
.mh-lang-btn:not(.active):hover { color: var(--mh-white); }

/* Mobile Toggle */
.mh-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.mh-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mh-white);
  border-radius: 2px;
  transition: all var(--mh-transition);
}

/* Mobile nav */
.mh-mobile-nav {
  display: none;
  background: var(--mh-emerald);
  padding: 16px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mh-mobile-nav.open { display: block; }

.mh-mobile-nav .mh-nav-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.mh-mobile-nav .mh-nav-menu a {
  padding: 10px 14px;
  width: 100%;
}

.mh-mobile-nav .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--mh-radius);
  margin-top: 4px;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.mh-wa-fab {
  position: fixed;
  bottom: 28px;
  inset-inline-start: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-size: 26px;
  transition: all var(--mh-transition);
}

.mh-wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  text-decoration: none;
}

/* ============================================================
   FORMS
   ============================================================ */
.mh-form-group {
  margin-bottom: 14px;
}

.mh-form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mh-text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.mh-form-group input,
.mh-form-group select,
.mh-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mh-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--mh-text);
  background: var(--mh-bg-input);
  transition: border-color var(--mh-transition), box-shadow var(--mh-transition);
  appearance: none;
  -webkit-appearance: none;
}

.mh-form-group input:focus,
.mh-form-group select:focus,
.mh-form-group textarea:focus {
  outline: none;
  border-color: var(--mh-emerald-light);
  box-shadow: 0 0 0 3px rgba(13, 107, 83, 0.1);
}

.mh-form-group textarea { min-height: 100px; resize: vertical; }

.mh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Booking Card */
.mh-booking-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 32px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
  position: relative;
}

.mh-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-emerald-light), var(--mh-gold));
  border-radius: var(--mh-radius-lg) var(--mh-radius-lg) 0 0;
}

.mh-booking-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--mh-emerald);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mh-trust-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mh-trust-item {
  font-size: 11.5px;
  color: var(--mh-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* ============================================================
   CARDS
   ============================================================ */
.mh-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: all var(--mh-transition);
}

.mh-card:hover {
  border-color: rgba(193, 155, 44, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--mh-shadow-md);
}

/* Service Cards */
.mh-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.mh-service-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 28px 22px;
  border: 1.5px solid transparent;
  transition: all var(--mh-transition);
  position: relative;
  overflow: hidden;
}

.mh-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--mh-gold);
  transform: scaleX(0);
  transition: transform var(--mh-transition);
  transform-origin: inline-start;
}

.mh-service-card:hover {
  border-color: rgba(193, 155, 44, 0.35);
  transform: translateY(-5px);
  box-shadow: var(--mh-shadow-md);
}

.mh-service-card:hover::after { transform: scaleX(1); }

.mh-service-icon  { font-size: 36px; margin-bottom: 16px; display: block; }
.mh-service-card h3 { font-size: 16px; font-weight: 700; color: var(--mh-emerald); margin-bottom: 8px; }
.mh-service-card p  { font-size: 13px; color: var(--mh-text-muted); line-height: 1.65; margin-bottom: 14px; }

.mh-pill {
  display: inline-block;
  background: var(--mh-gold-pale);
  color: var(--mh-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(193, 155, 44, 0.2);
  margin-bottom: 12px;
}

/* City Tiles */
.mh-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.mh-city-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mh-radius);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--mh-transition);
  display: block;
  text-decoration: none;
}

.mh-city-tile:hover {
  background: rgba(193, 155, 44, 0.12);
  border-color: rgba(193, 155, 44, 0.4);
  transform: translateY(-3px);
  text-decoration: none;
}

.mh-city-icon  { font-size: 24px; margin-bottom: 7px; display: block; }
.mh-city-name  { font-size: 14px; font-weight: 700; color: var(--mh-white); display: block; margin-bottom: 3px; }
.mh-city-phone { font-size: 11px; color: rgba(193, 155, 44, 0.7); display: block; }

/* Plan Cards */
.mh-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.mh-plan-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 36px 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: all var(--mh-transition);
}

.mh-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mh-shadow-lg);
}

.mh-plan-card.featured {
  background: var(--mh-emerald);
  border-color: var(--mh-gold);
}

.mh-plan-card.featured h3,
.mh-plan-card.featured .mh-plan-price { color: var(--mh-white); }
.mh-plan-card.featured .mh-plan-tagline { color: rgba(255, 255, 255, 0.55); }
.mh-plan-card.featured .mh-feat-item { color: var(--mh-white); }
.mh-plan-card.featured .mh-feat-icon { color: var(--mh-gold-light); }

.mh-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mh-gold);
  color: var(--mh-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.mh-plan-name    { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--mh-text-muted); margin-bottom: 10px; }
.mh-plan-price   { font-size: 14px; font-weight: 700; color: var(--mh-emerald); margin-bottom: 4px; }
.mh-plan-price strong { font-size: 36px; font-weight: 700; }
.mh-plan-tagline { font-size: 13px; color: var(--mh-text-muted); margin-bottom: 22px; line-height: 1.6; }
.mh-plan-feats   { list-style: none; padding: 0; margin-bottom: 28px; }
.mh-feat-item    { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; padding: 5px 0; color: var(--mh-text); }
.mh-feat-icon    { color: var(--mh-emerald-light); flex-shrink: 0; margin-top: 2px; font-size: 14px; }

/* Review Cards */
.mh-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.mh-review-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all var(--mh-transition);
}

.mh-review-card:hover { box-shadow: var(--mh-shadow-md); }
.mh-review-stars { color: var(--mh-gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.mh-review-text  { font-size: 14px; line-height: 1.75; color: var(--mh-text); margin-bottom: 18px; }

.mh-review-author { display: flex; align-items: center; gap: 10px; }

.mh-r-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mh-emerald); color: var(--mh-gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}

.mh-r-name   { font-weight: 700; font-size: 13px; color: var(--mh-emerald); }
.mh-r-detail { font-size: 12px; color: var(--mh-text-muted); }

/* Why Cards */
.mh-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.mh-why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mh-radius-lg);
  padding: 26px 22px;
  transition: all var(--mh-transition);
}

.mh-why-card:hover { background: rgba(193, 155, 44, 0.08); border-color: rgba(193, 155, 44, 0.25); }
.mh-why-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.mh-why-card h3 { font-size: 16px; font-weight: 700; color: var(--mh-white); margin-bottom: 8px; }
.mh-why-card p  { font-size: 13px; color: rgba(255, 255, 255, 0.52); line-height: 1.7; }

/* Steps */
.mh-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-top: 52px;
}

.mh-step { text-align: center; }

.mh-step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--mh-gold-pale); border: 2px solid var(--mh-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px; font-weight: 700; color: var(--mh-gold);
  font-family: 'Cormorant Garamond', serif;
}

.mh-step h3 { font-size: 16px; font-weight: 700; color: var(--mh-emerald); margin-bottom: 8px; }
.mh-step p  { font-size: 13px; color: var(--mh-text-muted); line-height: 1.7; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.mh-hero {
  min-height: 92vh;
  background: var(--mh-emerald);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5%;
}

.mh-hero-geo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 50%, rgba(193, 155, 44, 0.07) 0%, transparent 65%),
    radial-gradient(circle at 5% 90%, rgba(193, 155, 44, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(18, 136, 106, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.mh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  align-items: center;
}

.mh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 155, 44, 0.1);
  border: 1px solid rgba(193, 155, 44, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  color: var(--mh-gold-light);
  font-size: 13px;
  font-weight: 500;
}

.mh-hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mh-gold);
  animation: mhPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes mhPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.mh-hero h1 { color: var(--mh-white); margin-bottom: 16px; }
.mh-hero h1 .mh-accent { color: var(--mh-gold-light); display: block; }
.mh-hero-sub { font-size: 16px; color: rgba(255, 255, 255, 0.65); margin-bottom: 32px; line-height: 1.8; }
.mh-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.mh-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.mh-stat-val { font-size: 26px; font-weight: 700; color: var(--mh-gold-light); display: block; line-height: 1; margin-bottom: 4px; }
.mh-stat-lbl { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.8px; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.mh-page-header {
  background: var(--mh-emerald);
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.mh-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 80% 50%, rgba(193, 155, 44, 0.08) 0%, transparent 65%);
}

.mh-page-header .mh-container { position: relative; z-index: 1; }
.mh-page-header h1 { color: var(--mh-white); margin-bottom: 14px; }
.mh-page-header p  { color: rgba(255, 255, 255, 0.65); max-width: 600px; line-height: 1.8; font-size: 16px; }
.mh-page-header .mh-eyebrow { color: var(--mh-gold-light); }

/* Breadcrumb */
.mh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.mh-breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.mh-breadcrumb a:hover { color: var(--mh-gold-light); }
.mh-breadcrumb span { color: var(--mh-gold-light); }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.mh-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
}

.mh-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.mh-post-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all var(--mh-transition);
}

.mh-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mh-shadow-md);
}

.mh-post-card:hover .mh-post-title a { color: var(--mh-gold); }

.mh-post-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mh-post-thumb-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--mh-emerald), var(--mh-emerald-mid));
}

.mh-post-body { padding: 22px; }

.mh-post-cat {
  display: inline-block;
  background: var(--mh-gold-pale);
  color: var(--mh-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(193, 155, 44, 0.2);
  text-decoration: none;
}

.mh-post-cat:hover { background: var(--mh-gold); color: var(--mh-dark); text-decoration: none; }

.mh-post-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.mh-post-title a { color: var(--mh-emerald); text-decoration: none; }
.mh-post-title a:hover { color: var(--mh-gold); }

.mh-post-excerpt {
  font-size: 13.5px;
  color: var(--mh-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.mh-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mh-text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.mh-post-read-more {
  color: var(--mh-gold);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.mh-post-read-more:hover { color: var(--mh-emerald); }

/* Single Post */
.mh-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
}

.mh-article-wrap {}

.mh-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--mh-text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--mh-sand-dark);
  flex-wrap: wrap;
}

.mh-article-featured-img {
  width: 100%;
  border-radius: var(--mh-radius-lg);
  margin-bottom: 32px;
  max-height: 460px;
  object-fit: cover;
}

.mh-article-body h2 { font-size: 24px; margin: 32px 0 14px; }
.mh-article-body h3 { font-size: 20px; margin: 24px 0 12px; }
.mh-article-body p  { font-size: 15px; line-height: 1.9; margin-bottom: 18px; }
.mh-article-body ul, .mh-article-body ol { padding-inline-start: 20px; margin-bottom: 18px; }
.mh-article-body ul li, .mh-article-body ol li { font-size: 15px; color: var(--mh-text-muted); line-height: 1.8; }

.mh-article-highlight {
  background: var(--mh-gold-pale);
  border-inline-start: 4px solid var(--mh-gold);
  padding: 18px 22px;
  border-radius: 0 var(--mh-radius) var(--mh-radius) 0;
  margin: 24px 0;
}

.mh-article-highlight p { font-size: 15px; color: var(--mh-emerald); font-weight: 600; margin: 0; line-height: 1.7; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.mh-sidebar { position: sticky; top: 100px; }

.mh-widget {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.mh-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-emerald);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mh-sand-dark);
}

.mh-widget ul { list-style: none; padding: 0; margin: 0; }
.mh-widget ul li { padding: 7px 0; border-bottom: 1px solid var(--mh-border-light); font-size: 13.5px; }
.mh-widget ul li:last-child { border-bottom: none; }
.mh-widget ul li a { color: var(--mh-text-muted); }
.mh-widget ul li a:hover { color: var(--mh-emerald); }

/* Sidebar booking box */
.mh-sidebar-booking {
  background: var(--mh-emerald);
  border-radius: var(--mh-radius-lg);
  padding: 26px 22px;
  margin-bottom: 24px;
}

.mh-sidebar-booking h3 { font-size: 18px; font-weight: 700; color: var(--mh-gold-light); margin-bottom: 6px; }
.mh-sidebar-booking p  { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-bottom: 20px; line-height: 1.6; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.mh-service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.mh-include-list { list-style: none; padding: 0; margin-bottom: 28px; }

.mh-include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mh-border-light);
  color: var(--mh-text);
}

.mh-include-list li:last-child { border-bottom: none; }
.mh-include-icon { color: var(--mh-emerald-light); flex-shrink: 0; font-size: 16px; margin-top: 1px; }

.mh-process-box {
  background: var(--mh-gold-pale);
  border-radius: var(--mh-radius);
  padding: 22px;
  margin-top: 24px;
  border: 1px solid rgba(193, 155, 44, 0.2);
}

.mh-process-box h4 { font-size: 15px; font-weight: 700; color: var(--mh-emerald); margin-bottom: 14px; }

.mh-process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mh-text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(193, 155, 44, 0.15);
}

.mh-process-step:last-child { border-bottom: none; }

.mh-ps-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--mh-emerald); color: var(--mh-gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* Service Sidebar */
.mh-service-sidebar { position: sticky; top: 100px; }

.mh-service-sidebar-card {
  background: var(--mh-emerald);
  border-radius: var(--mh-radius-lg);
  padding: 30px 26px;
  color: var(--mh-white);
}

.mh-service-sidebar-card h3 { font-size: 20px; font-weight: 700; color: var(--mh-gold-light); margin-bottom: 6px; }
.mh-price-note { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-bottom: 22px; }

.mh-guarantee-box {
  margin-top: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mh-guarantee-box h4 { font-size: 13px; font-weight: 700; color: var(--mh-gold-light); margin-bottom: 6px; }
.mh-guarantee-box p  { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); line-height: 1.6; margin: 0; }

/* ============================================================
   CITY PAGE
   ============================================================ */
.mh-city-header {
  background: var(--mh-emerald);
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.mh-city-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(193, 155, 44, 0.08) 0%, transparent 65%);
}

.mh-city-header .mh-container { position: relative; z-index: 1; }
.mh-city-header h1 { color: var(--mh-white); margin-bottom: 14px; }

.mh-city-phone-big {
  font-size: 22px;
  font-weight: 700;
  color: var(--mh-gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  direction: ltr;
  justify-content: flex-start;
}

.mh-city-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.mh-city-svc-card {
  background: var(--mh-white);
  border-radius: var(--mh-radius-lg);
  padding: 24px 20px;
  border: 1.5px solid transparent;
  transition: all var(--mh-transition);
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.mh-city-svc-card:hover {
  border-color: rgba(193, 155, 44, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--mh-shadow-md);
  text-decoration: none;
}

.mh-city-svc-card h3 { font-size: 15px; font-weight: 700; color: var(--mh-emerald); margin-bottom: 6px; }
.mh-city-svc-card p  { font-size: 13px; color: var(--mh-text-muted); line-height: 1.6; margin-bottom: 12px; }

.mh-avail {
  font-size: 12px;
  color: var(--mh-emerald-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mh-city-cta-box {
  background: var(--mh-emerald);
  border-radius: var(--mh-radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}

.mh-city-cta-box h3 { color: var(--mh-white); margin-bottom: 10px; }
.mh-city-cta-box p  { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }

.mh-city-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mh-phone-btn {
  background: var(--mh-gold);
  color: var(--mh-dark);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--mh-transition);
}

.mh-phone-btn:hover {
  background: var(--mh-gold-light);
  transform: translateY(-2px);
  color: var(--mh-dark);
  text-decoration: none;
}

.mh-nbhood-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

.mh-nbhood-tag {
  background: var(--mh-white);
  border: 1px solid rgba(193, 155, 44, 0.25);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--mh-emerald);
  font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */
.mh-faq-item {
  background: var(--mh-white);
  border-radius: var(--mh-radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.mh-faq-q {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  color: var(--mh-emerald);
  transition: background var(--mh-transition);
  border: none;
  width: 100%;
  background: transparent;
  text-align: inherit;
  font-family: inherit;
}

.mh-faq-q:hover { background: var(--mh-gold-pale); }
.mh-faq-q.open  { background: var(--mh-emerald); color: var(--mh-white); }
.mh-faq-icon    { font-size: 18px; transition: transform var(--mh-transition); flex-shrink: 0; line-height: 1; }
.mh-faq-q.open .mh-faq-icon { transform: rotate(45deg); }
.mh-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.mh-faq-a.open { max-height: 300px; padding: 16px 20px; }
.mh-faq-a p { font-size: 14px; color: var(--mh-text-muted); line-height: 1.75; margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.mh-cta-strip {
  background: var(--mh-gold);
  padding: 64px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mh-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
}

.mh-cta-strip .mh-container { position: relative; z-index: 1; }
.mh-cta-strip h2 { color: var(--mh-dark); margin-bottom: 12px; }
.mh-cta-strip p  { font-size: 16px; color: rgba(0, 0, 0, 0.65); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.mh-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#mh-footer {
  background: var(--mh-dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 5% 28px;
}

.mh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.mh-footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--mh-white);
  margin-bottom: 10px;
}

.mh-footer-brand-name span { color: var(--mh-gold); }
.mh-footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 16px; color: rgba(255, 255, 255, 0.5); }

.mh-footer-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--mh-gold);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  direction: ltr;
  text-align: start;
}

.mh-footer-phone:hover { color: var(--mh-gold-light); text-decoration: none; }

.mh-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--mh-white);
  margin-bottom: 16px;
}

.mh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.mh-footer-col li { margin-bottom: 9px; }
.mh-footer-col a { color: rgba(255, 255, 255, 0.45); text-decoration: none; font-size: 13px; transition: color var(--mh-transition); }
.mh-footer-col a:hover { color: var(--mh-gold); text-decoration: none; }

.mh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.mh-footer-bottom a { color: rgba(255, 255, 255, 0.35); text-decoration: none; }
.mh-footer-bottom a:hover { color: var(--mh-gold); }

/* ============================================================
   ARCHIVE / SEARCH
   ============================================================ */
.mh-archive-header {
  background: var(--mh-emerald);
  padding: 60px 5%;
  text-align: center;
}

.mh-archive-header h1 { color: var(--mh-white); }
.mh-archive-header p  { color: rgba(255, 255, 255, 0.6); max-width: 480px; margin: 8px auto 0; }

.mh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.mh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--mh-transition);
  text-decoration: none;
  background: var(--mh-white);
  color: var(--mh-text-muted);
  border: 1px solid var(--mh-border);
}

.mh-pagination .page-numbers:hover,
.mh-pagination .page-numbers.current {
  background: var(--mh-emerald);
  color: var(--mh-white);
  border-color: var(--mh-emerald);
  text-decoration: none;
}

/* Search form */
.mh-search-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 40px;
}

.mh-search-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--mh-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--mh-white);
}

.mh-search-form input:focus {
  outline: none;
  border-color: var(--mh-emerald);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.mh-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5%;
}

.mh-404-num {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: var(--mh-emerald);
  opacity: 0.08;
  line-height: 1;
  display: block;
  margin-bottom: -20px;
  font-family: 'Cormorant Garamond', serif;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.mh-comments-area {
  max-width: 760px;
  margin: 48px 0 0;
}

.comment-list { list-style: none; padding: 0; }

.comment {
  background: var(--mh-white);
  border-radius: var(--mh-radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--mh-border);
}

.comment-author { font-weight: 700; color: var(--mh-emerald); margin-bottom: 6px; }
.comment-meta   { font-size: 12px; color: var(--mh-text-muted); margin-bottom: 12px; }
.comment-content p { font-size: 14px; }

.comment-reply-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--mh-gold);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mh-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 14px;
  background: var(--mh-white);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--mh-emerald);
}

.comment-form .submit {
  background: var(--mh-emerald);
  color: var(--mh-white);
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--mh-transition);
}

.comment-form .submit:hover { background: var(--mh-emerald-mid); }

/* ============================================================
   ALIGNMENT (WP BLOCK EDITOR)
   ============================================================ */
.alignleft  { float: inline-start; margin-inline-end: 1.5em; margin-bottom: 1em; }
.alignright { float: inline-end; margin-inline-start: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { margin-left: calc(-5%); margin-right: calc(-5%); max-width: none; width: calc(100% + 10%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mh-blog-layout    { grid-template-columns: 1fr; }
  .mh-single-layout  { grid-template-columns: 1fr; }
  .mh-sidebar        { position: static; }
  .mh-footer-grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .mh-hero-grid          { grid-template-columns: 1fr; gap: 40px; }
  .mh-service-detail-grid { grid-template-columns: 1fr; }
  .mh-service-sidebar     { position: static; }
  .mh-nav-menu           { display: none; }
  .mh-menu-toggle        { display: flex; }
}

@media (max-width: 768px) {
  .mh-section            { padding: 60px 4%; }
  .mh-hero               { padding: 60px 4%; }
  .mh-form-row           { grid-template-columns: 1fr; }
  .mh-grid-2, .mh-grid-3, .mh-grid-4 { grid-template-columns: 1fr; }
  .mh-footer-grid        { grid-template-columns: 1fr; }
  .mh-city-cta-phone     { flex-direction: column; align-items: stretch; }
  .mh-city-cta-phone a   { text-align: center; justify-content: center; }
}

@media (max-width: 600px) {
  .mh-footer-bottom      { flex-direction: column; text-align: center; }
  .mh-hero-stats         { gap: 20px; }
  .mh-hero-btns          { flex-direction: column; }
  .mh-cta-btns           { flex-direction: column; align-items: center; }
}

/* Print */
@media print {
  #mh-header, #mh-footer, .mh-wa-fab, .mh-cta-strip { display: none !important; }
  body { background: white; }
}
