/* ===================================================
   HABIB LAW – MAIN STYLESHEET
   =================================================== */

/* ─── VARIABLES ─── */
:root {
  --bg:           #F7F4F0;
  --bg2:          #EDEAE5;
  --bg3:          #E2DDD7;
  --text:         #2E2924;
  --text-light:   #6B6359;
  --text-muted:   #9A9088;
  --accent:       #A8714F;
  --accent-light: #C49070;
  --accent-dark:  #8A5A3C;
  --border:       #D4CEC7;
  --white:        #FDFCFA;
  --dark:         #1E1A16;
  --font-head:    'Frank Ruhl Libre', serif;
  --font-body:    'Heebo', sans-serif;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:       0 4px 32px rgba(46,41,36,0.08);
  --shadow-lg:    0 12px 60px rgba(46,41,36,0.14);
  --radius:       12px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  direction: rtl;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem,5vw,3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.7rem); font-weight: 500; }
h4 { font-size: 1.1rem; }
p { color: var(--text-light); font-weight: 300; }

/* ─── LAYOUT ─── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 100px 24px; }
.section-sm     { padding: 60px 24px; }
.section-dark   { background: var(--dark); }
.section-white  { background: var(--white); }
.section-bg2    { background: var(--bg2); }

/* ─── UTILITIES ─── */
.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.section-label--light { color: var(--accent-light); }
.section-label--light::before { background: var(--accent-light); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,113,79,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--accent);
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); }
.btn-wa {
  background: #25D366;
  color: #fff;
  width: 100%;
}
.btn-wa:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-full { width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(247,244,240,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; flex-direction: column; cursor: pointer; }
.nav-logo a { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a,
.nav-links > li > a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
  transition: all var(--transition);
  display: block;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links > li.current-menu-item > a {
  color: var(--accent);
  background: rgba(168,113,79,0.08);
}
.nav-links .nav-cta > a {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}
.nav-links .nav-cta > a:hover {
  background: var(--accent-dark) !important;
}

/* Dropdown */
.nav-links li { position: relative; }
.nav-links li ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-links li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links li ul li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 8px;
  color: var(--text-light) !important;
  background: transparent !important;
}
.nav-links li ul li a:hover {
  background: var(--bg) !important;
  color: var(--accent) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 90px 32px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav .mobile-section-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 16px 4px;
}
.mobile-nav .mobile-cta-btn {
  background: var(--accent);
  color: white;
  text-align: center;
  border-radius: 10px;
  margin-top: 16px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(168,113,79,0.06) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(168,113,79,0.04) 0%, transparent 40%);
}
.hero-line {
  position: absolute;
  top: 0; right: 220px; bottom: 0;
  width: 1px;
  background: var(--border);
  opacity: 0.5;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,113,79,0.08);
  border: 1px solid rgba(168,113,79,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Hero card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; right: 40px; left: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card-areas { display: flex; flex-direction: column; gap: 12px; }
.hero-card-area {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  transition: background var(--transition);
}
.hero-card-area:hover { background: var(--bg2); }
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(168,113,79,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-card-text { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.hero-card-sub  { font-size: 0.75rem; color: var(--text-muted); }
.hero-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(168,113,79,0.4);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--dark);
  padding: 28px 40px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(253,252,250,0.7);
  font-size: 0.85rem;
}
.trust-item-icon { color: var(--accent-light); }
.trust-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.1);
}

/* ─── AREAS GRID ─── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.area-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.area-card:hover {
  background: var(--bg);
  transform: translateY(-4px);
  z-index: 1;
  box-shadow: var(--shadow);
}
.area-card:hover::after { transform: scaleX(1); }
.area-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.area-card:hover .area-card-icon { background: rgba(168,113,79,0.1); }
.area-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.area-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 20px;
  transition: gap var(--transition);
}
.area-card:hover .area-card-link { gap: 10px; }

/* ─── WHY US ─── */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.why-content h2 { color: var(--white); margin-bottom: 24px; }
.why-content p { color: rgba(253,252,250,0.65); margin-bottom: 20px; line-height: 1.9; }
.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.pillar:hover { background: rgba(255,255,255,0.07); }
.pillar-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(168,113,79,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.pillar h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.pillar p  { color: rgba(253,252,250,0.5); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  height: 240px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}
.team-accent {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 4px;
  background: var(--accent);
}
.team-card-body { padding: 24px; }
.team-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card-role { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.team-card-bio { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ─── RESULTS ─── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.result-tag {
  display: inline-block;
  background: rgba(168,113,79,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.result-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.result-body { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.result-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(168,113,79,0.06);
  border-right: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 8px;
}
.result-outcome-label { font-size: 0.78rem; color: var(--accent); font-weight: 600; white-space: nowrap; }
.result-outcome-text  { font-size: 0.82rem; color: var(--text-light); }
.result-meta { margin-top: 16px; font-size: 0.75rem; color: var(--text-muted); font-style: italic; }

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-quote { font-family: Georgia, serif; font-size: 3rem; color: var(--border); line-height: 1; margin-bottom: 12px; }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); font-size: 1rem; }
.review-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.review-area  { font-size: 0.78rem; color: var(--text-muted); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--dark);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(168,113,79,0.08) 0%, transparent 60%);
}
.page-hero-inner { max-width: 900px; position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(253,252,250,0.6); font-size: 1.05rem; max-width: 640px; line-height: 1.9; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(253,252,250,0.4);
  margin-bottom: 32px;
}
.breadcrumb a { color: rgba(253,252,250,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── PRACTICE LAYOUT ─── */
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.practice-content p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.service-list li::before { content: '✦'; color: var(--accent); font-size: 0.6rem; flex-shrink: 0; }

/* Sidebar */
.practice-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}
.practice-sidebar h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-text { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-content p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.principle {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.principle:hover { border-color: var(--accent); }
.principle-icon { font-size: 1.4rem; flex-shrink: 0; }
.principle h4 { font-size: 1rem; margin-bottom: 6px; }
.principle p { font-size: 0.85rem; margin: 0; }
.about-dark-box {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 20px;
}
.about-dark-box h3 { color: var(--white); margin-bottom: 16px; }
.about-dark-box p { color: rgba(253,252,250,0.65); font-size: 0.9rem; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.about-stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.about-stat-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--accent);
  padding: 80px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── NOTARY ─── */
.notary-hero {
  background: var(--dark);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notary-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,113,79,0.1) 0%, transparent 70%);
}
.notary-hero h1 { color: var(--white); margin-bottom: 20px; position: relative; }
.notary-hero p  { color: rgba(253,252,250,0.6); max-width: 600px; margin: 0 auto 40px; position: relative; }
.notary-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.notary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.notary-service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  transition: all var(--transition);
}
.notary-service:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.notary-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(168,113,79,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.notary-service-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.notary-service-desc  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  direction: rtl;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); background: var(--white); }
.form-textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(168,113,79,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-lbl { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-detail-val { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 40px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.8; max-width: 260px; }
.footer-tag {
  display: inline-block;
  background: rgba(168,113,79,0.2);
  color: var(--accent-light);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  margin-top: 16px;
}
.footer-col h4 { color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a  { display: block; color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 12px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--accent-light); }

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5c; }

/* ─── NOTICE BOX ─── */
.notice-box {
  background: rgba(168,113,79,0.06);
  border: 1px solid rgba(168,113,79,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 52px;
}
.notice-box p { font-size: 0.9rem; margin: 0; }

/* ─── INFO BOX ─── */
.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
}

/* ─── DARK BOX ─── */
.dark-box {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}
.dark-box h3 { color: var(--white); margin-bottom: 16px; }
.dark-box p  { color: rgba(253,252,250,0.6); margin-bottom: 32px; max-width: 480px; margin-right: auto; margin-left: auto; }
.dark-box-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-grid    { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual  { display: none; }
  .why-grid     { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .areas-grid        { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .results-grid      { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .practice-layout   { grid-template-columns: 1fr; }
  .practice-sidebar  { position: static; }
  .notary-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section     { padding: 70px 24px; }
  .hero        { padding: 120px 24px 70px; }
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .nav-inner   { padding: 0 24px; }
  .trust-strip       { padding: 24px; }
  .trust-divider     { display: none; }
  .footer-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-box  { padding: 32px 24px; }
  .whatsapp-float    { bottom: 20px; left: 20px; width: 52px; height: 52px; }
  .page-hero         { padding: 120px 24px 60px; }
}
@media (max-width: 600px) {
  .areas-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .notary-grid   { grid-template-columns: 1fr; }
  .hero-stats    { gap: 24px; }
  .cta-band      { padding: 60px 24px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
