@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');
/* ===== VARIABLES ===== */
:root {  --primary: #F4722B;  --primary-dark: #D45B1B;  --primary-light: #FEF0E8;  --accent: #F4722B;  --accent-dark: #D45B1B;  --dark: #1a1a1a;  --gray: #555555;  --gray-light: #e4e4e4;  --bg: #f7f4f0;  --white: #ffffff;  --text: #333333;  --text-light: #666666;  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);  --r-sm: 8px;  --r-md: 16px;  --r-lg: 24px;  --t: 0.3s ease;}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; }
body { font-family: 'Heebo', 'Arial', sans-serif; font-size: 1.15rem; font-weight: 400; line-height: 1.9; color: var(--text); background: var(--white); text-align: right; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p { font-size: 1.18rem; }
.section-title { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.18rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 560px; }
.section-header { text-align: right; margin-bottom: 3rem; }
.section-header .section-subtitle { margin: 0.5rem 0 0; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-alt { background: var(--bg); }

/* ===== BUTTONS ===== */
.btn {  display: inline-flex;  align-items: center;  gap: 0.5rem;  padding: 0.85rem 2rem;  border-radius: 50px;  font-family: inherit;  font-size: 1rem;  font-weight: 600;  cursor: pointer;  transition: var(--t);  border: none;  text-decoration: none;  line-height: 1;}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,160,32,0.35); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #20b955; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;  background: rgba(255,255,255,0.96);  backdrop-filter: blur(12px);  box-shadow: var(--shadow-sm);  transition: var(--t);}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; direction: ltr; }
.nav-links { direction: rtl; }
.navbar-brand { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; text-decoration: none; direction: ltr; }
.navbar-brand .logo-main { font-size: 1.35rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.navbar-brand .logo-sub { font-size: 0.68rem; color: var(--gray); font-weight: 400; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a { padding: 0.5rem 0.8rem; border-radius: var(--r-sm); font-size: 0.93rem; font-weight: 500; color: var(--text); transition: var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 0.5rem 1.25rem !important; border-radius: 50px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-social-item { display: flex; align-items: center; }
.nav-social-link { display: flex !important; align-items: center !important; justify-content: center !important; width: 30px !important; height: 30px !important; padding: 0 !important; border-radius: 50% !important; background: none !important; opacity: 0.6; }
.nav-social-link:hover { opacity: 1; background: var(--primary-light) !important; color: var(--primary) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {  padding: 9rem 0 6rem;  background: linear-gradient(135deg, #FEE8D5 0%, #FEF0E8 40%, #FFF7F3 100%);  position: relative; overflow: hidden;}
.hero::after {  content: '';  position: absolute; top: 0; left: 0; right: 0; bottom: 0;  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F4722B' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");  pointer-events: none;}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); color: var(--primary); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.hero h1 { color: var(--dark); margin-bottom: 1rem; }
.hero h1 span { color: var(--primary); }
.hero-desc { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2.5rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 3rem; }
.stat-item .stat-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-item .stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 0.1rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {  background: var(--white); border-radius: var(--r-md); padding: 2rem;  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light);  transition: var(--t); position: relative; overflow: hidden;}
.service-card::before { content: ''; position: absolute; top: 0; right: 0; width: 4px; height: 100%; background: var(--primary); transform: scaleY(0); transform-origin: top; transition: var(--t); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-icon { margin-bottom: 1rem; display: block; line-height: 0; }
.service-card h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.65; }
.service-price { display: inline-block; margin-top: 1rem; background: var(--accent-dark); color: var(--white); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; }
.service-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; transition: var(--t); }
.service-link:hover { gap: 0.6rem; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.value-item { text-align: center; padding: 2rem 1.5rem; border-radius: var(--r-md); transition: var(--t); }
.value-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.value-icon { width: 90px; height: 90px; background: transparent; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.value-icon svg { transition: transform 0.2s ease; }
.value-item:hover .value-icon svg { transform: scale(1.08); }
.value-item h3 { color: var(--dark); margin-bottom: 0.6rem; font-size: 1.15rem; }
.value-item p { color: var(--text-light); font-size: 0.93rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 5rem 0; text-align: right; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-size: 1.1rem; max-width: 560px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-contact-row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.cta-contact-item a { color: rgba(255,255,255,0.9); transition: var(--t); }
.cta-contact-item a:hover { color: var(--white); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 5rem 0 3rem; background: linear-gradient(135deg, #FEE8D5 0%, #FEF0E8 100%); text-align: right; }
.page-hero h1 { color: var(--dark); margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1.1rem; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; justify-content: flex-start; gap: 0.4rem; font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ===== TEAM CARDS ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: start; }
.team-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.team-card-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 2.5rem 2rem 2rem; text-align: center; }
.team-avatar { width: 96px; height: 96px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--white); margin: 0 auto 1rem; border: 3px solid rgba(255,255,255,0.35); }
.team-card-header h3 { color: var(--white); margin-bottom: 0.25rem; font-size: 1.4rem; }
.team-card-header .role { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.team-card-body { padding: 2rem; }
.team-card-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.cert-title { font-size: 0.82rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.cert-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cert-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--text); }
.cert-item::before { content: '\2713'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.blog-card { background: var(--white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: var(--t); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card-top { padding: 1.75rem 1.5rem 1rem; background: var(--primary-light); }
.blog-category { display: inline-block; background: var(--primary); color: var(--white); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.02em; }
.blog-card h3 { font-size: 1.05rem; color: var(--dark); line-height: 1.45; }
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text-light); padding-top: 0.75rem; border-top: 1px solid var(--gray-light); }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 0.25rem; transition: var(--t); }
.read-more:hover { gap: 0.5rem; }

/* ===== RTL LIST FIX ===== */
ol, ul { direction: rtl; text-align: right; }
li { text-align: right; }
.takeaway-box ol, .takeaway-box ul { list-style-position: inside; padding: 0; }

/* ===== BLOG ARTICLE PAGE ===== */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.article-content { background: var(--white); border-radius: var(--r-md); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); }
.article-content h2 { color: var(--dark); font-size: 1.5rem; margin: 2rem 0 1rem; }
.article-content h3 { color: var(--primary); font-size: 1.2rem; margin: 1.5rem 0 0.75rem; }
.article-content p { color: var(--text); margin-bottom: 1.25rem; line-height: 1.85; }
.article-content ul, .article-content ol { padding-right: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: 0.5rem; color: var(--text); line-height: 1.7; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border-radius: var(--r-md); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); margin-bottom: 1.5rem; }
.sidebar-card h4 { color: var(--dark); margin-bottom: 1.25rem; font-size: 1.05rem; }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.88rem; color: var(--primary); display: flex; align-items: center; gap: 0.3rem; transition: var(--t); padding: 0.3rem 0; border-bottom: 1px solid var(--gray-light); }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--primary-dark); padding-right: 0.3rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h3 { color: var(--dark); margin-bottom: 2rem; font-size: 1.4rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--gray-light); }
.contact-method:last-child { border-bottom: none; }
.contact-method-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-method-info .label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.contact-method-info .value { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-method-info .value a { color: var(--primary); transition: var(--t); }
.contact-method-info .value a:hover { color: var(--primary-dark); }
.contact-form { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.form-title { color: var(--dark); margin-bottom: 0.35rem; font-size: 1.4rem; }
.form-subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-control { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--gray-light); border-radius: var(--r-sm); font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--bg); transition: var(--t); direction: rtl; }
.form-control:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(244,114,43,0.18); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-control::placeholder { color: var(--gray); }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 1rem; text-align: right; }

/* ===== FLOATING WHATSAPP (legacy ג€” hidden) ===== */
.whatsapp-float { display: none !important; }

/* ===== CONTACT WIDGET ===== */
#contactWidget { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact-btn { display: flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: 14px 28px; font-size: 1rem; font-weight: 700; font-family: 'Heebo', sans-serif; cursor: pointer; box-shadow: 0 4px 20px rgba(244,114,43,0.45); transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(244,114,43,0.55); }
.contact-panel { display: none; flex-direction: row; gap: 16px; background: #fff; border-radius: 20px; padding: 20px 24px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.contact-opt { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.88rem; min-width: 72px; }
.contact-opt-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.contact-opt:hover .contact-opt-icon { transform: scale(1.1); }
.contact-opt-wa { background: #25D366; }
.contact-opt-email { background: var(--primary); }

/* ===== CONTACT MODAL ===== */
#cModal { display: none; position: fixed; inset: 0; z-index: 99990; align-items: center; justify-content: center; }
#cOverlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
#cBox { position: relative; background: #fff; border-radius: 20px; padding: 2rem; width: 90%; max-width: 420px; direction: rtl; box-shadow: 0 16px 60px rgba(0,0,0,0.2); z-index: 1; }
#cClose { position: absolute; top: 1rem; left: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-light); line-height: 1; padding: 0.25rem; }
.cf-field { margin-bottom: 1rem; }
.cf-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.cf-field input, .cf-field textarea { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--gray-light); border-radius: 10px; font-family: 'Heebo', sans-serif; font-size: 0.95rem; direction: rtl; box-sizing: border-box; transition: border-color 0.2s; }
.cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: var(--primary); }
.cf-field textarea { resize: none; }
.cf-err { display: none; color: #e53e3e; font-size: 0.78rem; margin-top: 0.3rem; }
.cf-field input.invalid { border-color: #e53e3e; }
.cf-select { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--gray-light); border-radius: 10px; font-family: 'Heebo', sans-serif; font-size: 0.95rem; direction: rtl; box-sizing: border-box; background: #fff; cursor: pointer; transition: border-color 0.2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 0.9rem center; }
.cf-select:focus { outline: none; border-color: var(--primary); }
.cf-btns { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.cf-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 50px; padding: 0.8rem 1rem; font-family: 'Heebo', sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.cf-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cf-btn-wa { background: #25D366; color: #fff; }
.cf-btn-email { background: var(--primary); color: #fff; }
@media (max-width: 480px) { .cf-btns { flex-direction: column; } }

/* ===== LIGHTBOX ===== */
.lb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.22s ease; }
.lb-overlay.active { opacity: 1; pointer-events: all; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.lb-close { position: fixed; top: 16px; right: 20px; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity 0.15s; }
.lb-close:hover { opacity: 1; }

/* ===== HOME VISITS ===== */
.hv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hv-content { text-align: right; }
.hv-image img { max-height: 420px; object-fit: cover; object-position: center top; }
@media (max-width: 768px) {
  .hv-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hv-image { order: -1; }
  .hv-image img { max-height: 280px; }
}

/* ===== PROMO BANNER ===== */
.promo-banner-img { display: block; line-height: 0; }
.promo-banner-img img { width: 100%; height: auto; display: block; }

/* ===== VIDEOS ===== */
.videos-section { padding: 5rem 0; background: var(--white); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.video-card { display: flex; flex-direction: column; }
.video-embed { width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 0; display: block; background: #000; }
.video-caption { text-align: right; margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-light); }
.video-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrap .video-embed { box-shadow: none; border-radius: 0; }
.video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; background: rgba(0,0,0,0.08); transition: background 0.2s; }
.video-overlay:hover { background: rgba(0,0,0,0.2); }
.video-overlay.hidden { display: none; }
.video-yt-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.video-yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; border-radius: var(--r-lg); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-main { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 0.35rem; }
.footer-brand .logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--t); color: rgba(255,255,255,0.7); }
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--t); display: flex; align-items: center; gap: 0.35rem; }
.footer-links a:hover { color: var(--white); padding-right: 0.2rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 0.7rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: var(--t); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== INFO BOX ===== */
.info-box { background: var(--primary-light); border-radius: var(--r-md); padding: 1.5rem 2rem; border-right: 4px solid var(--primary); margin-bottom: 2rem; }
.info-box p { color: var(--primary-dark); font-size: 0.95rem; margin: 0; }

/* ===== AREA TAGS ===== */
.area-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.area-tag { background: var(--primary-light); color: var(--primary-dark); padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; }

/* ===== DIVIDER ===== */
.section-divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0.75rem 0 0; }
.section-header .section-divider { margin: 0.75rem 0 1.5rem; }

/* ===== ICON LIST ===== */
.icon-list { display: flex; flex-direction: column; gap: 0.85rem; }
.icon-list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.icon-list-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.icon-list-item .content strong { display: block; font-size: 0.95rem; color: var(--dark); }
.icon-list-item .content span { font-size: 0.88rem; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {  section { padding: 3rem 0; }
  
/* Navbar */
  .nav-links {    display: none; position: fixed; top: 70px; right: 0; left: 0; z-index: 1001;    background: var(--white); flex-direction: column; padding: 1.5rem;    box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-light);  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; font-size: 1rem; border-radius: var(--r-sm); }
  .nav-toggle { display: flex; }
  
/* Hero */
  .hero { padding: 6rem 0 3.5rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
/* All 2-col grids → 1 col */
  .team-grid,  .values-grid { grid-template-columns: 1fr !important; }
  
/* home-visits: treatment section & who-we-are section */
  [style*="grid-template-columns:1fr 1fr"],  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  
/* home-visits: 4-step grid → 2x2 */
  [style*="grid-template-columns:repeat(4,1fr)"],  [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }


  
/* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: right; }
  
/* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-contact-row { flex-direction: column; align-items: center; gap: 1rem; }
  
/* Forms */
  .form-row,  .contact-grid { grid-template-columns: 1fr; }
  
/* Page hero */
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  
/* Services & blog grids */
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {  .container { padding: 0 1rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero h1 { font-size: 1.7rem; }
  .stat-item .stat-num { font-size: 1.8rem; }
  
/* Steps 4-col → 1 col on very small screens */
  [style*="grid-template-columns:repeat(4,1fr)"],  [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: 1fr !important; }
  #a11y-panel { width: calc(100vw - 32px); right: 0; max-height: calc(100vh - 130px); bottom: calc(100% + 8px); }
}

/* ===== SKIP LINK ===== */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 0.75rem 1.75rem; border-radius: 0 0 10px 10px; font-weight: 700; font-size: 1rem; z-index: 99999; transition: top 0.2s; white-space: nowrap; text-decoration: none; }
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* ===== FOCUS STYLES ===== */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 3px; }
.btn:focus-visible { outline-offset: 2px; }

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto !important; }
}

/* ===== ACCESSIBILITY MODES ===== */
html.a11y-font-up1 { font-size: 112%; }
html.a11y-font-up2 { font-size: 125%; }
html.a11y-font-up3 { font-size: 137%; }
html.a11y-font-dn1 { font-size: 90%; }
html.a11y-font-dn2 { font-size: 80%; }
html.a11y-contrast { filter: contrast(185%); }
html.a11y-grayscale { filter: grayscale(100%); }
html.a11y-contrast.a11y-grayscale { filter: grayscale(100%) contrast(185%); }
html.a11y-stop-anim *, html.a11y-stop-anim *::before, html.a11y-stop-anim *::after { animation: none !important; transition: none !important; }
html.a11y-links a { text-decoration: underline !important; }
html.a11y-spacing body { line-height: 2.2 !important; letter-spacing: 0.04em !important; word-spacing: 0.1em !important; }
html.a11y-dark img, html.a11y-dark video, html.a11y-dark iframe, html.a11y-dark #a11y-widget { filter: invert(1) hue-rotate(180deg); }
html.a11y-hide-images img { visibility: hidden !important; }
html.a11y-word-sp1 body { word-spacing: 0.2em !important; }
html.a11y-word-sp2 body { word-spacing: 0.45em !important; }
html.a11y-word-sp3 body { word-spacing: 0.7em !important; }
html.a11y-letter-sp1 body { letter-spacing: 0.08em !important; }
html.a11y-letter-sp2 body { letter-spacing: 0.16em !important; }
html.a11y-letter-sp3 body { letter-spacing: 0.25em !important; }

/* ===== ACCESSIBILITY WIDGET ===== */
#a11y-widget { position: fixed; bottom: 24px; right: 24px; z-index: 10000; font-family: 'Heebo', Arial, sans-serif; direction: rtl; text-align: right; }
.a11y-toggle { width: 54px; height: 54px; border-radius: 50%; background: #1a6fa8; border: 2px solid rgba(255,255,255,0.3); cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 18px rgba(26,111,168,0.45); transition: background 0.2s, transform 0.2s; }
.a11y-toggle:hover { background: #155d8f; transform: scale(1.05); }
.a11y-toggle:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
#a11y-panel { position: absolute; bottom: calc(100% + 12px); right: 0; width: 280px; background: #fff; border-radius: 16px; box-shadow: 0 8px 36px rgba(0,0,0,0.22); overflow-y: auto; overflow-x: hidden; max-height: calc(100vh - 120px); transform-origin: bottom right; }
.a11y-head { background: #1a6fa8; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1; }
.a11y-title { color: #fff; font-weight: 700; font-size: 1rem; }
.a11y-close { background: none; border: none; color: rgba(255,255,255,0.75); font-size: 1.3rem; cursor: pointer; padding: 0 0.2rem; line-height: 1; transition: color 0.15s; }
.a11y-close:hover { color: #fff; }
.a11y-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 3px; }
.a11y-body { padding: 1.2rem; }
.a11y-section-label { font-size: 0.72rem; font-weight: 700; color: #777; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.55rem; }
.a11y-font-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.a11y-font-btn { flex: 1; padding: 0.5rem 0.25rem; border: 1.5px solid #ddd; border-radius: 8px; background: #f7f7f7; cursor: pointer; font-family: inherit; color: #333; transition: all 0.15s; line-height: 1.1; }
.a11y-font-btn:hover, .a11y-font-btn:focus-visible { border-color: #1a6fa8; background: #e8f2fb; color: #1a6fa8; outline: none; }
.a11y-font-val { flex: 1.5; text-align: center; font-size: 0.8rem; color: #555; font-weight: 600; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 0.9rem; }
.a11y-opt { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; padding: 0.65rem 0.4rem; border: 1.5px solid #ddd; border-radius: 10px; background: #f7f7f7; cursor: pointer; font-family: inherit; font-size: 0.76rem; color: #333; transition: all 0.15s; text-align: center; line-height: 1.3; }
.a11y-opt:hover { border-color: #1a6fa8; background: #e8f2fb; color: #1a6fa8; }
.a11y-opt.active { background: #1a6fa8; border-color: #1a6fa8; color: #fff; }
.a11y-opt:focus-visible { outline: 2px solid #1a6fa8; outline-offset: 2px; }
.a11y-opt-icon { font-size: 1.1rem; line-height: 1; }
.a11y-reset { width: 100%; padding: 0.55rem; border: 1.5px solid #ddd; border-radius: 8px; background: #f7f7f7; cursor: pointer; font-family: inherit; font-size: 0.82rem; color: #555; transition: all 0.15s; margin-bottom: 0; }
.a11y-reset:hover { border-color: #c0392b; background: #fff5f5; color: #c0392b; }
.a11y-statement-link { display: block; text-align: center; padding: 0.7rem 1rem; background: #f5f5f5; color: #1a6fa8; font-size: 0.8rem; font-weight: 600; text-decoration: none; border-top: 1px solid #eee; transition: background 0.15s; }
.a11y-statement-link:hover { background: #e8f2fb; }
