/* ============================================================
   INSAAT & TADILAT — STYLES.CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- 1. CSS CUSTOM PROPERTIES ---- */
:root {
  --bg:              #F7F6F2;
  --surface:         #FFFFFF;
  --text-primary:    #1B1B1B;
  --text-secondary:  #4A4A4A;
  --accent:          #B08D57;
  --accent-dark:     #8a6d3e;
  --accent-light:    #c9a97a;
  --accent-rgb:      176, 141, 87;
  --accent-sec:      #2D3E50;
  --border:          #E5E3DC;
  --shadow-sm:       0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:       0 20px 56px rgba(0,0,0,0.14);
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;
  --section-py:      100px;
  --container-max:   1280px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --header-h:        80px;
  --tr:              all 0.3s cubic-bezier(0.4,0,0.2,1);
  --tr-slow:         all 0.55s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --bg:              #111315;
  --surface:         #1B1E22;
  --text-primary:    #FFFFFF;
  --text-secondary:  #C9CDD2;
  --accent:          #D4AF37;
  --accent-dark:     #b8941e;
  --accent-light:    #e8c84f;
  --accent-rgb:      212, 175, 55;
  --accent-sec:      #1e2d3d;
  --border:          #2C3137;
  --shadow-sm:       0 2px 10px rgba(0,0,0,0.35);
  --shadow-md:       0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg:       0 20px 56px rgba(0,0,0,0.55);
}

/* ---- 2. RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- 3. TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--text-primary); }
h1 { font-size: clamp(38px, 6vw, 78px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.8vw, 48px); font-weight: 600; }
h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 600; }
h4 { font-size: clamp(17px, 2vw, 22px); font-weight: 600; }
p  { font-size: 16px; color: var(--text-secondary); line-height: 1.75; }

/* ---- 4. LAYOUT ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-py) 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 7px 18px;
  background: rgba(var(--accent-rgb), 0.10);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 100px;
}
.section-title  { margin-bottom: 16px; }
.section-desc   { max-width: 560px; margin: 0 auto; font-size: 17px; }
.divider-line   { width: 56px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }
.divider-left   { margin: 16px 0 0; }

/* ---- 5. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: var(--radius-sm);
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 15px; }

/* ---- 6. HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: var(--tr);
}
.header.scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="dark"] .header.scrolled { background: rgba(27,30,34,0.96); }
.header.solid { background: var(--surface); box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo { height: 46px; width: auto; display: block; border-radius: 6px; }
.footer-site-logo { height: 54px; }

/* Transparent header — white text */
.header-transparent .header-logo { background: rgba(255,255,255,0.92); border-radius: 8px; padding: 3px 10px; }
.header-transparent .nav-link  { color: rgba(255,255,255,0.85); }
.header-transparent .nav-link:hover { color: #fff; }
.header-transparent .theme-toggle { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.header-transparent .lang-switcher { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.header-transparent .lang-btn { color: rgba(255,255,255,0.7); }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
  position: relative;
  transition: var(--tr);
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px;
  transition: var(--tr);
}
.lang-btn {
  font-size: 11px; font-weight: 600; padding: 5px 10px;
  border-radius: 100px; color: var(--text-secondary);
  transition: var(--tr); letter-spacing: 0.5px;
}
.lang-btn.active, .lang-btn:hover { background: var(--accent); color: #fff; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--tr);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  transition: var(--tr);
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--tr); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.mobile-nav-link {
  display: block; padding: 12px 16px;
  font-size: 15px; font-weight: 500; color: var(--text-primary);
  border-radius: var(--radius-sm); transition: var(--tr);
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: var(--bg); color: var(--accent); }
.mobile-menu-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border); gap: 12px;
}

/* ---- 7. HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,19,21,0.85) 0%, rgba(45,62,80,0.65) 55%, rgba(17,19,21,0.45) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 24px;
  padding-top: calc(var(--header-h) + 90px);
  padding-bottom: 100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  padding: 8px 18px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.30);
  border-radius: 100px;
}
.hero-title { color: #fff; max-width: 760px; margin-bottom: 24px; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.hero-title span { color: var(--accent); display: block; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 44px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  animation: heroBounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { opacity: 0.6; }
@keyframes heroBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ---- 8. STATS ---- */
.stats { background: var(--accent-sec); padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 40px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); height: 56%; width: 1px;
  background: rgba(255,255,255,0.13);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700; color: var(--accent);
  line-height: 1; margin-bottom: 10px;
  display: block;
}
.stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 1.5px; text-transform: uppercase; }

/* ---- 9. SERVICES PREVIEW ---- */
.services-preview { padding: var(--section-py) 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--tr);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.service-card-img { height: 220px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-slow); }
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px; flex-shrink: 0;
}
.service-card-title { font-size: 19px; margin-bottom: 10px; }
.service-card-desc  { font-size: 14px; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.service-card-link  {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  transition: var(--tr); margin-top: auto;
}
.service-card-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 52px; }

/* ---- 10. BEFORE / AFTER ---- */
.before-after { padding: var(--section-py) 0; background: var(--surface); }
.ba-wrap { max-width: 880px; margin: 0 auto; }
.ba-container {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; cursor: ew-resize;
}
.ba-before-img { display: block; width: 100%; height: 520px; object-fit: cover; }
.ba-after-pane {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%; overflow: hidden;
}
.ba-after-pane img {
  position: absolute; top: 0; left: 0;
  width: 880px; max-width: none; height: 100%; object-fit: cover;
}
.ba-divider-line {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: #fff; left: 50%; transform: translateX(-50%);
  z-index: 10; pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-sec); z-index: 11;
}
.ba-labels {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 22px;
  z-index: 12; pointer-events: none;
}
.ba-label {
  background: rgba(0,0,0,0.62); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
}
.ba-range {
  display: block; width: 100%; margin-top: 22px;
  accent-color: var(--accent); cursor: pointer; height: 4px;
}

/* ---- 11. PROCESS ---- */
.process { padding: var(--section-py) 0; background: var(--bg); }
.process-steps {
  display: flex; gap: 0;
  position: relative; counter-reset: step;
  justify-content: space-between;
}
.process-line {
  position: absolute; top: 36px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-sec)); z-index: 0;
}
.process-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 10px; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface); border: 2.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--accent);
  margin-bottom: 22px; box-shadow: var(--shadow-sm); transition: var(--tr);
}
.process-step:hover .step-num { background: var(--accent); color: #fff; transform: scale(1.08); }
.step-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }

/* ---- 12. GALLERY PREVIEW ---- */
.gallery-preview { padding: var(--section-py) 0; background: var(--surface); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-preview-grid .gp-item:first-child { grid-row: span 2; }

.gp-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
}
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-slow); }
.gp-item:hover img { transform: scale(1.06); }
.gp-overlay {
  position: absolute; inset: 0; background: rgba(17,19,21,0.60);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--tr);
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-zoom {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transform: scale(0.75); transition: var(--tr);
}
.gp-item:hover .gp-zoom { transform: scale(1); }
.gallery-cta { text-align: center; margin-top: 52px; }

/* ---- 13. TESTIMONIALS ---- */
.testimonials { padding: var(--section-py) 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--tr);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 18px; }
.t-text  { font-size: 15px; line-height: 1.72; font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent); flex-shrink: 0;
}
.t-name { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.t-role { font-size: 12px; color: var(--text-secondary); }

/* ---- 14. FAQ ---- */
.faq { padding: var(--section-py) 0; background: var(--surface); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  background: var(--surface); transition: var(--tr); gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--tr);
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 14px; line-height: 1.72; color: var(--text-secondary); }

/* ---- 15. FINAL CTA ---- */
.final-cta {
  position: relative; padding: 120px 0; text-align: center;
  background: var(--accent-sec); overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.06); pointer-events: none;
}
.final-cta::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 440px; height: 440px; border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.05); pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p  { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 44px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- 16. FOOTER ---- */
.footer { background: #0C0E10; padding: 80px 0 0; }
[data-theme="dark"] .footer { background: #090A0C; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-top: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 14px; color: rgba(255,255,255,0.50); transition: var(--tr);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.footer-ci-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  flex-shrink: 0; margin-top: 1px;
}
.footer-ci-text { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.5; }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.30); transition: var(--tr); }
.footer-legal a:hover { color: var(--accent); }
.footer-areas-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.footer-areas-label { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.footer-areas-cities { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ---- SERVICE AREAS CHIPS ---- */
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 40px;
}
.area-chip {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 40px;
  padding: 12px 32px;
  font-size: 16px; font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: default;
}
.area-chip:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ---- 17. PAGE HERO ---- */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 72px;
  background: linear-gradient(135deg, #1a2535 0%, var(--accent-sec) 100%);
  text-align: center;
}
.page-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 18px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.page-breadcrumb a { color: rgba(255,255,255,0.45); transition: var(--tr); }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb svg { opacity: 0.4; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto; font-size: 17px; }

/* ---- 18. SERVICES PAGE ---- */
.services-section { padding: var(--section-py) 0; background: var(--bg); }
.services-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

.service-full-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr);
  display: flex; flex-direction: column;
}
.service-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.sfc-img { height: 280px; overflow: hidden; position: relative; flex-shrink: 0; }
.sfc-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-slow); }
.service-full-card:hover .sfc-img img { transform: scale(1.06); }
.sfc-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700; padding: 5px 14px;
  border-radius: 100px; letter-spacing: 1px; text-transform: uppercase;
}
.sfc-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.sfc-title { font-size: 21px; margin-bottom: 12px; }
.sfc-desc  { font-size: 14px; line-height: 1.70; margin-bottom: 22px; flex: 1; }
.sfc-advantages { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.sfc-advantages li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
}
.sfc-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(var(--accent-rgb), 0.12);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}

/* ---- 19. GALLERY PAGE ---- */
.gallery-section { padding: var(--section-py) 0; background: var(--bg); }
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 100px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text-secondary); transition: var(--tr); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.masonry-grid { columns: 3; column-gap: 18px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry-item.hidden { display: none; }
.masonry-item img { width: 100%; display: block; transition: var(--tr-slow); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0; background: rgba(17,19,21,0.62);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; opacity: 0; transition: var(--tr);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-zoom {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transform: scale(0.8); transition: var(--tr);
}
.masonry-item:hover .masonry-zoom { transform: scale(1); }
.masonry-cat { color: rgba(255,255,255,0.80); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 22px; right: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.10); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.10); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }

/* ---- 20. ABOUT PAGE ---- */
.about-story { padding: var(--section-py) 0; background: var(--bg); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: #fff; padding: 24px 30px;
  border-radius: var(--radius-md); text-align: center;
}
.about-badge .b-num   { font-family: var(--font-heading); font-size: 44px; font-weight: 700; line-height: 1; display: block; }
.about-badge .b-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }
.about-story-text .section-tag { margin-bottom: 12px; }
.about-story-text h2  { margin-bottom: 22px; }
.about-story-text p   { margin-bottom: 16px; }

.about-mv { padding: var(--section-py) 0; background: var(--surface); }
.about-mv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.mv-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; transition: var(--tr);
}
.mv-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin-bottom: 22px;
}
.mv-title { font-size: 22px; margin-bottom: 14px; }
.mv-desc  { font-size: 14px; line-height: 1.72; }

.about-values { padding: var(--section-py) 0; background: var(--bg); }
.values-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: var(--tr);
}
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin: 0 auto 20px;
}
.value-title { font-size: 16px; margin-bottom: 10px; }
.value-desc  { font-size: 13px; line-height: 1.6; }

.why-us { padding: var(--section-py) 0; background: var(--surface); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.why-title { font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.why-desc  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.quality-section { padding: var(--section-py) 0; background: var(--bg); }
.quality-inner {
  max-width: 860px; margin: 0 auto;
  border-left: 4px solid var(--accent);
  padding: 32px 40px; background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}
.quality-inner h3 { margin-bottom: 16px; }
.quality-inner p  { margin-bottom: 12px; }
.quality-inner p:last-child { margin-bottom: 0; }

/* ---- 21. CONTACT PAGE ---- */
.contact-section { padding: var(--section-py) 0; background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start; transition: var(--tr);
}
.contact-card:hover { border-color: var(--accent); transform: translateX(5px); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.10);
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.cc-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; font-weight: 600; }
.cc-value { font-size: 15px; color: var(--text-primary); font-weight: 500; }
.cc-sub   { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; height: 220px; border: none; }

.contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px;
}
.form-head { margin-bottom: 32px; }
.form-head h3 { font-size: 26px; margin-bottom: 8px; }
.form-head p  { font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  color: var(--text-primary); transition: var(--tr); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none; cursor: pointer;
  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='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-submit { width: 100%; padding: 15px; font-size: 15px; border-radius: var(--radius-sm); margin-top: 8px; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 500; color: var(--text-primary); }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.badge-open { color: #16a34a; font-weight: 600; }

/* ---- 22. ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.7s ease both; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.20s; }
.delay-3 { animation-delay: 0.30s; }
.delay-4 { animation-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- ABOUT STORY INLINE STATS ---- */
.about-story-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 32px;
  background: var(--accent-sec);
  border-radius: 12px;
  overflow: hidden;
}
.about-story-stats .stat-item { padding: 20px 12px; border: none; }
.about-story-stats .stat-item::after { display: none; }
.about-story-stats .stat-number { font-size: 32px; }

/* ---- FOUNDERS / TEAM ---- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.founder-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.founder-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.founder-initials {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: 1px;
}
.founder-info { display: flex; flex-direction: column; gap: 4px; }
.founder-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--text-primary); margin: 0; }
.founder-role { font-size: 13px; color: var(--text-secondary); margin: 0 0 8px; }
.founder-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  text-decoration: none; transition: var(--tr);
}
.founder-phone:hover { color: var(--accent-dark, var(--accent)); opacity: 0.85; }
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; max-width: 500px; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- BA IMAGE FIX ---- */
.ba-container img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
.ba-container { touch-action: none; }

/* ---- FLOATING LANGUAGE BUTTON ---- */
.lang-float {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1200;
  display: none;
  flex-direction: column;   /* menu first (top), trigger second (bottom) */
  align-items: flex-end;
}
.lang-float-trigger {
  width: 62px; height: 50px;
  border-radius: 14px 0 0 0;   /* top-left rounded only — glued to corner */
  background: var(--accent);
  color: #fff;
  box-shadow: -3px -3px 18px rgba(var(--accent-rgb), 0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.lang-float-trigger:hover { background: var(--accent-dark, var(--accent)); filter: brightness(1.08); }
.lang-float-label { font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.lang-float-menu {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md) 0 0 var(--radius-md); /* right edge flat, left rounded */
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 4px;
  transform-origin: bottom right;
  transform: scaleY(0.7) translateY(12px);
  opacity: 0; pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
  min-width: 158px;
}
.lang-float.open .lang-float-menu {
  transform: scaleY(1) translateY(0);
  opacity: 1; pointer-events: all;
}
.lang-float-option {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--text-primary); width: 100%;
  border: none; background: none; cursor: pointer;
  transition: var(--tr); text-align: left; font-family: inherit;
  border-bottom: 1px solid var(--border);
}
.lang-float-option:last-child { border-bottom: none; }
.lang-float-option:hover,
.lang-float-option.active { background: rgba(var(--accent-rgb), 0.08); color: var(--accent); }
.lang-float-option.active { font-weight: 600; }

/* ---- 23. RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .header-nav { display: none; }
  .hamburger   { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .btn-primary { display: none; }
  /* Hide lang switcher from header — floating button takes over */
  .header-actions .lang-switcher { display: none; }
  .mobile-menu-bottom .lang-switcher { display: none; }
  /* Show floating lang button */
  .lang-float { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { display: none; }
  .process-steps { flex-wrap: wrap; }
  .process-step { width: 33.33%; flex: none; padding-bottom: 32px; }
  .gallery-preview-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-preview-grid .gp-item:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { order: -1; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .about-mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-step { width: 50%; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .ba-before-img { height: 280px; }
  .ba-after-pane img { width: 100vw; max-width: none; }
  .ba-before-img { width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .quality-inner { padding: 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }

  /* HERO MOBILE CENTER */
  .hero-content {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-title { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; width: 100%; }

  /* FOUNDERS MOBILE */
  .founders-grid { grid-template-columns: 1fr; max-width: 420px; }
  .founder-card { padding: 20px; }

  /* HAKKIMIZDA MOBILE */
  .about-badge { position: static !important; margin-top: 20px; border-radius: var(--radius-md); }
  .about-img-wrap img { height: 300px; }
  .about-story-inner { gap: 28px; }
  .about-story-stats { grid-template-columns: repeat(3,1fr) !important; }
  .about-story-stats .stat-item { padding: 16px 8px !important; }
  .about-story-stats .stat-number { font-size: 26px !important; }
  .about-story-stats .stat-label { font-size: 10px !important; }
  .why-img img { height: 280px; }
  .about-mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .process-step { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item::after { display: none; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  h1 { font-size: 36px; }
  .hero-eyebrow { font-size: 10px; }
  .about-story-stats { grid-template-columns: 1fr !important; }
  .about-story-stats .stat-item { padding: 12px !important; }
  .founder-card { flex-direction: column; text-align: center; align-items: center; }
}

/* ---- FLOATING CONTACTS ---- */
.float-contacts {
  position: fixed;
  bottom: 28px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.float-item { position: relative; }
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,0,0,0.38); }
.float-phone    { background: #1d4ed8; }
.float-whatsapp { background: #25d366; }
.float-panel {
  position: absolute;
  left: calc(100% + 14px);
  bottom: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 175px;
  white-space: nowrap;
  z-index: 1001;
}
.float-panel.open { display: flex; }
.float-panel-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted, #9ca3af);
  padding: 4px 10px 8px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  margin-bottom: 4px;
}
.float-panel-link {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary, #111827);
  text-decoration: none;
  border-radius: 9px;
  transition: background 0.15s;
}
.float-panel-link:hover { background: rgba(0,0,0,0.06); color: var(--accent, #2563eb); }
