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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== COLORS ===== */
:root {
  --orange: #ff7f00;
  --dark: #000;
  --darker: #232323;
  --gray: #5d5d5d;
  --white: #fff;
}

/* ===== BUTTONS ===== */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: normal;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-orange:hover { background: #e06e00; transform: translateY(-1px); }

.btn-orange-sm {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.25s;
}
.btn-orange-sm:hover { background: #e06e00; }

.btn-full { width: 100%; text-align: center; font-size: 16px; padding: 14px; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 12px;
}

/* ===== BG HELPERS ===== */
.section-dark { background: #000; }
.section-darker { background: var(--darker); }

/* ===== TOP BAR ===== */
.topbar {
  background: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: color 0.2s;
}
.topbar-item i { color: var(--orange); font-size: 14px; }
.topbar-item:hover { color: var(--orange); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 80vh;
  background: url('images/hero-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px; /* spațiu pentru overlap estimate card */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-title {
  font-family: 'Rubik', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: #fff;
}
.hero-sub {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

/* ===== ESTIMATE SECTION ===== */
.estimate-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: -120px auto 0;
  padding: 0 24px;
}

.estimate-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}

.estimate-left {
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.estimate-phone-wrap {
  text-align: center;
}

.estimate-phone-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.estimate-phone-icon i {
  font-size: 28px;
  color: var(--orange);
}

.estimate-support {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.estimate-number {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.estimate-number:hover { color: var(--orange); }

.estimate-right {
  background: #fff;
  padding: 48px 40px;
}

.estimate-title {
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.estimate-sub {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.estimate-form { display: flex; flex-direction: column; gap: 14px; }

.estimate-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.estimate-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estimate-field label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.estimate-field input,
.estimate-field textarea {
  width: 100%;
  border: 1.5px solid var(--orange);
  border-radius: 5px;
  padding: 10px 14px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.estimate-field input:focus,
.estimate-field textarea:focus {
  border-color: #e06e00;
  box-shadow: 0 0 0 3px rgba(255,127,0,0.12);
}

.estimate-field input::placeholder,
.estimate-field textarea::placeholder { color: #aaa; }

.estimate-field textarea { resize: vertical; min-height: 100px; }

.btn-estimate {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
}

.btn-estimate:hover { background: #e06e00; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; margin-top: 40px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-text h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-text p {
  font-family: 'Noto Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== STATS ===== */
.stats { padding: 60px 0; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-num {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
}
.stat-suffix {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* ===== SERVICES INTRO ===== */
.services-intro {
  padding: 60px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.services-intro p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ===== SERVICES CARDS ===== */
.services { padding: 0 0 80px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.92) 35%);
  padding: 40px 24px 24px;
  transform: translateY(0);
}
.service-card-overlay h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.service-card-overlay p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ===== QUALITY SECTION ===== */
.quality { padding: 80px 0; }
.quality-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.quality-left h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.quality-left > p {
  font-family: 'Noto Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.6;
  font-size: 16px;
}
.quality-imgs-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.quality-img-box {
  position: relative;
}
.quality-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.q-orange-sq {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--orange);
  z-index: 0;
}
.q-sq-1 { bottom: -12px; left: -12px; }
.q-sq-2 { top: -12px; right: -12px; }
.q-box-2 img { margin-top: 30px; }

/* Advantages card */
.quality-right { }
.advantages-card {
  background: #fff;
  color: #111;
  padding: 32px 28px;
}
.advantages-card h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.advantage-item:last-child { margin-bottom: 0; }
.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon i { font-size: 18px; color: #fff; }
.advantage-item strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.advantage-item p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  background: url('images/cta-bg.webp') center center / cover no-repeat;
  padding: 100px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-content p {
  font-family: 'Noto Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why { padding: 80px 0; }
.why .container { text-align: center; }
.why-sub {
  font-family: 'Noto Sans', sans-serif;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.6;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.why-card {
  background: #111;
  border: 1px solid #222;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
}
.why-icon i { font-size: 20px; color: #fff; }
.why-card h3 { font-family: 'Rubik', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-family: 'Noto Sans', sans-serif; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials { padding: 80px 0; }
.testimonials .container { text-align: center; }
.testimonials h2 { font-family: 'Rubik', sans-serif; font-size: 48px; font-weight: 700; margin-bottom: 40px; }

.slider-wrap { position: relative; overflow: hidden; }
.reviews-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}
.review-card {
  background: #111;
  border: 1px solid #222;
  padding: 28px 24px;
  flex-shrink: 0;
  text-align: left;
  transition: border-color 0.3s;
  /* Width is set dynamically by JS based on container width */
  min-width: 0;
}
.review-card:hover { border-color: var(--orange); }
.stars { margin-bottom: 14px; }
.stars i { color: var(--orange); font-size: 14px; }
.review-card > p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; }
.reviewer span { font-size: 12px; color: rgba(255,255,255,0.5); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background 0.25s;
  border: none;
}
.slider-dot.active { background: var(--orange); }

/* ===== CONTACT / GET IN TOUCH ===== */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left — image with orange accent squares */
.contact-img-wrap {
  position: relative;
  padding: 20px 20px 20px 0;
}
.contact-orange-sq {
  position: absolute;
  width: 60px;
  background: var(--orange);
  z-index: 0;
  left: 0;
}
.contact-sq-top { top: 0; height: 200px; }
.contact-sq-bot { bottom: 0; height: 200px; }
.contact-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-left: 30px;
}

/* Right — white card */
.contact-card {
  background: #fff;
  color: #111;
  padding: 40px 36px;
}
.contact-card h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.contact-card > p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 20px; color: #fff; }
.contact-item strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: #555;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--orange); }
.contact-social-label {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}
.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: background 0.25s;
}
.contact-socials a:hover { background: #e06e00; }

.form-msg {
  font-size: 14px;
  padding: 10px 0;
  min-height: 24px;
}
.form-msg.success { color: #4caf50; }
.form-msg.error { color: #f44336; }

/* ===== FOOTER ===== */
.footer { background: var(--darker); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #333;
}
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.25s;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--orange);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a,
.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.8;
}
.footer-col a:hover,
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  background: #111;
  padding: 80px 24px 40px;
  text-align: center;
}
.gallery-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.gallery-hero p { color: rgba(255,255,255,0.65); font-size: 16px; }

.gallery-section { background: #000; padding: 60px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,127,0,0.85);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .estimate-title { font-size: 28px; }
  .estimate-right { padding: 36px 28px; }
  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 32px; }
  .about-text h2,
  .quality-text h2,
  .cta-content h2,
  .contact-info h2,
  .testimonials h2 { font-size: 36px; }
  .stat-num, .stat-suffix { font-size: 36px; }
}

@media (max-width: 768px) {
  /* Topbar - ascuns pe mobil */
  .topbar { display: none; }

  /* Nav */
  .navbar { position: sticky; top: 0; }
  .nav-inner { height: 56px; padding: 0 16px; }
  .nav-logo img { height: 38px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #222;
    padding: 8px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 12px 20px;
    display: block;
    width: 100%;
    font-size: 15px;
  }
  .nav-link::after { display: none; }

  /* Hero mai scund pe mobil */
  .hero { min-height: 50vh; }
  .hero-content { padding: 0 20px; }

  /* Typography mobile */
  .hero-title { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 18px; letter-spacing: -0.3px; }
  .about-text h2,
  .quality-text h2,
  .cta-content h2,
  .contact-info h2,
  .testimonials h2 { font-size: 28px; }
  .stat-num, .stat-suffix { font-size: 32px; }

  /* Estimate - pe mobil fara overlap */
  .estimate-wrapper { margin: 0 auto; padding: 0; }
  .estimate-section { grid-template-columns: 1fr; box-shadow: none; }
  .estimate-left { padding: 36px 24px; }
  .estimate-right { padding: 36px 24px; }
  .estimate-title { font-size: 24px; }
  .estimate-form-row { grid-template-columns: 1fr; }
  .btn-estimate { width: 100%; text-align: center; }
  .about { margin-top: 0; }
  .hero { padding-bottom: 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap img { height: 280px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { }
  .service-card-overlay { transform: translateY(0); }

  /* Quality */
  .quality-grid { grid-template-columns: 1fr; gap: 32px; }
  .quality-imgs { grid-template-columns: 1fr 1fr; }
  .q-img-1, .q-img-2 { height: 180px; margin-top: 0; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Reviews slider mobile — 1 card la rand */
  .review-card { min-width: 100%; }

  /* Quality */
  .quality-grid { grid-template-columns: 1fr; gap: 40px; }
  .quality-imgs-wrap { grid-template-columns: 1fr 1fr; }
  .quality-img-box img { height: 160px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-photo { height: 280px; margin-left: 20px; }
  .contact-card { padding: 28px 20px; }
  .contact-card h2 { font-size: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .topbar-left { flex-direction: column; gap: 4px; }
}
