/* ============================================================
   EML CLEANING — style.css  (v3)
   Culori: albastru navy / crem / auriu
   Fonturi: Cormorant Garamond + DM Sans
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
}

/* ── Variabile ── */
:root {
  --blue-dark:    #1a2c4e;
  --blue-mid:     #2d5299;
  --blue-light:   #6b8fc2;
  --blue-pale:    #e4ecf7;
  --cream:        #faf8f4;
  --warm-white:   #ffffff;
  --charcoal:     #1a1f2e;
  --text-mid:     #4a5568;
  --text-light:   #7a8899;
  --gold:         #c9a84c;
  --gold-pale:    #f5eed8;
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;
  --shadow-sm:    0 2px 12px rgba(26,44,78,.07);
  --shadow-md:    0 8px 32px rgba(26,44,78,.12);
  --shadow-lg:    0 20px 60px rgba(26,44,78,.16);
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

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

/* ── Tipografie ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

/* ── Utilitare ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue-mid); color: #fff; box-shadow: 0 4px 16px rgba(45,82,153,.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,82,153,.45); }
.btn-outline { border: 1.5px solid var(--blue-mid); color: var(--blue-mid); background: transparent; }
.btn-outline:hover { background: var(--blue-pale); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(201,168,76,.35); }
.btn-gold:hover { background: #b8943e; transform: translateY(-2px); }

.tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-pale);
  padding: .3rem .85rem; border-radius: 999px;
}
.tag-gold { color: var(--gold); background: var(--gold-pale); }

.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--blue-mid); }

/* ── Animatii reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Noise overlay ── */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .3;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,82,153,.12);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 2rem; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--blue-dark);
  letter-spacing: -.01em; display: flex; align-items: center; gap: .4rem;
}
.nav-logo span { color: var(--blue-mid); }
.nav-logo-text { min-width: 0; }
.nav-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 4px; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .8rem;
  font-size: .88rem; font-weight: 500; color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue-dark); background: var(--blue-pale); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 230px; background: var(--warm-white);
  border: 1px solid rgba(45,82,153,.15); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s ease; z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: .55rem .9rem;
  font-size: .84rem; font-weight: 400; color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--blue-pale); color: var(--blue-dark); }
.nav-cta { margin-left: .5rem; }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; padding: .5rem; border-radius: var(--radius-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid var(--blue-pale);
  padding: .5rem 0 1.25rem;
}
.mobile-nav.open { display: flex; }
.mob-link {
  padding: .85rem 1.5rem;
  font-size: .95rem; font-weight: 500; color: var(--text-mid);
  border-bottom: 1px solid var(--blue-pale);
  transition: color .2s, background .2s;
}
.mob-link:hover { color: var(--blue-dark); background: var(--blue-pale); }
.mob-accordion { border-bottom: 1px solid var(--blue-pale); }
.mob-accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1.5rem;
  font-size: .95rem; font-weight: 500; color: var(--text-mid);
  background: none; border: none; cursor: pointer; font-family: inherit;
  text-align: left; transition: color .2s, background .2s;
}
.mob-accordion-btn:hover,
.mob-accordion-btn[aria-expanded="true"] { color: var(--blue-dark); background: var(--blue-pale); }
.mob-accordion-btn svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--blue-mid); transition: transform .3s;
}
.mob-accordion-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.mob-accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  background: #f4f7fc;
}
.mob-accordion-body.open { max-height: 500px; }
.mob-accordion-body a {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1.5rem .7rem 2rem;
  font-size: .88rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(45,82,153,.06);
  transition: color .2s, background .2s;
}
.mob-accordion-body a:last-child { border-bottom: none; }
.mob-accordion-body a:hover { color: var(--blue-dark); background: var(--blue-pale); }
.mobile-nav .btn { margin: .75rem 1.5rem 0; }

/* ══════════════════════════════════════════
   HERO
   Desktop/Tableta: poza fundal + overlay albastru
   Mobil: poza full-width sub titlu si butoane
══════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; }

/* Blocul de text cu fundal imagine — desktop */
.hero-text-block {
  position: relative; z-index: 1;
  min-height: 92vh; display: flex; align-items: center;
  background-image: url('../images/hero-bg.webp');
  background-size: cover; background-position: center 40%; background-repeat: no-repeat;
  background-color: var(--blue-dark);
}
.hero-text-block::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(20,36,70,.90) 0%,
    rgba(20,36,70,.75) 45%,
    rgba(20,36,70,.30) 100%);
  z-index: 0;
}
.hero-text-block .container { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }

/* Poza mobil — ascunsa pe desktop */
.hero-mobile-img { display: none; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-title { margin-bottom: 1.25rem; color: #fff; }
.hero-title em { font-style: italic; color: #8ab4e8; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero .tag { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.hero-stats { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.stat-item {
  text-align: center; background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md); padding: .85rem 1.2rem; min-width: 80px;
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.7); margin-top: .25rem; }
.hero .btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.hero-image-panel { display: none !important; }
.img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #6b8fc2 0%, #2d5299 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce-hint 2s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 18px; opacity: .5; }
@keyframes bounce-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker-section { padding: 24px 0; background: var(--blue-dark); overflow: hidden; }
.ticker-track { display: flex; gap: 3rem; width: max-content; animation: ticker-scroll 28s linear infinite; }
.ticker-section:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.75); white-space: nowrap;
  display: flex; align-items: center; gap: 1rem;
}
.ticker-item::after { content: '✦'; color: var(--gold); font-size: .6rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   SERVICES SLIDER
   Desktop: 6 vizibile | Tableta: 3 | Mobil: 1
══════════════════════════════════════════ */
.services-section { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 3rem; }

.slider-wrapper {
  overflow: hidden; position: relative; cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.slider-wrapper:active { cursor: grabbing; }
.slider-track { display: flex; gap: 1.25rem; width: max-content; will-change: transform; }

/* Dimensiune card — calculata sa fie exact 6 pe ecran (1200px / 6 - gap) */
.service-card {
  width: calc((min(100vw, 1200px) - 1.5rem * 2 - 1.25rem * 5) / 6);
  min-width: 160px;
  flex-shrink: 0;
  background: var(--warm-white);
  border: 1px solid rgba(45,82,153,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  user-select: none;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Poza card — sus, prominenta */
.service-card-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; flex-shrink: 0;
  background: var(--blue-pale);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  pointer-events: none;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

/* Emoji placeholder cand nu e poza */
.service-card-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-pale), #c5d5ee);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}

.service-card-body { padding: 1.1rem 1.1rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: .95rem; margin-bottom: .4rem; line-height: 1.3; }
.service-card p  { font-size: .78rem; color: var(--text-light); line-height: 1.55; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .05rem; padding: .8rem 0; font-size: .76rem; font-weight: 600; color: var(--blue-mid);
}
.service-card-link:hover { color: var(--blue-dark); gap: .5rem; }

/* ══════════════════════════════════════════
   BEFORE / AFTER SLIDER
══════════════════════════════════════════ */
.before-after-section { background: var(--blue-dark); padding: 80px 0; }
.before-after-section h2, .before-after-section .section-label { color: #fff; }
.before-after-section .section-label::before { background: var(--gold); }
.before-after-section p { color: rgba(255,255,255,.7); }

.ba-slider-wrapper {
  overflow: hidden; margin-top: 3rem; cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.ba-slider-wrapper:active { cursor: grabbing; }
.ba-track { display: flex; gap: 1.5rem; width: max-content; will-change: transform; }

.ba-card {
  width: 420px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden;
  position: relative;
}
.ba-card-img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.ba-card-img-placeholder {
  width: 100%; height: 280px;
  background: linear-gradient(135deg, #2d4a7a, #1a2c4e);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25); font-size: 3.5rem;
}
.ba-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; backdrop-filter: blur(8px);
}
.ba-badge.before { background: rgba(201,168,76,.25); color: #f5d98b; border: 1px solid rgba(201,168,76,.4); }
.ba-badge.after  { background: rgba(45,82,153,.35); color: #a8c4ee; border: 1px solid rgba(45,82,153,.5); }
.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  color: #fff; font-size: .8rem; font-weight: 500;
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why-section { background: var(--warm-white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.why-card { padding: 2rem; border-radius: var(--radius-md); border: 1px solid rgba(45,82,153,.1); transition: border-color .3s, box-shadow .3s; }
.why-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.why-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h4 { margin-bottom: .5rem; color: var(--blue-dark); }
.why-card p  { font-size: .88rem; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: var(--blue-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .9rem; color: var(--text-mid); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-mid); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.author-role { font-size: .75rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   ABOUT PREVIEW
══════════════════════════════════════════ */
.about-preview { background: var(--cream); }
.about-preview-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; }
.about-img-stack img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-story-grid > div.reveal > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; max-width: 420px; background: linear-gradient(135deg, #6b8fc2 0%, #2d5299 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.6); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 160px; height: 160px; border-radius: var(--radius-md); overflow: hidden; border: 4px solid var(--warm-white); box-shadow: var(--shadow-md); background: linear-gradient(135deg, #2d5299, #1a2c4e); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: 2.5rem; }
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1.25rem; }
.about-values { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0; }
.about-value-item { display: flex; align-items: flex-start; gap: .75rem; padding: .85rem 1rem; background: var(--blue-pale); border-radius: var(--radius-sm); border-left: 3px solid var(--blue-mid); }
.about-value-icon { font-size: 1.1rem; flex-shrink: 0; }
.about-value-text strong { font-size: .88rem; display: block; margin-bottom: .15rem; color: var(--blue-dark); }
.about-value-text span { font-size: .82rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   AREAS
══════════════════════════════════════════ */
.areas-section { background: var(--warm-white); }
.areas-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 2.5rem; }
.area-card { background: var(--blue-pale); border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center; border: 1px solid rgba(45,82,153,.15); transition: all .3s; text-decoration: none; }
.area-card:hover { background: var(--blue-mid); border-color: var(--blue-mid); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card:hover .area-name, .area-card:hover .area-postcode { color: #fff; }
.area-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.area-name { font-size: .95rem; font-weight: 600; color: var(--blue-dark); margin-bottom: .2rem; }
.area-postcode { font-size: .75rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0f1c3a 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section p { opacity: .8; max-width: 560px; margin: 1rem auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-phones { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.cta-phone-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-size: .9rem; }
.cta-phone-item a { color: #fff; font-weight: 600; }
.cta-phone-item a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   CONTACT FORM PAGE
══════════════════════════════════════════ */
.contact-page { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: var(--blue-pale); border-radius: var(--radius-md); margin-bottom: 1rem; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-detail-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }
.contact-detail-value { font-size: .95rem; font-weight: 500; color: var(--charcoal); }
.contact-detail-value a:hover { color: var(--blue-mid); }
.form-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid rgba(45,82,153,.1); }
.form-title { margin-bottom: .5rem; }
.form-subtitle { font-size: .9rem; color: var(--text-light); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--text-mid); margin-bottom: .45rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid rgba(45,82,153,.2); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--charcoal); background: var(--cream);
  transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(45,82,153,.12); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #d9534f; }
.form-error { font-size: .78rem; color: #d9534f; margin-top: .3rem; display: none; }
.form-group.error .form-error { display: block; }
.form-success { display: none; padding: 1rem 1.25rem; background: #eaf0fa; border: 1px solid #a8c4ee; border-radius: var(--radius-sm); color: var(--blue-dark); font-size: .88rem; margin-bottom: 1.25rem; }
.form-success.show { display: block; }

/* ══════════════════════════════════════════
   SERVICE PAGES
══════════════════════════════════════════ */
.service-hero { background: linear-gradient(145deg, #e4ecf7, var(--cream)); padding: 70px 0 60px; }
.service-hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.service-hero-badge { margin-bottom: 1rem; }
.service-hero h1 { margin-bottom: 1.25rem; }
.service-hero-intro { font-size: 1.05rem; color: var(--text-mid); max-width: 500px; margin-bottom: 2rem; }
.service-hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #6b8fc2, #2d5299); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,.6); }
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.service-content { padding: 70px 0; }
.service-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.service-body h2 { margin-bottom: 1rem; }
.service-body p  { margin-bottom: 1.25rem; }
.service-includes { margin-top: 2rem; }
.service-includes h3 { margin-bottom: 1.25rem; }
.service-includes ul { display: flex; flex-direction: column; gap: .75rem; }
.service-includes li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--text-mid); }
.service-includes li::before { content: '✓'; color: var(--blue-mid); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.service-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 1.75rem; border: 1px solid rgba(45,82,153,.12); box-shadow: var(--shadow-sm); }
.sidebar-card h4 { margin-bottom: 1rem; color: var(--blue-dark); }
.sidebar-card p  { font-size: .85rem; margin-bottom: 1rem; }
.sidebar-card ul { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-card li { font-size: .85rem; color: var(--text-mid); display: flex; align-items: center; gap: .5rem; }
.sidebar-card li::before { content: '→'; color: var(--blue-mid); }

/* ══════════════════════════════════════════
   LOCATION PAGES
══════════════════════════════════════════ */
.location-hero { background: linear-gradient(145deg, #e4ecf7, var(--cream)); padding: 70px 0 60px; }
.location-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-light); margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--blue-mid); }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; }
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-stats-bar { display: flex; gap: 2.5rem; flex-wrap: wrap; background: var(--warm-white); border-radius: var(--radius-md); padding: 1.5rem 2rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(45,82,153,.1); margin-top: 1.5rem; }
.loc-stat { text-align: center; }
.loc-stat-link { text-decoration: none; color: inherit; display: block; border-radius: var(--radius-sm); transition: background .2s; }
.loc-stat-link:hover { background: rgba(45,82,153,.06); }
.loc-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--blue-dark); }
.loc-stat-label { font-size: .75rem; color: var(--text-light); margin-top: .2rem; }
.location-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.loc-service-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid rgba(45,82,153,.1); text-decoration: none; transition: all .3s; }
.loc-service-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc-service-card .icon { font-size: 1.5rem; margin-bottom: .75rem; }
.loc-service-card h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--blue-dark); }
.loc-service-card p  { font-size: .82rem; }
.areas-nearby { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.area-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem 1rem; border-radius: 999px; font-size: .82rem; background: var(--blue-pale); color: var(--blue-dark); font-weight: 500; text-decoration: none; transition: all .2s; }
.area-pill:hover { background: var(--blue-mid); color: #fff; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-hero { background: linear-gradient(145deg, #e4ecf7, var(--cream)); padding: 70px 0 60px; }
.about-story { padding: 70px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.values-section { background: var(--warm-white); padding: 70px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { padding: 2rem; border-radius: var(--radius-md); background: var(--blue-pale); border: 1px solid rgba(45,82,153,.15); }
.value-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--blue-dark); margin-bottom: .5rem; }
.team-section { background: var(--cream); padding: 70px 0; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3rem; max-width: 600px; }
.team-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(45,82,153,.1); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; margin: 0 auto 1rem; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; font-weight: 600; color: var(--blue-dark); margin-bottom: .25rem; }
.team-role { font-size: .82rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-logo span { color: var(--blue-light); }
.footer-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,.5); }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; font-size: .83rem; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-col-title { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.5); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════
   PAGE HERO (generic)
══════════════════════════════════════════ */
.page-hero { background: linear-gradient(145deg, #e4ecf7, var(--cream)); padding: 60px 0 50px; text-align: center; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Slider — 3 carduri vizibile pe tableta */
  .service-card { width: calc((100vw - 1.5rem * 2 - 1.25rem * 2) / 3); }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text-block { min-height: 70vh; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-preview-inner, .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .service-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  /* Slider — 1 card vizibil pe mobil */
  .service-card { width: calc(100vw - 3rem); }
  .ba-card { width: calc(100vw - 3rem); }

  /* HERO MOBIL
     Desktop: fundal imagine full-screen
     Mobil: text sus, poza full-width dedesubt
  */
  .hero-text-block {
    min-height: auto;
    background-image: none !important;
    background-color: var(--blue-dark);
  }
  .hero-text-block::before { display: none; }
  .hero-text-block .container { padding-top: 3rem; padding-bottom: 2.5rem; }
  .hero-scroll-hint { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .location-hero-grid { grid-template-columns: 1fr; }
  .hero-subtitle { margin-left: auto; margin-right: auto; font-size: .95rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { justify-content: center; gap: .75rem; }
  .stat-item { padding: .65rem .85rem; flex: 1; min-width: 70px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .68rem; }

  /* Poza mobil — full-width dedesubt */
  .hero-mobile-img {
    display: block; width: 100%; overflow: hidden;
    max-height: 55vw;
  }
  .hero-mobile-img img {
    width: 100%; height: 55vw;
    object-fit: cover; object-position: center;
    display: block;
  }

  .why-grid, .testimonials-grid, .values-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .service-sidebar { grid-template-columns: 1fr; }
  .location-services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; }
}

@media (max-width: 480px) {
  .hero-mobile-img { max-height: 60vw; }
  .hero-mobile-img img { height: 60vw; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: .5rem; }
}

/* Logo imagine in header */
.nav-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-left: .3rem;
  vertical-align: middle;
  flex-shrink: 0;
  margin-top: -3px;
}
