/* =========================================================
   BASE.CSS — Template blank Bootstrap 5
   Definește CSS variables goale + reset minimal
   Adaugă stiluri specifice temei aici, ulterior
   ========================================================= */

:root {
  /* Culori brand — extrase din logo-site.png (roșu pin/text, auriu brânză, negru text) */
  --color-primary:      #C41B05;
  --color-primary-dark: #9C1504;
  --color-secondary:    #1A1A1A;
  --color-accent:       #EBA211;
  --color-accent-light: #F6B637;
  --color-dark:         #1A1A1A;
  --color-text:         #4A4A4A;
  --color-text-muted:   #868e96;
  --color-light:        #FBF6EE;
  --color-border:       #eadfca;
  --color-white:        #ffffff;
  --color-success:      #2f9e44;

  /* Tipografie */
  --font-heading:       'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body:          'Segoe UI', system-ui, sans-serif;

  /* Spacing / radius / shadow */
  --radius-sm:          0.25rem;
  --radius-md:          0.5rem;
  --radius-lg:          0.75rem;
  --shadow-sm:          0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md:          0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:          0 12px 32px rgba(0, 0, 0, 0.10);
}

/* Reset minimal peste Bootstrap 4 */
body {
  font-family: var(--font-body);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
}

/* Link-uri — unitare, roșu brand peste tot în conținut */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover, a:focus {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
/* Excepții intenționate — elemente care nu sunt "link-uri de conținut" */
.btn, .navbar .nav-link, .site-footer a, .btn-call,
.page-banner .breadcrumb a, .pizza-card a, .zona-card a, .oferta-img-item a {
  text-decoration: none;
}

/* Placeholder header/footer */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--color-dark) 0%, #2b1310 55%, #0d0705 100%);
  color: rgba(255, 255, 255, .78);
  padding: 3.5rem 0 0;
  margin-top: 3rem;
  border-top: 3px solid var(--color-accent);
  box-shadow:
    0 -20px 34px -18px rgba(0, 0, 0, .45),
    0 -2px 20px rgba(235, 162, 17, .22);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(500px, 70%);
  height: 3px;
  background: radial-gradient(ellipse at center, rgba(246, 182, 55, .9) 0%, transparent 75%);
  filter: blur(2px);
  pointer-events: none;
}
.site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: var(--color-accent-light); }

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .7rem;
}
.footer-brand::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-right: .5rem;
  box-shadow: 0 0 0 4px rgba(196, 27, 5, .25);
}
.footer-about { font-size: .92rem; line-height: 1.6; max-width: 340px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, transform .15s ease, color .2s ease;
}
.footer-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-heading::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 32px; height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .95rem; }
.footer-links a:hover { padding-left: .25rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
  font-size: .95rem;
}
.footer-contact-item i {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--color-accent-light);
}
.footer-contact-phone {
  font-weight: 700;
  font-size: 1.05rem !important;
  color: #fff;
}
.footer-contact-phone i { background: var(--color-primary); color: #fff; }
.footer-contact-phone:hover { color: var(--color-accent-light); }

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.5rem;
  text-align: center;
}
.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
}
.footer-legal-links a:hover { color: var(--color-accent-light); }

/* Main content area */
main.site-main {
  min-height: 60vh;
  padding: 0 0 2rem;
}

/* Page banner — titlu pagină + breadcrumb, stil premium (brand dark + accent) */
.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-dark) 0%, #2b1310 55%, var(--color-primary-dark) 100%);
  padding: 2.6rem 0 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--color-accent);
}
.page-banner::after {
  content: "\f818";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 .7rem;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  text-transform: lowercase;
  letter-spacing: .02em;
}
.page-banner .breadcrumb-item a:hover { color: var(--color-accent-light); }
.page-banner .breadcrumb-item.active { color: var(--color-accent-light); }

/* Delimitator — săgeată elegantă în loc de "/" */
.page-banner .breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .68rem;
  color: var(--color-accent);
  opacity: .8;
  padding-right: .5rem;
  vertical-align: middle;
}

/* Felie de pizza înaintea fiecărui element din breadcrumb */
.page-banner .breadcrumb-item a span::before,
.page-banner .breadcrumb-item.active span::before {
  content: "\f818";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .68rem;
  color: var(--color-accent);
  margin-right: .35rem;
  vertical-align: middle;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

/* =========================================================
   TEMA PIZZA SECTOR 5
   ========================================================= */

/* Butoane brand — gradient + umbră, fără underline pe link-urile din interior */
.btn {
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus, .btn:active,
a.btn:hover, a.btn:focus, a.btn:active {
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #E0270D 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(196, 27, 5, .35), 0 2px 4px rgba(196, 27, 5, .25);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 27, 5, .45), 0 3px 8px rgba(196, 27, 5, .3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  border: none;
  color: var(--color-dark);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(235, 162, 17, .35), 0 2px 4px rgba(235, 162, 17, .25);
}
.btn-accent:hover, .btn-accent:focus {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D68F0C 100%);
  color: var(--color-dark);
  box-shadow: 0 10px 24px rgba(235, 162, 17, .45), 0 3px 8px rgba(235, 162, 17, .3);
}

.btn-outline-light, .btn-outline-secondary, .btn-outline-primary {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.btn-outline-light:hover, .btn-outline-secondary:hover, .btn-outline-primary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.text-primary-brand { color: var(--color-primary) !important; }
.bg-accent { background: var(--color-accent) !important; }

/* Header — burger stânga / logo centrat / telefon dreapta, meniu pe rândul de dedesubt */
.site-header {
  padding: 1rem 0 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}
.site-header .navbar { padding: 0; }
.site-header .navbar > .container {
  display: flex;
  flex-wrap: wrap;
}
.site-header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  flex: 0 0 100%;
  padding-bottom: .8rem;
}
.site-header .navbar-toggler {
  grid-column: 1;
  justify-self: start;
  border: none;
  padding: .25rem .5rem;
  box-shadow: none !important;
}
.site-header .navbar-brand {
  grid-column: 2;
  justify-self: center;
  margin: 0;
}
.site-header .navbar-brand img { max-height: 68px; }
.site-header-top-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* Rândul de meniu (colaps) */
.site-header .navbar-collapse {
  flex: 0 0 100%;
  border-top: 1px solid var(--color-border);
}
.site-header .navbar-nav { padding: .5rem 0; }
.site-header .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .92rem;
  color: var(--color-dark);
  padding: .55rem 1.1rem !important;
  position: relative;
}
.site-header .nav-link:hover { color: var(--color-primary); }
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: .25rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.site-header .nav-link:hover::after { transform: scaleX(1); }
.site-header .nav-link-home i {
  font-size: 1.05rem;
  color: var(--color-primary);
  transition: transform .2s ease;
}
.site-header .nav-link-home:hover i { transform: rotate(-12deg); }
@media (max-width: 991.98px) {
  .site-header .navbar-brand img { max-height: 48px; }
  .site-header .navbar-nav { padding: .5rem 0 .8rem; }
}
.site-header .btn-call {
  background: linear-gradient(135deg, #E0270D 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: 50px;
  padding: .5rem 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(196, 27, 5, .3);
  transition: transform .15s ease, box-shadow .2s ease;
}
.site-header .btn-call:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(196, 27, 5, .4);
}
.site-header .btn-call i { margin-right: .4rem; }

/* Sticky call button — mobil */
.sticky-call {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1030;
  background: linear-gradient(135deg, #E0270D 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .25);
  display: none;
}
.sticky-call a {
  display: block;
  color: #fff;
  text-align: center;
  padding: .8rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.sticky-call a:hover { color: #fff; text-decoration: none; }
@media (max-width: 767.98px) {
  .sticky-call { display: block; }
  main.site-main { padding-bottom: 4.5rem; }
}

/* Hero / slider */
.hero-slider { position: relative; background: var(--color-dark); }
.hero-slide {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,10,8,.86) 0%, rgba(20,10,8,.55) 55%, rgba(20,10,8,.25) 100%);
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-slide h1, .hero-slide p { color: #fff; }
.hero-slide h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-slide .lead { color: #f1e9de; font-size: 1.15rem; max-width: 560px; }
.hero-slider .carousel-indicators [data-bs-target] { background-color: var(--color-accent); }

/* Săgeți navigare — zonă de click mai îngustă și mai vizibilă */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 12%;
  z-index: 3;
  opacity: .9;
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  background-color: rgba(0, 0, 0, .35);
  border-radius: 50%;
  padding: .5rem;
  background-size: 1.1rem;
}

@media (max-width: 767.98px) {
  .hero-slide { min-height: 300px; }
  /* margini laterale generoase — textul nu mai intră peste zona săgeților */
  .hero-slide .container { padding-left: 3.4rem; padding-right: 3.4rem; }
  .hero-slide .eyebrow { font-size: .72rem !important; }
  .hero-slide h1 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: .5rem;
  }
  .hero-slide .lead { font-size: .85rem; margin-bottom: 0; }
  .hero-slide .mt-4 { margin-top: 1rem !important; }
  .hero-slide .btn-lg {
    font-size: .8rem;
    padding: .5rem 1rem;
  }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 15%;
  }
  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon {
    width: 1.7rem;
    height: 1.7rem;
    background-size: .85rem;
  }
}

/* Section titles */
.section-title {
  text-align: center;
  margin-bottom: 2.2rem;
}
.section-title .eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-bottom: .4rem;
}
.section-title h2 { font-weight: 800; margin: 0; }
.section-title .divider {
  width: 60px; height: 4px; margin: .8rem auto 0;
  background: var(--color-accent);
  border-radius: 2px;
}
section.section-pad { padding: 3.5rem 0; }
section.section-alt { background: var(--color-light); }

/* USP / trust badges */
.usp-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.usp-item { flex: 1 1 200px; text-align: center; }
.usp-item .usp-icon {
  width: 64px; height: 64px; line-height: 64px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 1.6rem;
  margin: 0 auto .8rem;
  border: 2px solid var(--color-accent);
}
.usp-item h5 { margin-bottom: .3rem; font-weight: 700; }
.usp-item p { color: var(--color-text-muted); font-size: .92rem; margin: 0; }

/* Oferte teaser (homepage) */
.oferte-teaser {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.oferte-teaser h3 { color: #fff; margin: 0 0 .3rem; font-weight: 800; }
.oferte-teaser p { margin: 0; color: #ffe9df; }
.oferte-teaser .btn-accent { flex-shrink: 0; }

/* Carduri pizza */
.pizza-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.pizza-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pizza-card .pizza-card-img {
  aspect-ratio: 4/3;
  background: var(--color-light);
  overflow: hidden;
}
.pizza-card .pizza-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pizza-card .pizza-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.pizza-card h3, .pizza-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.pizza-card .pizza-ingr {
  color: var(--color-text-muted);
  font-size: .87rem;
  flex: 1;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pizza-card .pizza-prices {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .7rem;
}
.pizza-card .pizza-prices span {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: .2rem .65rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-dark);
}
.pizza-card .pizza-prices span strong { color: var(--color-primary); }

/* Cutii de preț — pagina individuală de pizza (evidențiate) */
.price-box-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.price-box {
  flex: 1;
  min-width: 100px;
  text-align: center;
  background: var(--color-light);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem .5rem .9rem;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.price-box:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.price-box .price-size {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: .35rem;
}
.price-box .price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.price-box .price-amount small {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-left: .2rem;
}
/* Dimensiunea cea mai mare — ușor evidențiată ca opțiune generoasă */
.price-box.price-box-lg {
  background: linear-gradient(160deg, #fff 0%, var(--color-light) 100%);
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(235, 162, 17, .18);
}
.price-box.price-box-lg .price-amount { color: var(--color-primary-dark); font-size: 1.9rem; }
@media (max-width: 575.98px) {
  .price-box { min-width: 88px; padding: .8rem .3rem .7rem; }
  .price-box .price-amount { font-size: 1.4rem; }
  .price-box.price-box-lg .price-amount { font-size: 1.55rem; }
}

/* Carduri zonă livrare */
.zona-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  height: 100%;
  background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.zona-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.zona-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.zona-card .zona-meta { font-size: .87rem; color: var(--color-text-muted); margin-bottom: .8rem; }
.zona-card .zona-meta strong { color: var(--color-dark); }

/* Info box livrare (pagină zonă) */
.zona-info-box {
  background: var(--color-light);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.zona-info-box .zona-info-item { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.zona-info-box .zona-info-item i { color: var(--color-primary); width: 20px; text-align: center; }

/* Listă străzi/repere acoperite — pagina de zonă */
.list-streets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  columns: 2;
  column-gap: 2rem;
}
.list-streets li {
  break-inside: avoid;
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
  font-size: .92rem;
  color: var(--color-text);
}
.list-streets li::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: .35rem;
  font-size: .78rem;
}
@media (max-width: 575.98px) {
  .list-streets { columns: 1; }
}

/* Zone tree — pagina categorie "Zone de livrare" */
.zone-tree-note {
  background: var(--color-light);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

/* Recenzii */
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  height: 100%;
}
.review-card .stars { color: var(--color-accent); margin-bottom: .5rem; letter-spacing: 2px; }
.review-card p { color: var(--color-text); font-style: italic; }
.review-card .review-author { font-weight: 700; color: var(--color-dark); font-style: normal; margin-top: .6rem; }
.reviews-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Contact vizibil (homepage) */
.contact-strip {
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-strip h3 { color: #fff; }
.contact-strip .contact-item { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.contact-strip .contact-item i {
  width: 42px; height: 42px; line-height: 42px; text-align: center;
  background: var(--color-primary); border-radius: 50%; flex-shrink: 0;
}
.contact-strip a { color: #fff; text-decoration: none; }
.contact-strip a:hover { color: var(--color-accent); }

/* Oferte — listă verticală de imagini */
.oferte-img-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 900px;
  margin: 0 auto;
}
.oferta-img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.oferta-img-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.oferta-img-item img {
  width: 100%;
  display: block;
}
