body { visibility: hidden; }
body.ready { visibility: visible; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2a5f8f;
  --primary-dark: #1e4a70;
  --primary-light: #3a7ab8;
  --secondary: #ff6b35;
  --secondary-dark: #e55a25;
  --bg: #ffffff;
  --bg-muted: #f0f5fa;
  --card-bg: #ffffff;
  --text: #162840;
  --text-muted: #5a7394;
  --border: #d9e5f0;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(42,95,143,0.1);
  --shadow-lg: 0 8px 40px rgba(42,95,143,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", "Noto Sans Georgian", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body[lang="ka"] { font-family: "Noto Sans Georgian", "DM Sans", sans-serif; }

[data-lang] { display: none; }
body[lang="en"] [data-lang="en"] { display: inherit; }
body[lang="ka"] [data-lang="ka"] { display: inherit; }
body[lang="en"] [data-lang-block="en"] { display: block; }
body[lang="ka"] [data-lang-block="ka"] { display: block; }
[data-lang-block] { display: none; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
}
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--text); }

nav { display: flex; gap: 4px; align-items: center; }
nav a {
  padding: 8px 14px; font-size: 0.875rem; font-weight: 500; white-space: nowrap;
  color: var(--text-muted); text-decoration: none;
  border-radius: 8px; transition: all 0.2s;
}
nav a:hover, nav a.active { color: var(--primary); background: var(--bg-muted); }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.phone-link:hover { color: var(--text); }

.lang-switch {
  display: flex; background: var(--bg-muted);
  border-radius: 8px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 5px 12px; font-size: 0.8rem; font-weight: 600;
  border: none; background: transparent; color: var(--text-muted);
  border-radius: 6px; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.lang-btn.active { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(42,95,143,0.3); }

.hamburger { display: none; cursor: pointer; border: none; background: none; padding: 6px; color: var(--text); }

.mobile-menu { display: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; font-family: inherit; white-space: nowrap;
}
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,53,0.4); }
.btn-outline { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,0.22); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-dark:hover { background: var(--bg-muted); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ── LAYOUT ── */
.section { padding: 6rem 2rem; }
.section-muted { background: var(--bg-muted); }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 2rem; color: #fff;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.15rem; opacity: 0.9; max-width: 580px; line-height: 1.7; }

/* ── HERO (index) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(22,40,64,0.95) 0%, rgba(42,95,143,0.88) 50%, rgba(42,95,143,0.65) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; width: 100%; }
.hero-text { max-width: 700px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; line-height: 1.7; max-width: 560px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS ── */
.stats { background: var(--bg-muted); padding: 5rem 2rem; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-icon { width: 52px; height: 52px; margin: 0 auto 1rem; color: var(--secondary); }
.stat-icon svg { width: 100%; height: 100%; }
.stat-value { font-size: 2.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: all 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 58px; height: 58px; background: rgba(42,95,143,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--primary);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.service-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* services full page */
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-full-card {
  background: var(--card-bg); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-full-header { padding: 2.5rem 2.5rem 0; }
.service-full-body { padding: 1.5rem 2.5rem; flex-grow: 1; }
.service-full-footer { padding: 0 2.5rem 2.5rem; margin-top: auto; }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; color: var(--text-muted); }
.check-icon { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-num { font-size: 5rem; font-weight: 800; color: rgba(255,107,53,0.15); line-height: 1; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text); }
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.testimonial-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.quote-icon { color: var(--secondary); margin-bottom: 1rem; }
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.8; color: var(--text); flex-grow: 1; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 10px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--secondary); font-size: 1.1rem; margin-top: 1rem; }

/* ── CTA ── */
.cta { background: var(--primary); padding: 6rem 2rem; text-align: center; }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.cta p { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-stats-box { background: var(--bg-muted); border-radius: var(--radius); padding: 3rem; }
.about-stat { margin-bottom: 2.5rem; }
.about-stat:last-child { margin-bottom: 0; }
.about-stat-val { font-size: 4rem; font-weight: 800; color: var(--secondary); line-height: 1; margin-bottom: 0.25rem; }
.about-stat-label { font-size: 1rem; color: var(--text-muted); }
.story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.value-card { background: var(--card-bg); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.value-icon { width: 52px; height: 52px; color: var(--secondary); margin-bottom: 1rem; }
.value-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.cert-card { background: var(--card-bg); border-radius: var(--radius); padding: 1.75rem; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); }
.cert-card p { font-weight: 600; font-size: 0.9rem; color: var(--text); }

/* ── GALLERY ── */
.gallery-tabs { display: flex; gap: 6px; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-btn {
  padding: 8px 20px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text-muted); font-size: 0.875rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  position: relative; background: var(--card-bg); border: 1px solid var(--border); transition: all 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-info { color: #fff; }
.badge-small { background: var(--secondary); color: #fff; font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; margin-bottom: 8px; display: inline-block; font-weight: 600; }
.gallery-card-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.gallery-card-info p { font-size: 0.82rem; opacity: 0.85; }
.gallery-card-footer { padding: 0.85rem 1rem; }
.badge { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); font-size: 0.78rem; padding: 4px 10px; border-radius: 6px; font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; background: none; border: none; cursor: pointer;
  font-size: 1.05rem; font-weight: 700; color: var(--text); text-align: left;
  font-family: inherit; gap: 1rem; transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { flex-shrink: 0; transition: transform 0.25s; color: var(--text-muted); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.4rem; }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-muted); line-height: 1.8; font-size: 0.97rem; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag { position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 6px; }
.blog-body { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.blog-body h3 { font-size: 1.1rem; font-weight: 800; line-height: 1.4; margin-bottom: 0.75rem; color: var(--text); }
.blog-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; flex-grow: 1; }
.blog-read-more { font-size: 0.875rem; font-weight: 700; color: var(--secondary); }
a.blog-card-link { text-decoration: none; color: inherit; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.contact-form-card { background: var(--card-bg); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-card h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.95rem; font-family: inherit;
  color: var(--text); background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(42,95,143,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.contact-info-card { background: var(--bg-muted); border-radius: var(--radius); padding: 2.5rem; }
.contact-info-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 1.75rem; }
.contact-info-icon { width: 50px; height: 50px; background: rgba(255,107,53,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--secondary); }
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; color: var(--text); }
.contact-info-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.contact-info-text a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-info-text a:hover { color: var(--secondary); }
.emergency-card { background: var(--secondary); border-radius: var(--radius); padding: 2rem; color: #fff; margin-top: 1.5rem; }
.emergency-card h3 { font-weight: 800; margin-bottom: 0.75rem; }
.emergency-card p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1.25rem; line-height: 1.6; }
.emergency-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.emergency-btn:hover { background: rgba(255,255,255,0.22); }

/* ── FOOTER ── */
footer { background: var(--bg-muted); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-link:hover { background: var(--primary); color: #fff; }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li span { font-size: 0.875rem; color: var(--text-muted); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; color: var(--text-muted); align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--primary); color: #fff;
  padding: 1rem 1.5rem; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  font-weight: 600; font-size: 0.95rem;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s; z-index: 999;
  max-width: 340px; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav, .phone-link { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 4px;
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 1rem 2rem; position: absolute; width: 100%; left: 0;
    top: 68px; z-index: 99; box-shadow: var(--shadow);
    transform: translateY(-110%); opacity: 0;
    transition: all 0.25s; pointer-events: none;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .mobile-menu a { padding: 12px 8px; color: var(--text); text-decoration: none; font-weight: 500; border-radius: 8px; transition: background 0.2s; }
  .mobile-menu a:hover { background: var(--bg-muted); }
  .header-inner { position: relative; }
}
@media (max-width: 580px) {
  .header-right .btn { display: none; }
  .stats-grid { gap: 1rem; }
  .stat-item { min-width: 0; }
  .stat-label { letter-spacing: 0.04em; overflow-wrap: anywhere; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-width: 0; overflow-wrap: anywhere; }
  .page-hero h1, .hero h1 { overflow-wrap: anywhere; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ── */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAGE TRANSITION ── */
body.ready {
  animation: pageFadeIn 0.25s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
