/* ==========================================================================
   DISCIF S.R.L. – Premium Stylesheet v2.0
   Agency-level design for a vidanjare company in Suceava
   ========================================================================== */

/* ---- CSS Variables ---- */
:root {
  /* Brand Colors */
  --orange:        #E85D04;
  --orange-dark:   #C04A00;
  --orange-light:  #F9A03A;
  --orange-glow:   rgba(232, 93, 4, 0.18);
  --navy:          #0A1628;
  --navy-mid:      #162136;
  --navy-light:    #1E2E45;
  --navy-card:     #0F1E30;
  --slate:         #4A5568;
  --slate-light:   #718096;
  --slate-xlight:  #A0AEC0;
  --offwhite:      #F5F7FA;
  --offwhite-warm: #F8F7F4;
  --white:         #FFFFFF;
  --border:        #E2E8F0;
  --border-dark:   #CBD5E0;
  --gold:          #D4AC0D;

  /* Typography */
  --font-body:    'Barlow', system-ui, -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', 'Barlow', sans-serif;

  /* Spacing */
  --section-py:   6.5rem;
  --section-py-sm: 4rem;
  --container:    1240px;
  --gap:          1.5rem;
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --header-h:     80px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow:     0 4px 20px rgba(0,0,0,.09);
  --shadow-md:  0 8px 36px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 64px rgba(0,0,0,.16);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.20);
  --shadow-orange: 0 6px 28px rgba(232,93,4,.35);

  /* Transitions */
  --t:     0.22s ease;
  --t-md:  0.38s ease;
  --t-lg:  0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
  background: rgba(10, 22, 40, 0.99);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.site-header.scrolled::after { opacity: 1; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
  transition: opacity var(--t);
}
.logo:hover { opacity: .9; }

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 44px; height: 44px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
}
.logo-name span { color: var(--orange-light); }
.logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ---- Nav ---- */
.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.main-nav > ul > li > a {
  display: block;
  padding: .5rem .8rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  position: relative;
  white-space: nowrap;
  letter-spacing: .01em;
}
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t);
}
.main-nav > ul > li > a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: scaleX(1); }
.main-nav > ul > li > a.active { color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .6rem); left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--orange);
  border-radius: var(--radius);
  min-width: 210px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: .5rem;
  flex-shrink: 0;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--orange-light);
  white-space: nowrap;
  letter-spacing: .02em;
  transition: color var(--t);
}
.btn-phone:hover { color: var(--white); }
.btn-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: var(--radius);
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  border-radius: var(--radius);
  padding: .72rem 1.5rem;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.25;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 8px 36px rgba(232,93,4,.45);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(10,22,40,.06);
  color: var(--navy);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(10,22,40,.1); transform: translateY(-1px); }

.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.15);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.18); transform: translateY(-1px); }

.btn-sm { padding: .5rem 1.1rem; font-size: .83rem; }
.btn-lg { padding: .85rem 1.9rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 2.4rem; font-size: 1.05rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* Arrow icon in buttons */
.btn-arrow svg {
  transition: transform var(--t);
}
.btn-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
.section { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header-left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .85rem;
  letter-spacing: -.01em;
}
.section-title-lg {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}
.section-title-white { color: var(--white); }

.section-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-desc-left { margin: 0; max-width: 560px; }

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
.divider-orange {
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
  width: 120px;
  margin: 1.5rem 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10,22,40,.95) 0%,
      rgba(10,22,40,.80) 50%,
      rgba(10,22,40,.45) 100%
    ),
    linear-gradient(180deg, rgba(10,22,40,.2) 0%, rgba(10,22,40,.5) 100%);
}
.hero-overlay-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232,93,4,.07) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - var(--header-h));
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.3);
  padding: .38rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}
.hero-title .line-accent { color: var(--orange-light); }
.hero-title .line-thin {
  font-weight: 600;
  opacity: .85;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Hero phone – prominent */
.hero-phone-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.hero-phone-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,93,4,.4);
}
.hero-phone-texts { display: flex; flex-direction: column; }
.hero-phone-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1px;
}
.hero-phone-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
  transition: color var(--t);
}
.hero-phone-link:hover { color: var(--orange-light); }
.hero-phone-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.hero-trust-item svg { color: var(--orange-light); flex-shrink: 0; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.form-card-subtitle {
  font-size: .85rem;
  color: var(--slate-light);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .38rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%234A5568' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-xlight); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: .77rem;
  color: var(--slate-xlight);
  text-align: center;
  margin-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.form-note svg { color: var(--slate-light); flex-shrink: 0; }

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #22c55e;
}
.form-success h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p { color: var(--slate); font-size: .92rem; }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  flex: 1;
  min-width: 160px;
}
.trust-item-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,93,4,.15);
  color: var(--orange-light);
  border-radius: 10px;
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust-item-text span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.trust-bar-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section { background: var(--offwhite); }

.services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,93,4,.2);
}
a.service-card { cursor: pointer; }

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-light);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg);
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.service-icon-wrap {
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
}

.service-badge {
  position: absolute;
  top: .85rem; left: .85rem;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(232,93,4,.4);
}

.service-card-body {
  padding: 1.65rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon-badge {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,93,4,.08);
  color: var(--orange);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: background var(--t);
}
.service-card:hover .service-icon-badge {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card > .service-card-body > p,
.service-card-body p {
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .87rem;
  color: var(--slate);
}
.service-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .84rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.service-link svg { transition: transform var(--t); }
.service-card:hover .service-link { gap: .6rem; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ==========================================================================
   WHY SECTION (Split layout)
   ========================================================================== */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img-col { position: relative; }
.why-img-stack { position: relative; }
.why-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-orange);
  text-align: center;
  z-index: 1;
}
.why-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
}
.why-img-badge span {
  font-size: .75rem;
  opacity: .85;
}
.why-img-dec {
  position: absolute;
  top: -1rem; left: -1rem;
  width: 80px; height: 80px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: 4px 0 0 0;
  z-index: 0;
  opacity: .5;
}


.why-intro {
  color: var(--slate);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.25rem;
}
.why-feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,93,4,.08);
  color: var(--orange);
  border-radius: 10px;
  transition: background var(--t), color var(--t);
}
.why-feature:hover .why-feature-icon {
  background: var(--orange);
  color: var(--white);
}
.why-feature-text strong {
  display: block;
  font-weight: 700;
  font-size: .97rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.why-feature-text span {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ==========================================================================
   STATS / NUMBERS
   ========================================================================== */
.stats-section {
  background: var(--navy);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 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.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 48px; height: 48px;
  background: rgba(232,93,4,.15);
  color: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-value span { color: var(--orange-light); }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,22,40,.94) 0%,
    rgba(10,22,40,.88) 50%,
    rgba(10,22,40,.75) 100%
  );
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  color: var(--white);
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .6rem;
  line-height: 1.15;
}
.cta-banner-text p {
  color: rgba(255,255,255,.75);
  font-size: 1.02rem;
  max-width: 480px;
  line-height: 1.65;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* CTA Minimal (between sections) */
.cta-minimal {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.cta-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-minimal-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.cta-minimal-text p { font-size: .9rem; color: var(--slate); }
.cta-minimal-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section { background: var(--offwhite-warm); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-md), box-shadow var(--t-md);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step-number {
  width: 54px; height: 54px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(232,93,4,.35);
  position: relative;
  z-index: 1;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 2.7rem;
  left: calc(50% + 27px);
  right: calc(-50% + 27px);
  height: 2px;
  background: linear-gradient(90deg, var(--border-dark), var(--border));
  z-index: 0;
}
.process-step:last-child::before { display: none; }

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.process-step p { font-size: .875rem; color: var(--slate); line-height: 1.6; }
.process-cta { text-align: center; }

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section { background: var(--white); }
.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.reviews-rating-block { display: flex; flex-direction: column; gap: .5rem; }
.rating-stars-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.stars-large { display: flex; gap: 3px; }
.star-icon { font-size: 1.5rem; color: #E5B100; line-height: 1; }
.star-icon.half { opacity: .45; }
.rating-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-meta { font-size: .83rem; color: var(--slate-light); }

.compact-rating-box {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 320px;
  width: 100%;
}
.compact-rating-box .rating-info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.compact-rating-box .rating-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.compact-rating-box .rating-text {
  font-size: .95rem;
  color: var(--slate);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: all var(--t);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232,93,4,.2);
  transform: translateY(-3px);
}
.review-top {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.review-avatar {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.review-stars { color: #E5B100; font-size: .9rem; letter-spacing: 1px; }
.review-source-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--slate-light);
  background: var(--border);
  padding: .18rem .55rem;
  border-radius: 4px;
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}
.review-text {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }
.review-date { font-size: .76rem; color: var(--slate-xlight); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
/* Preview on homepage */
.gallery-preview-section { background: var(--navy); }
.gallery-preview-section .section-label { color: var(--orange-light); }
.gallery-preview-section .section-title { color: var(--white); }
.gallery-preview-section .section-desc { color: rgba(255,255,255,.6); }

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: .75rem;
  margin-bottom: 2rem;
}
.gp-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--navy-light);
}
.gp-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-lg);
}
.gp-item:hover img { transform: scale(1.08); }
.gp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.75) 100%);
  opacity: 0;
  transition: opacity var(--t-md);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay-text {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
}
.gp-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.gp-2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.gp-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gp-4 { grid-column: 5 / 8; grid-row: 2 / 3; }
.gp-5 { grid-column: 8 / 13; grid-row: 2 / 3; }

.gallery-preview-cta { text-align: center; }

/* Full gallery page */
.gallery-masonry {
  columns: 3;
  column-gap: .85rem;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: .85rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
}
.gallery-masonry-item img {
  width: 100%; display: block;
  transition: transform var(--t-lg);
}
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.8) 100%);
  opacity: 0;
  transition: opacity var(--t-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transform: scale(.8);
  transition: transform var(--t-md);
}
.gallery-masonry-item:hover .gallery-zoom-icon { transform: scale(1); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,10,18,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-md);
  backdrop-filter: blur(4px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-height: 85vh;
  max-width: 88vw;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: background var(--t), transform var(--t);
}
.lightbox-close:hover { background: var(--orange); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  font-size: 1.25rem;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover { background: var(--orange); transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { background: var(--orange); transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.4);
  padding: .35rem .85rem;
  border-radius: 100px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t), border-color var(--t);
}
.faq-item.open,
.faq-item:hover { border-color: rgba(232,93,4,.25); }
.faq-item.open { box-shadow: var(--shadow); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: .97rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--t);
}
.faq-question:hover { background: rgba(232,93,4,.03); }
.faq-item.open .faq-question { background: rgba(232,93,4,.04); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  transition: all var(--t);
}
.faq-icon svg { transition: transform var(--t); }
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-md);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .85rem;
  line-height: 1.15;
}
.final-cta-inner p {
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.final-cta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-card);
  color: rgba(255,255,255,.65);
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding: 4.5rem 0 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.footer-logo .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,.35); font-size: .65rem; }
.footer-tagline {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
  color: rgba(255,255,255,.55);
}
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  transition: color var(--t);
}
.footer-contact-quick a:hover { color: var(--orange-light); }
.footer-contact-quick a svg { color: var(--orange); flex-shrink: 0; }

.footer-social { display: flex; gap: .6rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: .5rem .95rem;
  border-radius: var(--radius);
  transition: all var(--t);
}
.social-link:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t), padding-left var(--t);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-contact-col address { display: flex; flex-direction: column; gap: .75rem; }
.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-address-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-address-item strong { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.footer-address-item a { color: rgba(255,255,255,.75); transition: color var(--t); }
.footer-address-item a:hover { color: var(--orange-light); }

.footer-schedule-table { width: 100%; margin-top: .5rem; }
.footer-schedule-table tr td:first-child { color: rgba(255,255,255,.45); font-size: .82rem; padding-bottom: .3rem; }
.footer-schedule-table tr td:last-child { color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; text-align: right; }
.footer-schedule-table .closed { color: #fc8181 !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-inner p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .2;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.95) 0%, rgba(10,22,40,.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange-light); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   CONTENT GRID (inner pages)
   ========================================================================== */
.content-section { padding: var(--section-py) 0; background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}

.content-body h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.25rem 0 .85rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .6rem;
}
.content-body p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: .97rem;
}
.content-body ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.content-body ul li {
  display: flex;
  gap: .65rem;
  font-size: .95rem;
  color: var(--slate);
  align-items: flex-start;
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}
.content-highlight {
  background: rgba(232,93,4,.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.content-highlight p { margin: 0; color: var(--navy); font-weight: 500; }

/* SIDEBAR */
.page-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.sidebar-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.sidebar-card-orange {
  background: var(--orange);
  border-color: var(--orange-dark);
  color: var(--white);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.sidebar-card-orange h3 { color: var(--white); }
.sidebar-contact-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.25rem; }
.sidebar-contact-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.sidebar-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.sidebar-card-orange .sidebar-contact-item svg { color: rgba(255,255,255,.7); }
.sidebar-contact-item strong { display: block; font-size: .75rem; color: var(--slate-light); margin-bottom: 1px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.sidebar-card-orange .sidebar-contact-item strong { color: rgba(255,255,255,.6); }
.sidebar-contact-item a,
.sidebar-contact-item span { font-size: .95rem; color: var(--navy); font-weight: 600; transition: color var(--t); }
.sidebar-card-orange .sidebar-contact-item a,
.sidebar-card-orange .sidebar-contact-item span { color: var(--white); }
.sidebar-contact-item a:hover { color: var(--orange); }
.sidebar-card-orange .sidebar-contact-item a:hover { color: rgba(255,255,255,.75); }

.sidebar-schedule { display: flex; flex-direction: column; gap: .35rem; }
.sidebar-schedule-row { display: flex; justify-content: space-between; font-size: .85rem; }
.sidebar-schedule-row:nth-child(-n+3) { border-bottom: 1px solid var(--border); padding-bottom: .35rem; }
.sidebar-schedule-row span:first-child { color: var(--slate); }
.sidebar-schedule-row span:last-child { font-weight: 700; color: var(--navy); }
.closed-label { color: #e53e3e !important; }

/* Map placeholder */
.map-placeholder {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  gap: .75rem;
  text-align: center;
  padding: 1.5rem;
}
.map-placeholder svg { color: var(--orange); }
.map-placeholder a { color: var(--orange-light); font-weight: 600; transition: color var(--t); }
.map-placeholder a:hover { color: var(--white); }

/* ==========================================================================
   SPLIT SECTIONS
   ========================================================================== */
.split-section { padding: var(--section-py) 0; }
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-img { position: relative; }
.split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.split-img-dec-tl {
  position: absolute;
  top: -1.25rem; left: -1.25rem;
  width: 64px; height: 64px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: 4px 0 0 0;
  opacity: .6;
}
.split-img-dec-br {
  position: absolute;
  bottom: -1.25rem; right: -1.25rem;
  width: 64px; height: 64px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 0 4px 0;
  opacity: .6;
}

.split-content .section-label { justify-content: flex-start; }

/* ==========================================================================
   MOBILE CALL BUTTON
   ========================================================================== */
.mobile-call-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: .6rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(232,93,4,.5);
  z-index: 999;
  white-space: nowrap;
  transition: all var(--t);
  text-decoration: none;
}
.mobile-call-btn:hover {
  background: var(--orange-dark);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 36px rgba(232,93,4,.55);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-left { transform: translateX(-28px); }
.anim-left.visible { transform: translateX(0); }
.anim-right { transform: translateX(28px); }
.anim-right.visible { transform: translateX(0); }
.anim-scale { transform: scale(.95); }
.anim-scale.visible { transform: scale(1); }

.d-50  { transition-delay: .05s; }
.d-100 { transition-delay: .10s; }
.d-150 { transition-delay: .15s; }
.d-200 { transition-delay: .20s; }
.d-250 { transition-delay: .25s; }
.d-300 { transition-delay: .30s; }
.d-350 { transition-delay: .35s; }
.d-400 { transition-delay: .40s; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-orange { color: var(--orange); }
.text-orange-light { color: var(--orange-light); }
.text-white { color: var(--white); }
.text-slate { color: var(--slate); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy { background: var(--navy); }

/* Icon circle */
.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle-orange { background: rgba(232,93,4,.1); color: var(--orange); }
.icon-circle-navy { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--offwhite);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.feature-item:hover { border-color: rgba(232,93,4,.2); box-shadow: var(--shadow-sm); }
.feature-item-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,93,4,.08);
  color: var(--orange);
  border-radius: 8px;
  flex-shrink: 0;
}
.feature-item strong { display: block; font-weight: 700; font-size: .94rem; color: var(--navy); margin-bottom: .15rem; }
.feature-item span { font-size: .87rem; color: var(--slate); line-height: 1.5; }

/* Info grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.info-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--t);
}
.info-card:hover { border-color: rgba(232,93,4,.2); box-shadow: var(--shadow); }
.info-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: .4rem;
}
.info-card p { font-size: .875rem; color: var(--slate); line-height: 1.6; margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr 400px; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .why-inner { gap: 3rem; }
  .split-inner { gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --section-py: 4.5rem; --header-h: 72px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-form-col { max-width: 540px; width: 100%; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-img-badge { bottom: 1rem; right: 1rem; }
  .why-img-dec { display: none; }
  .split-inner { grid-template-columns: 1fr; gap: 2rem; }
  .split-inner.reverse { direction: ltr; }
  .content-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .gallery-preview-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 180px 180px;
  }
  .gp-1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .gp-2 { grid-column: 4 / 7; grid-row: 1 / 2; }
  .gp-3 { grid-column: 4 / 7; grid-row: 2 / 3; }
  .gp-4, .gp-5 { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::before { display: none; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-minimal-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { justify-content: flex-start; }
  .trust-bar-sep { display: none; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(10,22,40,.98);
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    backdrop-filter: blur(12px);
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: .25rem; }
  .main-nav > ul > li > a { padding: .8rem 1rem; font-size: .95rem; }
  .main-nav > ul > li > a::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,.04);
    border: none;
    border-top: none;
    box-shadow: none;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    margin: .25rem 0 .25rem .5rem;
    padding: .25rem .25rem .25rem 0;
  }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .mobile-call-btn { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-phone-wrap { max-width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-title { font-size: 2.75rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }
  .reviews-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .gallery-masonry { columns: 1; }
}

/* ==========================================================================
   AGENCY POLISH OVERRIDES
   Scoped refinements added to keep the existing structure intact.
   ========================================================================== */
:root {
  --ink: #07111f;
  --steel: #eef3f7;
  --mint: #0f766e;
  --premium-line: rgba(255,255,255,.12);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 46%, #ffffff 100%);
}

body::selection {
  background: var(--orange);
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(249,160,58,.45);
  outline-offset: 3px;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-50 { transition-delay: .05s; }
.delay-100 { transition-delay: .1s; }
.delay-150 { transition-delay: .15s; }
.delay-200 { transition-delay: .2s; }
.delay-250 { transition-delay: .25s; }
.delay-300 { transition-delay: .3s; }
.delay-350 { transition-delay: .35s; }

.site-header {
  background: rgba(7,17,31,.94);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner { height: 88px; }
:root { --header-h: 88px; }
.logo { gap: 1rem; }
.logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  padding: 6px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.28), 0 0 0 4px rgba(232,93,4,.08);
}
.logo-icon svg {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.25));
}
.logo-name {
  font-size: 1.85rem;
  letter-spacing: .08em;
}
.logo-sub {
  color: rgba(255,255,255,.68);
  letter-spacing: .14em;
}
.btn-phone {
  padding: .68rem .9rem;
  border-radius: 999px;
  background: rgba(232,93,4,.12);
  border: 1px solid rgba(249,160,58,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-phone:hover {
  background: rgba(232,93,4,.22);
  color: var(--white);
}

.hero {
  min-height: 104vh;
  isolation: isolate;
}
.hero-img {
  object-position: center 44%;
  transform: scale(1.06);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,12,23,.96) 0%, rgba(7,17,31,.9) 36%, rgba(7,17,31,.58) 68%, rgba(7,17,31,.42) 100%),
    linear-gradient(180deg, rgba(7,17,31,.36) 0%, rgba(7,17,31,.8) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(245,247,250,.98));
  pointer-events: none;
}
.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
  gap: clamp(3rem, 6vw, 5.5rem);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.hero-content {
  max-width: 760px;
}
.hero-badge {
  padding: .55rem 1.05rem;
  margin-bottom: 1.85rem;
  color: #ffd6ae;
  background: rgba(232,93,4,.18);
  border-color: rgba(249,160,58,.42);
}
.hero-title {
  font-size: clamp(4.1rem, 8.4vw, 7.8rem);
  line-height: .93;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}
.text-accent,
.hero-title .text-accent {
  color: #ffb15f;
  text-shadow: 0 18px 44px rgba(232,93,4,.28);
}
.hero-subtitle {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  max-width: 620px;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.75rem;
}
.hero-phone,
.hero-phone-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.65rem;
  padding: 1.05rem 1.25rem;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(232,93,4,.98), rgba(192,74,0,.98));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 52px rgba(232,93,4,.28);
}
.hero-phone svg,
.hero-phone-wrap svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  color: var(--white);
}
.hero-phone-copy {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: .24rem;
}
.hero-trust {
  margin: 0 0 2.15rem;
  gap: .7rem;
}
.hero-trust span,
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .52rem .72rem;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .87rem;
}
.hero-trust svg { color: #ffb15f; flex-shrink: 0; }
.hero-btns { gap: 1rem; margin-bottom: 0; }
.hero-btns .btn,
.page-hero-actions .btn {
  min-height: 54px;
}
.hero-form-card {
  border-radius: 20px;
  padding: 2.35rem;
  box-shadow: 0 30px 90px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.1);
}
.hero-form-card::after {
  content: "Contact rapid";
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(10,22,40,.42);
  text-transform: uppercase;
}
.form-card-title {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  min-height: 46px;
  border-color: #d7e0ea;
  background: #fbfdff;
}
.form-group textarea { min-height: 108px; }

.section {
  position: relative;
}
.section-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: clamp(2.1rem, 4.1vw, 3.35rem);
}
.section-desc { font-size: 1.08rem; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.services-grid {
  align-items: stretch;
}
.service-card {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(10,22,40,.08);
}
.service-icon,
.service-icon-large,
.service-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--orange);
  background: rgba(232,93,4,.1);
  margin-bottom: 1rem;
}
.service-icon-large {
  width: 100%;
  min-height: 170px;
  color: rgba(232,93,4,.78);
  background:
    linear-gradient(135deg, rgba(232,93,4,.1), rgba(15,118,110,.08)),
    var(--offwhite);
}
.service-card--primary .service-card-img { min-height: 245px; }
.service-card-img img { min-height: 100%; }

.trust-panel-grid,
.work-types-grid,
.benefit-grid,
.area-grid,
.quick-contact-grid,
.service-detail-grid,
.faq-teaser-grid,
.mini-gallery-grid {
  display: grid;
  gap: 1.25rem;
}
.trust-panel-grid { grid-template-columns: repeat(4, 1fr); }
.work-types-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.area-grid { grid-template-columns: repeat(3, 1fr); }
.quick-contact-grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
.service-detail-grid { grid-template-columns: repeat(2, 1fr); }
.faq-teaser-grid { grid-template-columns: repeat(2, 1fr); }
.mini-gallery-grid { grid-template-columns: 1.2fr .8fr .8fr; }

.premium-card,
.work-card,
.benefit-card,
.area-card,
.faq-teaser-card,
.contact-panel,
.quote-panel {
  background: var(--white);
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 14px;
  padding: 1.55rem;
  box-shadow: 0 16px 38px rgba(10,22,40,.07);
  transition: transform var(--t-md), box-shadow var(--t-md), border-color var(--t-md);
}
.premium-card:hover,
.work-card:hover,
.benefit-card:hover,
.area-card:hover,
.faq-teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232,93,4,.22);
  box-shadow: 0 24px 54px rgba(10,22,40,.11);
}
.premium-card h3,
.work-card h3,
.benefit-card h3,
.area-card h3,
.faq-teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: .55rem;
}
.premium-card p,
.work-card p,
.benefit-card p,
.area-card p,
.faq-teaser-card p {
  color: var(--slate);
  font-size: .94rem;
  line-height: 1.65;
}
.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--orange);
  background: rgba(232,93,4,.1);
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; }

.wide-band {
  padding: var(--section-py) 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,247,250,.96)),
    linear-gradient(135deg, rgba(232,93,4,.06), rgba(15,118,110,.05));
}
.dark-band {
  padding: var(--section-py) 0;
  background:
    linear-gradient(135deg, rgba(7,17,31,.98), rgba(15,30,48,.98));
  color: var(--white);
}
.dark-band .section-title,
.dark-band h2,
.dark-band h3 { color: var(--white); }
.dark-band p,
.dark-band .section-desc { color: rgba(255,255,255,.72); }
.dark-band .work-types-grid { grid-template-columns: repeat(4, 1fr); }
.dark-band .work-card {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.14);
}
.dark-band .work-card h3 { color: var(--navy); }
.dark-band .work-card p { color: var(--slate); }

.quick-cta,
.page-cta {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background:
    linear-gradient(135deg, rgba(7,17,31,.94), rgba(18,37,58,.92)),
    var(--navy);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(7,17,31,.2);
}
.quick-cta::before,
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(232,93,4,.2), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.quick-cta > *,
.page-cta > * {
  position: relative;
  z-index: 1;
}
.quick-cta h2,
.page-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: .75rem;
}
.quick-cta p,
.page-cta p {
  color: rgba(255,255,255,.76);
  max-width: 640px;
}
.quick-cta-actions,
.page-cta-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.why-list,
.check-list,
.number-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10,22,40,.08);
}
.why-list li:last-child,
.check-list li:last-child { border-bottom: 0; }
.why-icon,
.check-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  background: var(--orange);
  font-size: 1.25rem;
  font-weight: bold;
}
.why-list strong,
.check-list strong {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: .16rem;
}
.why-list span,
.check-list span { display: block; color: var(--slate); line-height: 1.55; }
.why-img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(10,22,40,.18);
}

.cta-banner {
  min-height: 360px;
}
.cta-banner-inner {
  gap: 2rem;
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  margin-bottom: .5rem;
}
.cta-banner-inner p { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.process-steps {
  align-items: stretch;
}
.process-step {
  border-radius: 14px;
  border-top: 3px solid rgba(232,93,4,.65);
}
.step-number,
.process-step-number {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(232,93,4,.22);
  margin-bottom: 1rem;
}
.process-connector { display: none; }

.gallery-preview-grid {
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.gallery-item,
.gp-item,
.gallery-full-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-light);
  cursor: zoom-in;
}
.gallery-preview-grid .gallery-item:first-child,
.gallery-item--large {
  grid-column: span 6;
  grid-row: span 2;
}
.gallery-preview-grid .gallery-item:not(:first-child) {
  grid-column: span 3;
}
.gallery-item img,
.gallery-full-item img,
.mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.gallery-item:hover img,
.gallery-full-item:hover img,
.mini-gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.2rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent 30%, rgba(7,17,31,.82) 100%);
  opacity: 0;
  transition: opacity var(--t-md);
}
.gallery-item:hover .gallery-overlay,
.gallery-full-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
  font-weight: 800;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-full-item { aspect-ratio: 4 / 3; }
.gallery-full-item[hidden] { display: none; }

/* Filtre categorii galerie */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.25rem;
}
.gallery-filter-btn {
  appearance: none;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color var(--t-md), background var(--t-md), border-color var(--t-md);
}
.gallery-filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.gallery-filter-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.mini-gallery-item {
  min-height: 230px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(10,22,40,.1);
}
.mini-gallery-item:first-child { min-height: 390px; }
.lightbox > img,
#lightbox-img {
  max-height: 86vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.reviews-grid {
  gap: 1.25rem;
}
.review-card {
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(10,22,40,.07);
}

.page-hero {
  padding: calc(var(--header-h) + 5.8rem) 0 5.4rem;
}
.page-hero-bg img {
  opacity: .38;
  filter: saturate(1.05) contrast(1.02);
}
.page-hero-bg::after {
  background:
    linear-gradient(105deg, rgba(7,17,31,.96) 0%, rgba(7,17,31,.82) 55%, rgba(7,17,31,.58) 100%),
    linear-gradient(180deg, transparent 55%, rgba(7,17,31,.78));
}
.page-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: .98;
}
.page-hero-content p:not(.breadcrumb) {
  font-size: 1.18rem;
}
.breadcrumb span { color: rgba(255,255,255,.62); }

.content-section {
  background:
    linear-gradient(180deg, var(--white), #fbfdff);
}
.content-body h2 {
  font-size: 2rem;
  border-bottom-color: rgba(232,93,4,.22);
}
.content-highlight {
  border-left-width: 4px;
  box-shadow: 0 16px 36px rgba(10,22,40,.06);
}
.sidebar-card {
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(10,22,40,.07);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 14px;
  background: var(--white);
}
.contact-info-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: .12rem;
}
.contact-info-item a,
.contact-info-item span {
  color: var(--navy);
  font-weight: 700;
}

.faq-answer {
  color: var(--slate);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-item.open .faq-answer::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
  margin-bottom: 1rem;
}

.final-cta-section::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(232,93,4,.16), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 20px);
}

.site-footer {
  background: #07111f;
}
.footer-inner {
  grid-template-columns: 1.45fr .85fr .85fr 1.2fr 1.1fr;
  gap: 2rem;
}
.footer-logo .logo-icon {
  width: 54px;
  height: 54px;
}
.footer-logo .logo-name { font-size: 1.65rem; }
.footer-tagline { max-width: 360px; }
.footer-social,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.social-btn,
.footer-action,
.footer-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .62rem 1rem;
  font-size: .84rem;
  font-weight: 800;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform var(--t), background var(--t), color var(--t);
}
.social-btn:hover,
.footer-action:hover,
.footer-map-link:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: rgba(232,93,4,.22);
}
.footer-contact-col address p,
.footer-contact-col address a {
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}
.footer-contact-col address p {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}
.footer-contact-col address svg { color: var(--orange-light); flex-shrink: 0; margin-top: 3px; }
.footer-schedule {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  font-size: .84rem;
}
.footer-schedule strong { color: var(--white); }
.footer-map {
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(135deg, rgba(232,93,4,.22), rgba(15,118,110,.18)),
    #0d1c30;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-map strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer-map p {
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  margin: .45rem 0 1rem;
}

.map-placeholder {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(7,17,31,.94), rgba(18,37,58,.92)),
    var(--navy);
  box-shadow: 0 24px 60px rgba(10,22,40,.14);
}

@media (max-width: 1180px) {
  .header-cta .btn-sm { display: none; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .header-inner { height: 76px; }
  .logo-icon { width: 50px; height: 50px; }
  .logo-icon svg { width: 40px; height: 40px; }
  .logo-name { font-size: 1.55rem; }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }
  .hero-form-col {
    max-width: 620px;
  }
  .trust-panel-grid,
  .work-types-grid,
  .benefit-grid,
  .area-grid,
  .service-detail-grid,
  .faq-teaser-grid,
  .quick-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-gallery-grid { grid-template-columns: 1fr 1fr; }
  .mini-gallery-item:first-child { grid-column: span 2; }
  /* galeria foloseste grid uniform auto-fill, fara suprascrieri de spans */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { top: var(--header-h); }
  .btn-phone { padding: .55rem .72rem; font-size: .78rem; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 4.55rem); }
  .hero-phone,
  .hero-phone-wrap { width: 100%; }
  .hero-phone-link { font-size: clamp(1.55rem, 9vw, 2.1rem); }
  .hero-form-card { padding: 1.6rem; border-radius: 16px; }
  .hero-form-card::after { display: none; }
  .trust-panel-grid,
  .work-types-grid,
  .benefit-grid,
  .area-grid,
  .service-detail-grid,
  .faq-teaser-grid,
  .quick-contact-grid,
  .mini-gallery-grid {
    grid-template-columns: 1fr;
  }
  .mini-gallery-item:first-child { grid-column: auto; min-height: 260px; }
  .gallery-preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-preview-grid .gallery-item,
  .gallery-preview-grid .gallery-item:first-child,
  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .quick-cta-actions,
  .page-cta-actions,
  .cta-banner-btns { flex-direction: column; }
  .quick-cta-actions .btn,
  .page-cta-actions .btn,
  .cta-banner-btns .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { padding: 0 1.1rem; }
  .header-cta { display: none; }
  .logo-sub { display: none; }
  .hero-inner { padding-top: 3rem; padding-bottom: 4.5rem; }
  .hero-trust span { width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .page-hero { padding: calc(var(--header-h) + 4.6rem) 0 4rem; }
  .page-hero-content h1 { font-size: clamp(2.55rem, 14vw, 3.45rem); }
  .premium-card,
  .work-card,
  .benefit-card,
  .area-card,
  .faq-teaser-card,
  .contact-panel,
  .quote-panel { padding: 1.25rem; }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS (ADDED FOR REFINEMENT)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --section-py: 50px;
    --gap: 1.1rem;
  }
  .hero-title { font-size: 3.2rem !important; line-height: 1.1 !important; }
  .section-title { font-size: 1.8rem !important; line-height: 1.15 !important; }
  body { font-size: 15px !important; }
  .mobile-call-btn { max-width: 250px !important; padding: .75rem 1.5rem !important; }
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .hero-btns { gap: 0.75rem; }
  .service-card { padding: 1.25rem !important; }
  .service-card-body { gap: .75rem !important; }
  .work-types-grid, .services-grid, .faq-teaser-grid, .trust-panel-grid, .quick-contact-grid,
  .area-grid, .benefit-grid, .premium-grid, .stats-grid, .pricing-grid, .features-grid, .why-features {
    grid-template-columns: 1fr !important;
  }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr !important; }
  .animate-fade-up { transform: translateY(15px); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem !important; }
  .section-title { font-size: 1.6rem !important; }
  :root { --section-py: 44px; }
}

/* ==========================================================================
   MOBILE OVERFLOW & LAYOUT FIXES (v3 – final refinement)
   Rezolva: grid-uri inline care nu se strang, pagina Contact care iese
   din ecran, butoane lungi, steluta de rating nestilizata.
   Nu schimba culorile sau identitatea vizuala.
   ========================================================================== */

/* Steluta de rating din caseta compacta (homepage) */
.stars-row {
  display: inline-flex;
  gap: 3px;
  justify-content: center;
}
.stars-row .star { font-size: 1.6rem; color: #E5B100; line-height: 1; }
.stars-row .star.half { opacity: .45; }

/* Garantie globala impotriva scroll-ului orizontal */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, iframe, table { max-width: 100%; }

@media (max-width: 768px) {
  /* Toate elementele deja au box-sizing:border-box; fortam elementele
     flex/grid sa poata micsora sub continut (previne overflow orizontal) */
  .header-inner, .hero-inner, .footer-inner, .content-grid,
  .services-grid, .why-inner, .split-inner, .cta-banner-inner,
  .quick-contact-grid, .contact-info-item, .sidebar-contact-item,
  .footer-contact-col address p { min-width: 0; }

  /* ORICE grid scris inline in HTML se strange pe o singura coloana pe
     telefon. Aici se repara Contact, Zone deservite, Despre noi, Cerere oferta. */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Butoane: lasam textul lung (ex: numar de telefon) sa treaca pe randul
     urmator ca sa nu iasa din ecran */
  .btn {
    white-space: normal;
    max-width: 100%;
    height: auto;
    text-align: center;
  }

  /* Textele lungi (email, adresa) se rup corect fara a impinge pagina */
  p, a, span, strong, li, h1, h2, h3, td { overflow-wrap: break-word; }
}

@media (max-width: 480px) {
  /* Pe telefoane mici lasam spatiu si aliniere mai stransa la casete */
  .content-section .container,
  .content-section .container[style] { padding-left: 1.1rem; padding-right: 1.1rem; }
}

/* ==========================================================================
   HERO REFINEMENT (home) – mai putin spatiu gol / alb + formular compact mobil
   ========================================================================== */

/* Hero-ul se muleaza pe continut, fara banda goala/alba mare sub el.
   Afecteaza doar homepage (.hero); paginile interne folosesc .page-hero. */
.hero { min-height: auto; }
.hero-inner { min-height: auto; }
.hero::after { height: 80px; }

/* Pe telefon: formularul din hero devine mic si compact, dar pastreaza
   campurile Nume|Telefon si Localitate|Serviciu pe 2 coloane ca sa ramana scurt.
   Pe PC formularul ramane mare, in dreapta (neschimbat). */
@media (max-width: 768px) {
  .hero-form-card { padding: 1.2rem 1.1rem; border-radius: 14px; }
  .hero-form-card .form-card-title { font-size: 1.3rem; margin-bottom: .2rem; }
  .hero-form-card .form-card-subtitle { font-size: .8rem; margin-bottom: .9rem; }
  .hero-form-card .form-group { margin-bottom: .65rem; }
  .hero-form-card .form-group label { font-size: .72rem; margin-bottom: .22rem; }
  .hero-form-card .form-row { grid-template-columns: 1fr 1fr !important; gap: .55rem; }
  .hero-form-card input,
  .hero-form-card select {
    min-height: 42px;
    padding: .5rem .7rem;
    font-size: .86rem;
  }
  .hero-form-card .form-note { margin-top: .55rem; font-size: .72rem; }
}

/* ==========================================================================
   HERO REVIEWS BADGE (colt hero, click -> recenzii.html)
   ========================================================================== */
.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.6rem;
  padding: .6rem .95rem .6rem .65rem;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  width: fit-content;
  max-width: 100%;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.hero-reviews:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: rgba(249,160,58,.5);
}
.hero-reviews-g {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: #4285F4;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.35rem; line-height: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,.22);
}
.hero-reviews-body { display: flex; flex-direction: column; line-height: 1.15; }
.hero-reviews-stars { color: #FFC107; font-size: .98rem; letter-spacing: 1.5px; }
.hero-reviews-stars .hr-half { opacity: .38; }
.hero-reviews-meta { font-size: .78rem; color: rgba(255,255,255,.82); margin-top: 2px; white-space: nowrap; }
.hero-reviews-meta strong { color: #fff; font-weight: 800; }
.hero-reviews-go {
  display: inline-flex; align-items: center; gap: .32rem;
  margin-left: .45rem; padding-left: .85rem;
  border-left: 1px solid rgba(255,255,255,.18);
  font-size: .8rem; font-weight: 700; color: var(--orange-light);
  white-space: nowrap;
}
.hero-reviews-go svg { transition: transform var(--t); }
.hero-reviews:hover .hero-reviews-go svg { transform: translateX(3px); }

/* ==========================================================================
   RECENZII PAGE – stiluri lipsa + carduri compacte pe telefon
   ========================================================================== */
.reviews-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: .85rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(10,22,40,.08);
}
.reviews-rating-summary .stars-row .star { font-size: 1.35rem; }
.reviews-rating-summary .rating-number { font-size: 1.7rem; color: var(--navy); }
.rating-count { font-size: .92rem; color: var(--slate); }

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-card .review-header > div:not(.review-avatar) { flex: 1; min-width: 0; }
.review-card .review-header strong {
  display: block; font-size: .92rem; font-weight: 700; color: var(--navy);
}
.review-source {
  font-size: .66rem; font-weight: 700; letter-spacing: .03em;
  color: var(--slate-light);
  background: var(--border);
  padding: .2rem .55rem; border-radius: 6px;
  flex-shrink: 0; align-self: flex-start;
}

@media (max-width: 768px) {
  /* Carduri de recenzii mici: cate doua pe rand, ca sa vezi mai multe pe scroll */
  .reviews-grid { grid-template-columns: 1fr 1fr !important; gap: .65rem; }
  .review-card { padding: .85rem .75rem; gap: .45rem; border-radius: 12px; }
  .review-card .review-header { gap: .5rem; }
  .review-card .review-avatar { width: 32px; height: 32px; min-width: 32px; font-size: .82rem; }
  .review-card .review-header strong { font-size: .78rem; line-height: 1.15; }
  .review-stars { font-size: .76rem; letter-spacing: 0; }
  .review-text { font-size: .8rem; line-height: 1.45; }
  .review-date { font-size: .66rem; }
  .review-source { display: none; }
  .reviews-rating-summary { padding: .7rem 1.1rem; gap: .5rem; }
  .reviews-rating-summary .rating-number { font-size: 1.4rem; }
  .rating-count { font-size: .8rem; }
  /* Badge hero compact pe telefon */
  .hero-reviews { margin-top: 1.2rem; gap: .55rem; padding: .5rem .75rem .5rem .5rem; border-radius: 12px; }
  .hero-reviews-g { width: 30px; height: 30px; font-size: 1.1rem; }
  .hero-reviews-stars { font-size: .84rem; }
  .hero-reviews-meta { font-size: .72rem; }
  .hero-reviews-go { font-size: .74rem; padding-left: .6rem; margin-left: .3rem; }
}
