/* =============================================
   عبد الله الدخيل للمحاماة
   ABDULLAH ALDAKHEEL LAW FIRM
   Main Stylesheet — Luxury Editorial Edition
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

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

:root {
  /* BRAND COLORS */
  --primary:        #4b5940;
  --primary-dark:   #3a4530;
  --primary-deep:   #2d3625;
  --primary-light:  #5d7050;
  --pistachio:      #9faa9a;
  --pistachio-soft: #c8d1c5;
  --pistachio-pale: #edf0ec;
  --grey:           #6d6e71;
  --grey-light:     #a0a2a5;
  --grey-pale:      #f2f2f3;
  --white:          #ffffff;
  --off-white:      #f7f5f1;
  --cream:          #f0ede8;
  --dark:           #1a1e18;
  --text:           #2c2e2b;
  --text-muted:     #5a5c58;
  --border:         #e0e4dd;

  /* Backward-compat aliases */
  --secondary:      #9faa9a;
  --secondary-soft: #c8d1c5;
  --secondary-pale: #edf0ec;
  --text-light:     #5a5c58;

  --shadow-sm:  0 2px 12px rgba(75,89,64,0.07);
  --shadow-md:  0 8px 36px rgba(75,89,64,0.11);
  --shadow-lg:  0 20px 64px rgba(75,89,64,0.14);
  --radius:     4px;
  --radius-lg:  10px;
  --transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
  --font-base:   'aktiv-grotesk-arabic', 'Cairo', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.75;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-base); line-height: 1.3; }
.font-accent { font-family: var(--font-accent); }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section      { padding: 96px 0; }
.section-alt  { background: var(--pistachio-pale); }
.section-dark { background: var(--primary-deep); color: var(--white); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pistachio);
  margin-bottom: 14px;
  white-space: nowrap;
}
.section-header .label::before,
.section-header .label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--pistachio);
}
.section-header h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 0.975rem; line-height: 1.85; }
.section-dark .section-header h2    { color: var(--white); }
.section-dark .section-header p     { color: var(--pistachio-soft); }
.section-dark .section-header .label{ color: var(--pistachio); }
.section-dark .section-header .label::before,
.section-dark .section-header .label::after { background: var(--pistachio); }

/* ─── SECTION HEADER DECORATED ─── */
.section-header-decorated { position: relative; display: inline-block; }
.section-header-decorated::after {
  content: ''; position: absolute; bottom: -8px; right: 0;
  width: 50%; height: 2px; background: var(--primary); border-radius: 2px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 32px;
  font-family: var(--font-base); font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius); transition: var(--transition);
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 38px; font-size: 0.975rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: transparent; transition: var(--transition); padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled {
  background: var(--dark) !important;
  padding: 13px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.22);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo a  { display: flex; align-items: center; gap: 12px; }
.logo-img    { height: 68px; width: auto; transition: height 0.32s ease; }
.navbar.scrolled .logo-img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links li a {
  display: block; padding: 8px 15px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius); transition: var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 3px;
  right: 15px; left: 15px; height: 1.5px;
  background: var(--pistachio);
  transform: scaleX(0); transition: transform 0.28s ease; transform-origin: right;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a.nav-cta {
  background: var(--primary); color: var(--white); padding: 9px 20px;
}
.nav-links li a.nav-cta::after { display: none; }
.nav-links li a.nav-cta:hover  { background: var(--primary-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 320px;
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary-dark) 55%, var(--primary) 100%);
  display: flex; align-items: flex-end; padding-bottom: 56px; padding-top: 120px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(159,170,154,0.035) 0, rgba(159,170,154,0.035) 1px, transparent 1px, transparent 56px);
}
.page-hero-content { position: relative; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--pistachio); font-size: 0.72rem; font-weight: 700;
  margin-bottom: 10px;
}
.page-hero-label::before { content: ''; width: 28px; height: 1px; background: var(--pistachio); }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; color: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--pistachio); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; transform: rotate(180deg); }

/* ─── SERVICE CARD — NUMBERED PANEL ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px 36px;
  position: relative; overflow: hidden;
  transition: background 0.32s ease;
}
.service-card::before {
  content: attr(data-num);
  position: absolute; bottom: -12px; left: 20px;
  font-size: 8rem; font-weight: 900;
  color: var(--primary); opacity: 0.04; line-height: 1;
  pointer-events: none; font-family: var(--font-base);
  transition: opacity 0.32s ease;
}
.service-card::after {
  content: ''; position: absolute; top: 0; right: 0; left: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { background: var(--pistachio-pale); }
.service-card:hover::before { opacity: 0.08; }
.service-card:hover::after  { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition); background: transparent;
}
.service-icon i { font-size: 1.15rem; color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 11px; letter-spacing: -0.01em; }
.service-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  letter-spacing: 0.02em; transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.service-card:hover .card-link { border-bottom-color: var(--primary); gap: 11px; }

/* ─── ARTICLE CARD ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card {
  display: block; background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); text-decoration: none; color: inherit;
  cursor: pointer; position: relative;
}
.article-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--primary), var(--pistachio));
  transform: scaleX(0); transform-origin: right; transition: transform 0.36s ease;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.article-card:hover::before { transform: scaleX(1); }
.article-card-top {
  width: 100%; height: 52px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 22px; position: relative; overflow: hidden;
}
.article-card-top::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 16px);
}
.article-card-top i { font-size: 1.1rem; color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.article-body { padding: 22px 24px 28px; }
.article-category {
  font-size: 0.68rem; font-weight: 700; color: var(--primary);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.article-category::before { content: ''; width: 16px; height: 1.5px; background: var(--pistachio); flex-shrink: 0; }
.article-card h3 { font-size: 0.975rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; line-height: 1.55; letter-spacing: -0.01em; }
.article-card p  { font-size: 0.855rem; color: var(--text-muted); line-height: 1.75; }

/* ─── FOUNDER SECTION ─── */
.founder-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px; align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo-placeholder {
  width: 100%; height: 420px;
  background: linear-gradient(145deg, var(--primary-deep) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-photo-placeholder .placeholder-icon { font-size: 5rem; color: rgba(255,255,255,0.18); }
.founder-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 18px; text-align: center; box-shadow: var(--shadow-md);
}
.founder-badge .years { font-size: 1.7rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.founder-badge .lbl   { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.founder-info .role-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
}
.founder-info .role-label::before { content: ''; width: 28px; height: 1.5px; background: var(--primary); }
.founder-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
  color: var(--primary-dark); margin-bottom: 24px; letter-spacing: -0.02em;
}
.founder-quote {
  border-right: 3px solid var(--pistachio);
  padding-right: 22px; margin-bottom: 24px;
}
.founder-quote p { font-size: 1.05rem; font-weight: 500; color: var(--primary-dark); font-style: italic; line-height: 1.8; }
.founder-info p.bio { font-size: 0.93rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; }
.founder-expertise { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.expertise-tag {
  padding: 6px 16px; border: 1px solid var(--primary);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.02em; transition: var(--transition);
}
.expertise-tag:hover { background: var(--primary); color: var(--white); }

/* ─── LICENSES ─── */
.licensed-by {
  text-align: center; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--text-muted); margin-bottom: 28px;
}
.licenses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 640px; margin: 0 auto; }
.license-item {
  height: 84px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 12px; transition: var(--transition);
}
.license-item:hover { border-color: var(--pistachio); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.license-item img { max-height: 50px; max-width: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: var(--transition); }
.license-item:hover img { filter: grayscale(0%); opacity: 1; }
.license-item span { font-size: 0.75rem; font-weight: 600; color: var(--grey-light); }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(159,170,154,0.035) 0, rgba(159,170,154,0.035) 1px, transparent 1px, transparent 60px);
}
.cta-section .container { position: relative; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: var(--pistachio-soft); max-width: 500px; margin: 0 auto 36px; font-size: 0.975rem; line-height: 1.85; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { background: #141713; }
.footer-main { padding: 76px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 52px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 0.855rem; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.855rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 7px;
}
.footer-col ul li a:hover { color: var(--pistachio); padding-right: 4px; }
.footer-col ul li a i { font-size: 0.65rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.84rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-list li span:first-child { color: rgba(255,255,255,0.5); }
.hours-list li span:last-child  { color: var(--pistachio); font-weight: 600; }
.contact-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.855rem; color: rgba(255,255,255,0.5); margin-bottom: 13px; }
.contact-list li i { color: var(--pistachio); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ─── FADE IN ─── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── SECTION DIVIDER ─── */
.section-divider { width: 100%; line-height: 0; }
.section-divider img { width: 100%; height: auto; display: block; }

/* ─── HOME HERO ─── */
.home-hero {
  min-height: 100vh;
  background: var(--primary-deep);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
@media (min-width: 1025px) {
  .home-hero { padding-top: 50px; }
}
.home-hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 1100px; margin: 0 auto;
  padding: 110px 0 64px;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 1025px) {
  .home-hero-content {
    transform: translateX(-16px);
  }
}
.hero-visual-wrap {
  position: relative;
  max-width: 720px;
  width: 82%;
  margin: 0 auto;
}
.hero-visual {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(closest-side, #000 82%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 82%, transparent 100%);
  animation: heroFadeUp 1.1s 0.2s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero-mark {
  position: absolute;
  left: 53%;
  top: 5.5%;
  width: 10%;
  height: auto;
  transform: translate(-50%, -108%);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  animation: heroMarkIn 1s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
  z-index: 2;
}
@keyframes heroMarkIn {
  0%   { opacity: 0; transform: translate(-50%, -98%); }
  100% { opacity: 1; transform: translate(-50%, -108%); }
}
.hero-quick-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
  animation: heroFadeUp 1.1s 0.4s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-base); font-weight: 600; font-size: 0.82rem;
  transition: var(--transition);
}
.hero-chip i { color: var(--pistachio); font-size: 0.78rem; }
.hero-chip:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── ABOUT STRIP ─── */
.about-strip { background: var(--off-white); padding: 80px 0; }
.about-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-strip-img {
  width: 100%; height: 360px;
  background: linear-gradient(150deg, var(--primary-deep) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-strip-img .img-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0) 0, rgba(255,255,255,0) 24px, rgba(159,170,154,0.055) 24px, rgba(159,170,154,0.055) 25px);
}
.about-strip-img-icon { height: 55%; width: auto; opacity: 0.8; filter: brightness(0) invert(1); object-fit: contain; position: relative; z-index: 1; }
.about-strip-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 20px; text-align: center; box-shadow: var(--shadow-md); z-index: 2;
}
.about-strip-badge .num { font-size: 1.6rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.about-strip-badge .lbl { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }
.about-strip-text .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
}
.about-strip-text .label::before { content: ''; width: 24px; height: 1.5px; background: var(--primary); }
.about-strip-text h2 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; line-height: 1.4; letter-spacing: -0.01em; }
.about-strip-text p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 26px; }

/* ─── ABOUT PAGE ─── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-image-main {
  width: 100%; height: 420px;
  background: linear-gradient(140deg, var(--primary-deep) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.15); font-size: 5rem; overflow: hidden;
}
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--pistachio); color: var(--primary-dark);
  border-radius: var(--radius); padding: 18px 22px; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge .number { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge .label  { font-size: 0.72rem; font-weight: 600; }
.about-text .label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--primary); margin-bottom: 12px;
}
.about-text .label::before { content: ''; width: 24px; height: 1.5px; background: var(--primary); }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; color: var(--primary-dark); margin-bottom: 20px; line-height: 1.35; letter-spacing: -0.01em; }
.about-text p  { color: var(--text-muted); font-size: 0.925rem; line-height: 1.9; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 24px 0; }
.feature-item { display: flex; align-items: center; gap: 9px; font-size: 0.855rem; font-weight: 600; color: var(--primary-dark); }
.feature-item i { color: var(--pistachio); font-size: 0.85rem; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  padding: 40px 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--white); transition: var(--transition);
}
.vm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vm-card.primary { background: var(--primary-dark); border-color: var(--primary-dark); }
.vm-icon {
  width: 50px; height: 50px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.vm-icon i { color: var(--primary); font-size: 1.1rem; }
.vm-card.primary .vm-icon { border-color: rgba(159,170,154,0.3); }
.vm-card.primary .vm-icon i { color: var(--pistachio); }
.vm-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.vm-card.primary h3 { color: var(--white); }
.vm-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; }
.vm-card.primary p { color: var(--pistachio-soft); }

/* ─── VALUES ─── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  text-align: center; padding: 36px 22px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--white); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pistachio); }
.value-icon {
  width: 52px; height: 52px; border: 1.5px solid var(--pistachio);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; transition: var(--transition);
}
.value-icon i { color: var(--primary); font-size: 1.1rem; }
.value-card:hover .value-icon { background: var(--primary); border-color: var(--primary); }
.value-card:hover .value-icon i { color: var(--white); }
.value-card h3 { font-size: 0.925rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.value-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }

/* ─── BOOKING ─── */
.booking-section { background: var(--off-white); }
.booking-intro { text-align: center; font-size: 0.975rem; color: var(--text-muted); margin-bottom: 40px; }
.booking-widget {
  display: grid; grid-template-columns: 280px 1fr 220px;
  background: #111214; border-radius: 16px; overflow: hidden;
  max-width: 980px; margin: 0 auto;
  box-shadow: 0 28px 80px rgba(0,0,0,0.3); min-height: 520px; position: relative;
}
.booking-info-panel {
  background: #1c1e21; padding: 36px 28px;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
}
.booking-logo-wrap {
  width: 52px; height: 52px; background: rgba(255,255,255,0.06);
  border-radius: 50%; overflow: hidden; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.booking-logo { width: 38px; height: 38px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.8); }
.booking-office-name { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.booking-service-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.booking-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.booking-meta-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.825rem; color: rgba(255,255,255,0.55); }
.booking-meta-item i { width: 14px; color: rgba(255,255,255,0.4); margin-top: 2px; flex-shrink: 0; }
.booking-whatsapp-hint {
  display: flex; align-items: center; gap: 8px; font-size: 0.775rem;
  color: rgba(134,208,120,0.8); margin-top: auto; padding: 10px 12px;
  background: rgba(134,208,120,0.08); border-radius: 8px;
  border: 1px solid rgba(134,208,120,0.15);
}
.booking-whatsapp-hint i { font-size: 1rem; }
.booking-calendar-panel {
  background: #111214; padding: 32px;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cal-month-year { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; }
.cal-nav-btn {
  width: 32px; height: 32px; background: rgba(255,255,255,0.07);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: rgba(255,255,255,0.7); font-size: 0.8rem;
}
.cal-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.14); color: #fff; }
.cal-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.calendar-weekdays span { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.35); text-align: center; padding: 4px 0; letter-spacing: 0.05em; }
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05); border-radius: 8px; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease; font-family: var(--font-base);
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(255,255,255,0.14); color: #fff; }
.cal-day.today   { background: rgba(75,89,64,0.55); color: #fff; font-weight: 700; }
.cal-day.selected{ background: #fff; color: #111; font-weight: 700; }
.cal-day.disabled{ color: rgba(255,255,255,0.18); background: transparent; cursor: not-allowed; }
.cal-day.empty   { background: transparent; cursor: default; }
.calendar-legend { display: flex; align-items: center; gap: 14px; margin-top: 18px; font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.legend-dot.available { background: rgba(255,255,255,0.25); }
.legend-dot.today     { background: rgba(75,89,64,0.7); }
.legend-dot.disabled  { background: rgba(255,255,255,0.1); }
.booking-time-panel {
  background: #1c1e21; padding: 32px 20px; display: none;
  flex-direction: column; overflow-y: auto; max-height: 520px;
}
.booking-time-panel.visible { display: flex; }
.time-panel-header { margin-bottom: 18px; }
.time-panel-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.selected-date-label { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.time-slots { display: flex; flex-direction: column; gap: 8px; }
.time-slot-btn {
  width: 100%; padding: 11px 12px; background: rgba(255,255,255,0.06);
  border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.8); text-align: center; cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  font-family: var(--font-base); letter-spacing: 0.04em;
}
.time-slot-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.time-slot-btn.selected { background: #fff; color: #111; }
.no-slots { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-align: center; padding: 12px 0; }
.booking-form-wrapper { max-width: 980px; margin: 28px auto 0; }
.booking-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 36px 40px; box-shadow: var(--shadow-md); }
.booking-summary {
  display: flex; align-items: center; gap: 18px;
  background: var(--pistachio-pale); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 28px;
}
.booking-summary-icon { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; }
.booking-summary-details { flex: 1; }
.booking-summary-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.booking-summary-date  { font-size: 0.925rem; font-weight: 700; color: var(--primary-dark); }
.booking-summary-time  { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-top: 2px; }
.booking-change-btn {
  font-size: 0.8rem; font-weight: 600; color: var(--primary); background: transparent;
  padding: 6px 12px; border: 1px solid var(--primary); border-radius: var(--radius);
  transition: var(--transition); display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.booking-change-btn:hover { background: var(--primary); color: var(--white); }
.form-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.booking-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.booking-form-group:last-child { margin-bottom: 0; }
.booking-form-group label { font-size: 0.83rem; font-weight: 600; color: var(--primary-dark); }
.booking-form-group .req { color: #c0392b; }
.booking-form-group input,
.booking-form-group textarea,
.booking-form-group select {
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-base);
  font-size: 0.9rem; color: var(--text); background: var(--white);
  transition: border-color 0.2s ease; outline: none;
}
.booking-form-group input:focus,
.booking-form-group textarea:focus { border-color: var(--primary); }
.booking-form-group textarea { resize: vertical; min-height: 90px; }
.booking-form-submit { margin-top: 4px; }
.booking-submit-btn { width: 100%; justify-content: center; background: #25d366; border-color: #25d366; font-size: 1rem; }
.booking-submit-btn:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }
.booking-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 0; gap: 12px; }
.booking-success-icon { font-size: 3rem; color: #25d366; }
.booking-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary-dark); }
.booking-success p  { font-size: 0.9rem; color: var(--text-muted); max-width: 460px; line-height: 1.7; }
.booking-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 16px;
}
.booking-cta-badge i { color: #4ade80; font-size: 0.85rem; }

/* ─── ARTICLE DETAIL ─── */
.article-back { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 0.875rem; margin-bottom: 40px; transition: var(--transition); }
.article-back i { font-size: 0.78rem; }
.article-back:hover { color: var(--primary-dark); gap: 12px; }
.article-detail-wrap { max-width: 820px; margin: 0 auto; }
.article-detail-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article-detail-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.article-detail-title { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 800; color: var(--primary-dark); line-height: 1.4; letter-spacing: -0.01em; }
.article-detail-body { font-size: 1rem; line-height: 2; color: var(--text); }
.article-detail-body p { margin-bottom: 22px; }
.article-detail-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin: 36px 0 14px; padding-right: 14px; border-right: 3px solid var(--pistachio); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .articles-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-intro      { grid-template-columns: 1fr; }
  .about-strip-grid { grid-template-columns: 1fr; }
  .founder-section  { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-wrap { max-width: 380px; margin: 0 auto; }
  .booking-widget   { grid-template-columns: 240px 1fr 200px; }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  html { font-size: 16px !important; }
  .section { padding: 64px 0; }
  .navbar { background: var(--dark) !important; padding: 14px 0 !important; }
  .logo-img { height: 52px !important; }
  .nav-links {
    display: none !important; position: fixed !important;
    top: 0 !important; right: 0 !important; left: 0 !important; bottom: 0 !important;
    background: var(--dark) !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 20px !important; z-index: 99999 !important;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li a { font-size: 1.05rem !important; padding: 10px 28px !important; white-space: nowrap !important; }
  .nav-links li a.nav-cta { font-size: 1rem !important; padding: 12px 32px !important; }
  .nav-toggle { display: flex !important; z-index: 100000 !important; position: relative !important; }
  .services-grid  { grid-template-columns: 1fr; }
  .articles-grid  { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .cta-buttons    { flex-direction: column; align-items: center; }
  .hero-visual-wrap { max-width: 460px; width: 90%; }
  .hero-quick-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; margin-top: 28px; gap: 10px; }
  .hero-chip      { justify-content: center; }
  .booking-widget { grid-template-columns: 1fr; max-width: 480px; }
  .booking-info-panel { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 24px; }
  .booking-whatsapp-hint { margin-top: 16px; }
  .booking-calendar-panel { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px; }
  .booking-time-panel { max-height: none; padding: 24px; }
  .time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .booking-form-card { padding: 24px 20px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .related-grid   { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .btn, .btn-outline, .btn-primary, .btn-outline-dark { white-space: nowrap !important; }
  .section-header h2 { font-size: 1.25rem !important; }
  .section-header .label { font-size: 0.7rem !important; }
  .footer-desc { font-size: 0.84rem !important; }
}
@media (max-width: 480px) {
  .licenses-grid  { grid-template-columns: 1fr; max-width: 220px; }
  .hero-visual-wrap { max-width: 340px; width: 90%; }
  .hero-quick-actions { max-width: 230px; }
  .booking-widget { max-width: 100%; }
  .time-slots     { grid-template-columns: repeat(2, 1fr); }
  .founder-photo-placeholder { height: 300px; }
  .btn-lg { padding: 14px 26px; font-size: 0.925rem; }
}

/* ═══════════════════════════════════════════════
   Header & Home Hero refinements
   ═══════════════════════════════════════════════ */

/* Header: keep the original logo and improve spacing only */
.navbar {
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(20,25,18,0.72) 0%, rgba(20,25,18,0.25) 68%, transparent 100%);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-content { min-height: 72px; }
.logo-img {
  height: 72px;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,0.22));
}
.navbar.scrolled { padding: 9px 0; }
.navbar.scrolled .nav-content { min-height: 58px; }
.navbar.scrolled .logo-img { height: 56px; }
.nav-links { gap: 5px; }
.nav-links li a { padding: 9px 16px; }
.nav-links li a.nav-cta {
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Home hero */
.home-hero {
  min-height: 100vh;
  min-height: 100svh;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 9% 12% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,170,154,0.055), transparent 67%);
  pointer-events: none;
}
.home-hero .container { width: 100%; }
.home-hero-content {
  max-width: 1240px;
  min-height: 100vh;
  min-height: 100svh;
  padding: 104px 0 22px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: none !important;
}
.hero-visual-wrap {
  position: relative;
  width: min(78vw, 800px);
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-office-name {
  position: relative;
  z-index: 3;
  inset: auto;
  transform: none;
  width: min(92%, 600px);
  margin: 0 auto 10px;
  text-align: center;
  color: #fff;
  font-family: 'Tajawal', Arial, sans-serif !important;
  text-shadow: 0 5px 22px rgba(0,0,0,0.52);
  animation: heroOfficeIn 1s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}
.hero-office-name strong,
.hero-office-name span {
  font-family: inherit !important;
}
.hero-office-name strong {
  display: block;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}
.hero-office-name span {
  display: block;
  margin-top: 5px;
  font-size: clamp(0.86rem, 1.12vw, 1.04rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}
@keyframes heroOfficeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  position: relative;
  left: -24px;
  width: 100%;
  height: auto;
  margin-top: 6px;
  -webkit-mask-image: radial-gradient(closest-side, #000 88%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 88%, transparent 100%);
  filter: drop-shadow(0 28px 45px rgba(0,0,0,0.22));
}
.hero-quick-actions {
  width: min(100%, 620px);
  margin-top: 12px;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.hero-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-address { min-width: 338px; justify-content: center; }
.hero-chip {
  min-height: 42px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.085);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Keep every hero element visible on shorter desktop screens */
@media (min-width: 769px) and (max-height: 840px) {
  .home-hero-content { padding-top: 96px; padding-bottom: 14px; }
  .hero-visual-wrap { width: min(68vw, 690px); max-width: 690px; }
  .hero-office-name { margin-bottom: 5px; }
  .hero-office-name strong { font-size: clamp(1.4rem, 2vw, 1.9rem); }
  .hero-office-name span { font-size: clamp(0.8rem, 1vw, 0.96rem); }
  .hero-visual { margin-top: 2px; left: -20px; }
  .hero-quick-actions { margin-top: 6px; gap: 8px; }
  .hero-chip { min-height: 39px; padding-top: 8px; padding-bottom: 8px; }
}

@media (max-width: 768px) {
  .navbar { padding: 10px 0 !important; }
  .nav-content { min-height: 58px; }
  .logo-img { height: 56px !important; }
  .home-hero-content {
    min-height: 100vh;
    min-height: 100svh;
    padding: 90px 0 24px;
    justify-content: flex-start;
  }
  .hero-visual-wrap {
    width: 112%;
    max-width: 610px;
    margin-inline: -6%;
  }
  .hero-office-name {
    width: 82%;
    margin-bottom: 8px;
  }
  .hero-office-name strong { font-size: clamp(1.22rem, 5.45vw, 1.72rem); }
  .hero-office-name span { margin-top: 3px; font-size: clamp(0.74rem, 3.1vw, 0.94rem); }
  .hero-visual {
    left: -12px;
    margin-top: 2px;
  }
  .hero-quick-actions {
    width: 100%;
    max-width: 330px;
    margin-top: clamp(48px, 7.5vh, 72px);
    gap: 9px;
  }
  .hero-contact-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .hero-chip {
    width: 100%;
    justify-content: center;
    padding: 10px 15px;
  }
  .hero-address {
    min-width: 0;
    font-size: 0.76rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .logo-img { height: 52px !important; }
  .home-hero-content { padding-top: 86px; }
  .hero-visual-wrap {
    width: 116%;
    margin-inline: -8%;
  }
  .hero-office-name { width: 80%; margin-bottom: 6px; }
  .hero-office-name strong { font-size: clamp(1.08rem, 5.7vw, 1.44rem); }
  .hero-office-name span { font-size: clamp(0.68rem, 3.1vw, 0.82rem); }
  .hero-visual { left: -10px; }
  .hero-quick-actions {
    max-width: 285px;
    margin-top: clamp(54px, 8vh, 76px);
  }
  .hero-address { font-size: 0.69rem; }
}

@media (max-width: 420px) and (max-height: 740px) {
  .home-hero-content { padding-top: 80px; padding-bottom: 16px; }
  .hero-visual-wrap { width: 104%; margin-inline: -2%; }
  .hero-office-name strong { font-size: 1.12rem; }
  .hero-office-name span { font-size: 0.7rem; }
  .hero-quick-actions { margin-top: 32px; }
  .hero-chip { min-height: 38px; padding-top: 8px; padding-bottom: 8px; }
}


/* ===== Definitive mobile hero layout ===== */
@media (max-width: 768px) {
  .home-hero-content {
    height: 100svh !important;
    min-height: 100svh !important;
    box-sizing: border-box !important;
    padding: 82px 0 32px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .hero-visual-wrap {
    width: min(100%, 372px) !important;
    max-width: 372px !important;
    margin: 0 auto !important;
    flex: 0 0 auto !important;
    transform: none !important;
  }

  .hero-office-name {
    width: 90% !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
  }

  .hero-visual {
    left: 0 !important;
    margin-top: 0 !important;
    transform: translateX(-6px) !important;
  }

  .hero-quick-actions {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    margin: auto auto 0 !important;
    gap: 9px !important;
    flex: 0 0 auto !important;
  }

  .hero-contact-row {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 9px !important;
  }

  .hero-chip {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .home-hero-content {
    padding-top: 80px !important;
    padding-bottom: 34px !important;
  }

  .hero-visual-wrap {
    width: min(100%, 360px) !important;
    max-width: 360px !important;
  }

  .hero-office-name {
    width: 88% !important;
    margin-bottom: 9px !important;
  }

  .hero-quick-actions {
    width: min(100%, 286px) !important;
    max-width: 286px !important;
  }
}

@media (max-width: 420px) and (max-height: 760px) {
  .home-hero-content {
    padding-top: 76px !important;
    padding-bottom: 18px !important;
  }

  .hero-visual-wrap {
    width: min(100%, 332px) !important;
    max-width: 332px !important;
  }
}
