/* =============================================
   FRASAL INFORMATICA — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --orange:       #e8720c;
  --orange-light: #ff9a3c;
  --orange-dark:  #b85a08;
  --dark:         #161008;
  --dark2:        #1e1508;
  --dark3:        #28190a;
  --mid:          #38250e;
  --text:         #f0e6d3;
  --text-muted:   #9e8060;
  --white:        #ffffff;
  --radius:       6px;
  --shadow-orange: 0 8px 40px rgba(232,114,12,.25);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  opacity: .3;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 90px 0; }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: .4rem;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; letter-spacing: 2px; line-height: 1.1;
}
.section-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 1rem 0 2.8rem;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(232,114,12,.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: rgba(232,114,12,.1);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,.45);
}

/* ── BANNER FERIE ── */
.vacation-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 950;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.vacation-banner.phase-notice {
  background: linear-gradient(90deg, var(--dark3), var(--mid));
  border-bottom: 1px solid rgba(232,114,12,.35);
}
.vacation-banner.phase-notice .vacation-banner-text { color: var(--text); }
.vacation-banner.phase-notice .vacation-banner-text strong { color: var(--orange-light); }
.vacation-banner.phase-notice .vacation-banner-text a { color: var(--orange-light); }
.vacation-banner.phase-notice .vacation-banner-close { color: var(--text); }
.vacation-banner[hidden] { display: none; }
.vacation-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 10px 3rem 10px 1.5rem;
  position: relative;
  text-align: center;
}
.vacation-banner-text {
  color: #fff; font-size: .88rem; font-weight: 500; line-height: 1.4;
}
.vacation-banner-text strong { font-weight: 800; }
.vacation-banner-text a {
  color: #fff; text-decoration: underline; text-underline-offset: 2px;
  font-weight: 700;
}
.vacation-banner-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.18); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.vacation-banner-close:hover { background: rgba(255,255,255,.32); }

body.vacation-active .navbar { top: var(--vac-h, 42px); }
body.vacation-active .hero   { padding-top: calc(120px + var(--vac-h, 42px)); }

@media (max-width: 640px) {
  .vacation-banner-inner { padding: 10px 2.4rem 10px 1rem; }
  .vacation-banner-text { font-size: .78rem; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 66px;
  background: rgba(22,16,8,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,114,12,.2);
  display: flex; align-items: center;
}
.navbar .container {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 42px; }
.nav-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--orange); letter-spacing: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-size: .85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  padding: 8px 18px; border-radius: var(--radius);
  font-size: .82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; transition: background .2s;
}
.nav-wa:hover { background: #1ebe5d; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--orange);
  border-radius: 2px; transition: all .3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 40%, rgba(232,114,12,.13) 0%, transparent 68%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,114,12,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,114,12,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 15%, transparent 78%);
}
.hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,114,12,.18) 0%, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-55%);
  pointer-events: none; animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: .6; transform: translate(-50%,-55%) scale(1); }
  50%      { opacity: 1;  transform: translate(-50%,-55%) scale(1.08); }
}
.hero-logo {
  width: 130px; margin-bottom: 2rem; position: relative;
  filter: drop-shadow(0 0 36px rgba(232,114,12,.6));
  animation: fadeDown .8s ease both;
}
.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 700; letter-spacing: 5px; line-height: 1;
  position: relative;
  animation: fadeDown .9s .1s ease both;
}
.hero h1 .accent { color: var(--orange); }
.hero-tagline {
  font-size: clamp(.95rem, 2.5vw, 1.25rem);
  color: var(--text-muted); margin-top: 1rem;
  font-weight: 300; letter-spacing: 2px; position: relative;
  animation: fadeDown 1s .2s ease both;
}
.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 2.5rem; position: relative;
  animation: fadeDown 1s .35s ease both;
}
.hero-badge {
  border: 1px solid rgba(232,114,12,.4);
  background: rgba(232,114,12,.07);
  color: var(--orange-light);
  padding: 6px 18px; border-radius: 2px;
  font-size: .78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.hero-cta {
  display: flex; gap: 1rem; margin-top: 2.8rem; flex-wrap: wrap; justify-content: center;
  position: relative; animation: fadeDown 1s .45s ease both;
}
.hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SERVICES ── */
.services { background: var(--dark2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.service-card {
  background: var(--dark3);
  border: 1px solid rgba(232,114,12,.14);
  border-radius: var(--radius); overflow: hidden;
  transition: all .3s; position: relative;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,114,12,.09) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.service-card:hover {
  border-color: rgba(232,114,12,.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(232,114,12,.18);
}
.service-card:hover::after { opacity: 1; }
.service-img {
  width: 100%; height: 190px; object-fit: cover;
  filter: brightness(.72) saturate(.75); transition: filter .35s;
}
.service-card:hover .service-img { filter: brightness(.9) saturate(1.1); }
.service-body { padding: 1.6rem; }
.service-icon { font-size: 2rem; margin-bottom: .8rem; }
.service-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--orange); letter-spacing: 1px; margin-bottom: 1rem;
}
.service-list li {
  color: var(--text-muted); font-size: .93rem;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 9px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; }

/* ── GALLERY ── */
.gallery { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(232,114,12,.1);
  cursor: pointer;
}
.gallery-item.span2 { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  filter: brightness(.75) saturate(.8);
}
.gallery-item.span2 img { height: 260px; }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.95) saturate(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,16,8,.8) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: 1px;
}
.gallery-overlay p { color: var(--text-muted); font-size: .85rem; }
.gallery-item .zoom-icon {
  position: absolute; top: 12px; right: 12px;
  background: rgba(232,114,12,.85); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .zoom-icon { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,6,2,.94); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute; top: -18px; right: -18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff; border: none;
  font-size: 1.2rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: var(--orange-light); }
.lightbox-caption {
  text-align: center; margin-top: 1rem;
  color: var(--text-muted); font-size: .9rem;
}

/* ── RICONDIZIONATI ── */
.recon { background: var(--dark2); }
.recon-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: center; margin-bottom: 3rem;
  background: var(--dark3); border: 1px solid rgba(232,114,12,.25);
  border-radius: var(--radius); overflow: hidden;
}
.recon-banner-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.recon-banner-content { padding: 2rem 2rem 2rem 0; }
.recon-banner-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem; font-weight: 700; color: var(--orange); margin-bottom: .8rem;
}
.recon-banner-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: .8rem; }
.guarantee-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; }
.g-tag {
  background: rgba(232,114,12,.12); border: 1px solid var(--orange);
  color: var(--orange); padding: 5px 14px;
  border-radius: 3px; font-size: .78rem; font-weight: 700; letter-spacing: 1px;
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-category { }
.cat-header {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--orange);
  letter-spacing: 2px; padding-bottom: .6rem;
  border-bottom: 2px solid rgba(232,114,12,.3);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 8px;
}
.product-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px; margin-bottom: 7px;
  background: var(--dark3); border-radius: 4px;
  border-left: 3px solid transparent; transition: all .2s;
}
.product-row:hover { border-left-color: var(--orange); background: var(--mid); }
.product-name { font-weight: 600; font-size: .93rem; }
.product-name em { color: var(--orange); font-style: normal; }
.product-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--orange-light);
}
.recon-note {
  margin-top: 2rem; padding: 1rem 1.5rem;
  background: rgba(232,114,12,.07); border: 1px solid rgba(232,114,12,.22);
  border-radius: 4px; text-align: center;
  color: var(--text-muted); font-size: .88rem; letter-spacing: .5px;
}
.recon-note strong { color: var(--orange); }

/* ── WHY US ── */
.why { background: var(--dark); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center; padding: 2.2rem 1.5rem;
  border: 1px solid rgba(232,114,12,.1);
  border-radius: var(--radius); background: var(--dark3);
  transition: all .3s;
}
.why-card:hover {
  border-color: rgba(232,114,12,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,114,12,.1);
}
.why-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--orange); opacity: .55; line-height: 1;
}
.why-title { font-size: 1.1rem; font-weight: 700; margin: .6rem 0 .5rem; color: var(--white); }
.why-text { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ── CONTATTI ── */
.contacts { background: var(--dark2); }
.contacts-wrapper {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; background: var(--dark3);
  border: 1px solid rgba(232,114,12,.12); border-radius: var(--radius);
  margin-bottom: 1rem; transition: border-color .2s;
}
.contact-card:hover { border-color: rgba(232,114,12,.4); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 3px;
}
.contact-value { font-size: 1.05rem; font-weight: 600; }
.contact-value a { color: var(--orange); transition: opacity .2s; }
.contact-value a:hover { opacity: .8; }
.map-wrapper {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(232,114,12,.2); height: 100%; min-height: 380px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(232,114,12,.18);
  padding: 2.5rem 1.5rem; text-align: center;
}
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 1rem;
}
.footer-logo img { height: 38px; }
.footer-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--orange); letter-spacing: 3px;
}
.footer p { color: var(--text-muted); font-size: .85rem; margin-top: .4rem; }
.footer a { color: var(--orange); }
.footer-bottom {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem; color: var(--text-muted); opacity: .7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.span2 { grid-column: span 1; }
  .recon-banner { grid-template-columns: 1fr; }
  .recon-banner-content { padding: 0 1.5rem 1.5rem; }
  .contacts-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: rgba(22,16,8,.98); padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(232,114,12,.2);
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-wa span { display: none; }
  .hamburger { display: flex; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .gallery-item.span2 img { height: 220px; }
}

/* ══════════════════════════════════════════
   OFFERTE & PROMOZIONI
══════════════════════════════════════════ */
.offers { background: var(--dark); position: relative; overflow: hidden; }

/* scrolling ticker */
.ticker-wrap {
  background: var(--orange);
  padding: 10px 0; overflow: hidden;
  white-space: nowrap; margin-bottom: 3.5rem;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; padding: 0 2.5rem;
}
.ticker-track span::before { content: '★  '; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.offer-card {
  background: var(--dark3);
  border: 1px solid rgba(232,114,12,.15);
  border-radius: var(--radius); overflow: hidden;
  position: relative; transition: all .3s;
}
.offer-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(232,114,12,.2);
}
.offer-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 3px;
  z-index: 2;
}
.offer-badge.hot { background: #d63031; }
.offer-badge.new { background: #00b894; }
.offer-img {
  width: 100%; height: 170px; object-fit: cover;
  filter: brightness(.7) saturate(.8); transition: filter .35s;
}
.offer-card:hover .offer-img { filter: brightness(.9) saturate(1); }
.offer-body { padding: 1.4rem; }
.offer-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin-bottom: .4rem;
}
.offer-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.offer-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.offer-price-new {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: var(--orange-light);
}
.offer-price-old {
  font-size: 1.1rem; color: var(--text-muted);
  text-decoration: line-through;
}
.offer-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,114,12,.15); border: 1px solid var(--orange);
  color: var(--orange); padding: 8px 18px; border-radius: 4px;
  font-weight: 700; font-size: .85rem; letter-spacing: 1px;
  text-transform: uppercase; transition: all .2s;
}
.offer-cta:hover { background: var(--orange); color: #fff; }

/* countdown timer */
.countdown {
  display: flex; gap: 10px; margin-top: .8rem;
}
.cd-block { text-align: center; }
.cd-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--orange);
  background: var(--dark); padding: 4px 10px;
  border-radius: 4px; min-width: 44px; display: block;
}
.cd-label { font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.cd-sep { font-size: 1.5rem; font-weight: 700; color: var(--orange); align-self: flex-start; padding-top: 4px; }

/* ══════════════════════════════════════════
   ORARI
══════════════════════════════════════════ */
.hours { background: var(--dark2); }
.hours-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.hours-table { width: 100%; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-radius: 5px; margin-bottom: 6px;
  background: var(--dark3); border-left: 3px solid transparent;
  transition: all .2s;
}
.hours-row.today {
  border-left-color: var(--orange);
  background: var(--mid);
}
.hours-row.closed { opacity: .5; }
.hours-day { font-weight: 700; font-size: .95rem; }
.hours-day .today-tag {
  background: var(--orange); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 10px;
  margin-left: 8px; letter-spacing: 1px; text-transform: uppercase;
}
.hours-time { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--orange-light); }
.hours-time.closed-text { color: var(--text-muted); }
.hours-info-box {
  background: var(--dark3); border: 1px solid rgba(232,114,12,.2);
  border-radius: var(--radius); padding: 1.8rem;
}
.hours-info-box h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--orange); margin-bottom: 1rem;
}
.info-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item-label { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.info-item-val { font-size: .95rem; font-weight: 600; line-height: 1.5; }
.info-item-val a { color: var(--orange); }
.status-dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 6px; animation: blink 1.4s ease-in-out infinite;
}
.status-dot.open  { background: #00b894; }
.status-dot.closed-dot { background: #d63031; animation: none; }
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

/* ══════════════════════════════════════════
   MODULO CONTATTO
══════════════════════════════════════════ */
.contact-form-section { background: var(--dark); }
.form-wrapper {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start;
}
.form-intro h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem; font-weight: 700; margin-bottom: .8rem;
}
.form-intro p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.quick-contacts { display: flex; flex-direction: column; gap: .8rem; }
.qc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--dark3);
  border: 1px solid rgba(232,114,12,.1); border-radius: var(--radius);
  transition: border-color .2s;
}
.qc-item:hover { border-color: rgba(232,114,12,.4); }
.qc-icon { font-size: 1.3rem; }
.qc-text { font-size: .92rem; font-weight: 600; }
.qc-text a { color: var(--orange); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3); border: 1px solid rgba(232,114,12,.2);
  border-radius: 4px; padding: 12px 14px;
  color: var(--text); font-family: 'Nunito', sans-serif; font-size: .95rem;
  outline: none; transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8720c' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,114,12,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: .6; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--text-muted); }
.form-note a { color: var(--orange); }

.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.btn-submit {
  background: var(--orange); color: #fff; border: none;
  padding: 14px 36px; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
  box-shadow: var(--shadow-orange);
  display: flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit.loading { opacity: .7; pointer-events: none; }

/* feedback message */
.form-feedback {
  padding: 14px 18px; border-radius: var(--radius);
  font-weight: 600; display: none; margin-top: .5rem;
}
.form-feedback.success { background: rgba(0,184,148,.15); border: 1px solid #00b894; color: #00b894; }
.form-feedback.error   { background: rgba(214,48,49,.12); border: 1px solid #d63031; color: #d63031; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .hours-wrapper  { grid-template-columns: 1fr; }
  .form-wrapper   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(232,114,12,.15);
  border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(232,114,12,.4); }
.faq-q {
  width: 100%; background: var(--dark3);
  border: none; cursor: pointer; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; color: var(--text); font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700; text-align: left; transition: background .2s;
}
.faq-q:hover { background: var(--mid); }
.faq-q[aria-expanded="true"] { color: var(--orange); }
.faq-icon {
  font-size: 1.5rem; font-weight: 300; color: var(--orange);
  flex-shrink: 0; transition: transform .3s;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: var(--dark);
}
.faq-a.open {
  max-height: 200px;
  padding: 16px 20px 20px;
}
.faq-a p { color: var(--text-muted); line-height: 1.7; font-size: .95rem; }
.faq-a strong { color: var(--text); }
