* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0f0f0f;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* JET GRID */
.jet-grid {
  display: flex;
  gap: 20px;
}

.jet-card {
  flex: 1;
  background: #000;
  padding: 16px;
  text-align: center;
}

.jet-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
/* =========================
   RESET STRUTTURA BASE
   ========================= */

section {
  width: 100%;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   JET CARDS
   ========================= */

.jet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.jet-card {
  background: #000;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.jet-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* =========================
   SERVICES (Private Jet / Helicopter / Yacht)
   ========================= */

.services .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.service-card {
  background: #000;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.service-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
}
/* ============================= */
/* WHY ONETOLUXURYMOBILITY – FIX */
/* ============================= */

.why-us {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.why-header {
  max-width: 800px;
  margin: 0 auto 80px;
}

.why-header h2 {
  font-size: 42px;
  color: #c6a667;
  margin-bottom: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  background: linear-gradient(180deg, #121212, #191919);
  padding: 40px 30px;
  border-radius: 18px;
}

.why-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.why-item p {
  font-size: 15px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================= */
/* LUXURY REFINEMENT – COMPACT  */
/* ============================= */

/* Spazi verticali sezioni */
.jets,
.services,
.why-us {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Jet cards – più compatte */
.jet-grid {
  gap: 28px;
}

.jet-card {
  padding: 22px;
}

/* Services – stessa densità dei jet */
.services {
  gap: 28px;
}

/* Titoli sezione */
.jets h2,
.services h2,
.why-us h2 {
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Testi descrittivi */
.jets p,
.services p {
  opacity: 0.85;
}
/* ============================= */
/* FIX SPAZIO TRA JET E SERVICES */
/* ============================= */

/* Riduce lo spazio sopra la sezione Services */
.services {
  margin-top: -40px;
}
/* ============================= */
/* CARD HOVER – LUXURY EFFECT    */
/* ============================= */

.jet-card,
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jet-card:hover,
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}
/* ============================= */
/* CTA BUTTON – LUXURY STYLE    */
/* ============================= */

.service-card .cta-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 32px;
  border: 1px solid #c6a667;
  border-radius: 30px;
  background: transparent;
  color: #c6a667;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover bottone */
.service-card .cta-button:hover {
  background: #c6a667;
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198,166,103,0.35);
}
/* ============================= */
/* MICRO GLOW – LUXURY HOVER     */
/* ============================= */

.jet-card:hover,
.service-card:hover {
  box-shadow:
    0 25px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(198,166,103,0.25),
    0 0 30px rgba(198,166,103,0.12);
}

/* Micro glow bottone */
.service-card .cta-button:hover {
  box-shadow:
    0 12px 30px rgba(198,166,103,0.35),
    0 0 18px rgba(198,166,103,0.25);
}
/* ============================= */
/* EASE OUT CINEMATIC HOVER      */
/* ============================= */

.jet-card,
.service-card {
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.jet-card:hover,
.service-card:hover {
  transform: translateY(-10px);
}
/* ============================= */
/* DELAY CARD → BUTTON          */
/* ============================= */

.jet-card .cta-button,
.service-card .cta-button {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease-out,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
}

/* quando hover sulla card */
.jet-card:hover .cta-button,
.service-card:hover .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s; /* 🎯 micro delay */
}
/* ============================= */
/* MICRO GLOW CTA – PREMIUM     */
/* ============================= */

.jet-card:hover .cta-button,
.service-card:hover .cta-button {
  box-shadow: 
    0 0 0 rgba(191,167,106,0),
    0 12px 32px rgba(191,167,106,0.35);
}
/* ============================= */
/* CTA HOVER – CONTROLLO        */
/* ============================= */

.cta-button {
  transition:
    background-color 0.35s ease-out,
    color 0.35s ease-out,
    box-shadow 0.35s ease-out,
    transform 0.35s ease-out;
}

.cta-button:hover {
  background-color: #bfa76a;
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(191,167,106,0.45);
}
/* ============================= */
/* IMAGE MICRO ZOOM             */
/* ============================= */

.jet-card img,
.service-card img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.jet-card:hover img,
.service-card:hover img {
  transform: scale(1.035);
}
/* ============================= */
/* DISABLE HOVER ON MOBILE      */
/* ============================= */

@media (hover: none) {
  .jet-card:hover,
  .service-card:hover {
    transform: none;
  }

  .jet-card:hover img,
  .service-card:hover img {
    transform: none;
  }

  .jet-card:hover .cta-button,
  .service-card:hover .cta-button {
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
}
/* ============================= */
/* HERO SECTION – FINAL          */
/* ============================= */

.hero {
  height: 100vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/hero/hero-luxury-mobility.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .container {
  max-width: 900px;
}
/* HERO TEXT COLORS */
.hero .lang-en {
  color: #ffffff;
}

.hero .lang-it {
  color: #C6A667; /* oro elegante */
}

/* opzionale: leggera differenza visiva */
.hero h1.lang-it {
  font-weight: 600;
}

.hero h1.lang-en {
  font-weight: 700;
}
/* RESET POSIZIONE TITOLO HERO */
.hero .lang-en {
  margin-top: 0;
  margin-bottom: 20px; /* distanza pulita dal sottotitolo */
}
/* DISTANZA TRA SOTTOTITOLO IT E DESCRIZIONE */
.hero .lang-it {
  margin-bottom: 80px; /* regola fine */
}
@media (max-width: 768px) {
  .hero .lang-it {
    margin-bottom: 40px;
  }
}
/* HERO MICRO FADE IN */
.hero h1,
.hero p {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeIn 0.9s ease-out forwards;
}

/* delay progressivo */
.hero .lang-en {
  animation-delay: 0.2s;
}

.hero .lang-it {
  animation-delay: 0.4s;
}

.hero p.lang-en,
.hero p.lang-it {
  animation-delay: 0.6s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p.lang-en {
  margin-top: 0;
}

/* SOTTOTITOLO LEGGERMENTE STACCATO */
.hero .lang-it {
  margin-top: 0;
}

/* SOTTOTITOLO LEGGERMENTE STACCATO */
.hero .lang-it {
  margin-top: 0;
}
/* ============================= */
/* WHY ONETO – LUXURY CLEAN     */
/* ============================= */

.why-us {
  padding: 120px 0;
  background: radial-gradient(circle at top, #141414, #0b0b0b);
}

.why-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10%;
  text-align: center;
}

.why-us h2 {
  font-size: 42px;
  color: #c6a667;
  margin-bottom: 70px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* CARD */
.why-item {
  background: linear-gradient(180deg, #121212, #191919);
  padding: 38px 28px;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.why-item h3 {
  color: #c6a667;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-us h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
.why-item .en {
  display: block;
  color: #ffffff;
}

.why-item .it {
  display: block;
  margin-top: 6px;
  color: #c6a667;
  font-size: 0.95em;
  opacity: 0.95;
}
.text-en {
  color: #ffffff;
}

.text-it {
  color: #c6a667;
  margin-top: 6px;
  font-size: 0.9em;
  opacity: 0.95;
}
@media (max-width: 768px) {

  .section-title .text-en {
    font-size: 22px;
  }

  .section-title .text-it {
    font-size: 16px;
    margin-top: 6px;
  }

  .section-title {
    margin-bottom: 28px;
  }

}
/* TITOLI CARD JET */
.jet-card h3 {
  color: #C6A667; /* oro elegante */
}

/* TITOLI SERVICE CARD */
.service-card h3 {
  color: #C6A667; /* stesso oro */
}
@media (max-width: 768px) {
  .jets h2 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 30px;
  }
}
/* SPAZIATURA TESTI CARD */
.jet-card h3,
.service-card h3 {
  margin-bottom: 12px;
}

.jet-card p,
.service-card p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* testo italiano (oro) */
.jet-card .lang-it,
.service-card .lang-it {
  margin-top: 10px;
  line-height: 1.5;
  opacity: 0.9;
}
/* CONTACT SECTION */
.contact {
  padding: 120px 20px;
  background: #0b0b0b;
  text-align: center;
}

.contact h2.lang-en {
  color: #fff;
  font-size: 36px;
  margin-bottom: 6px;
}

.contact h2.lang-it {
  color: #C6A667;
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

/* FORM */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: #0d0d0d;
  border: 1px solid rgba(198,166,103,0.25);
  padding: 14px 16px;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.cta-button {
  margin-top: 20px;
  background: transparent;
  border: 1px solid #C6A667;
  color: #C6A667;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

.cta-button:hover {
  background: rgba(198,166,103,0.12);
  box-shadow: 0 0 30px rgba(198,166,103,0.25);
  transform: translateY(-2px);
}
.contact {
  animation: fadeUp 0.9s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CONTACT FORM */
.contact-form {
  margin-top: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 520px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group .lang-en {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.form-group .lang-it {
  color: #C6A667;
  font-size: 12px;
  margin-bottom: 4px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
}

.form-note.lang-it {
  color: #C6A667;
}
.contact-intro.lang-it {
  color: #C6A667; /* oro elegante */
}
.cta-button {
  background: transparent;
  border: 1px solid #C6A667;
  color: #C6A667;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 
    transform 0.45s ease-out,
    box-shadow 0.45s ease-out,
    background 0.45s ease-out,
    color 0.45s ease-out;
}

.cta-button:hover {
  transform: translateY(-4px);
  background: rgba(198, 166, 103, 0.08);
  box-shadow: 0 0 18px rgba(198, 166, 103, 0.35);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  transition: 
    border-color 0.35s ease-out,
    box-shadow 0.35s ease-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C6A667;
  box-shadow: 0 0 10px rgba(198, 166, 103, 0.25);
}
.cta-button {
  transition-delay: 0.08s;
}
/* CONTACT NOTES */
.form-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 14px;
}

.form-note.lang-it {
  color: #c6a667;
}

/* TRUST EXTRA */
.trust-extra {
  padding: 40px 0 80px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.trust-item p {
  margin: 4px 0;
}

.trust-en {
  color: #ffffff;
  font-size: 0.95rem;
}

.trust-it {
  color: #c6a667;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}/* TRUST ICONS */
.trust-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: #c6a667;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

/* allineamento elegante */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* MICRO FADE-IN TRUST ICONS */
.trust-item {
  opacity: 0;
  transform: translateY(12px);
  animation: trustFade 0.9s ease-out forwards;
}

/* delay progressivo */
.trust-item:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-item:nth-child(2) {
  animation-delay: 0.25s;
}

/* keyframes */
@keyframes trustFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* TRUST – HOVER LUXURY */
.trust-item {
  transition: 
    transform 0.35s ease-out,
    box-shadow 0.35s ease-out;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(198, 166, 103, 0.25);
}
/* ============================= */
/* FOOTER – LUXURY FINAL        */
/* ============================= */

.site-footer {
  background: #080808;
  padding: 120px 0 60px; /* più respiro sopra e sotto */
  color: #cfcfcf;
}

/* contenitore centrato */
.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 100px;
  max-width: 1100px;   /* 🔑 guida visiva */
  margin: 0 auto 80px; /* 🔑 centro reale */
}
.footer-links {
  text-align: center;
}
.footer-brand {
  text-align: center;
}
.site-footer {
  padding-top: 160px;
}
@media (min-width: 1024px) {
  .footer-brand {
    text-align: left;
  }
}
/* brand */
.footer-brand h3 {
  color: #c6a667;
  font-size: 22px;
  margin-bottom: 18px;
}

.footer-en {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-it {
  font-size: 13px;
  color: #c6a667;
  opacity: 0.9;
  line-height: 1.6;
}

/* titoli colonne */
.footer-links h4,
.footer-trust h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* liste */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* trust */
.footer-trust p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
}
/* 🔒 FIX AREA INVISIBILE TRUST */
.trust-extra > .container {
  width: auto;
  max-width: none;
  display: inline-block;
}

.trust-extra > .container {
  width: auto;
  max-width: none;
  display: inline-block;
}
/* ============================= */
/* TRUST EXTRA – FIX DEFINITIVO */
/* ============================= */

.trust-extra .container {
  max-width: 700px;
  margin: 0 auto;
}

.trust-grid--small {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.trust-item {
  width: 260px;
  text-align: center;
}

.trust-en {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 6px;
  white-space: nowrap;
}

.trust-it {
  font-size: 14px;
  color: #c6a667;
  opacity: 0.9;
}

/* mobile */
@media (max-width: 480px) {
  .trust-grid--small {
    flex-direction: column;
    gap: 40px;
  }

  .trust-en,
  .trust-it {
    white-space: normal;
  }
}

/* FOOTER TITLES – GOLD FIX */
.footer-links h4,
.footer-trust h4 {
  color: #c6a667; /* oro elegante */
}
.footer-en,
.footer-links li,
.footer-trust p {
  opacity: 0.8;
}
.footer-it {
  opacity: 0.85;
}

@keyframes footerFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/* MOBILE SPACING – LUXURY FIX  */
/* ============================= */

@media (max-width: 768px) {

  section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* HERO leggermente più compatto */
  .hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* Titoli meno distanti */
  h2 {
    margin-bottom: 24px !important;
  }

  /* Grid più compatte */
  .jet-grid,
  .services .container,
  .why-grid,
  .trust-grid,
  .footer-grid {
    gap: 32px !important;
  }

  /* Contact più raccolta */
  .contact {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  /* Footer meno “pesante” su mobile */
  .site-footer {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

}

h1, h2 {
  letter-spacing: 0.04em;
}

h2 {
  font-weight: 500;
}
.lang-en {
  line-height: 1.55;
}

.lang-it {
  line-height: 1.45;
}
p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 1.55;
  }
}
.jet-card h3,
.service-card h3,
.why-item h3 {
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.trust-en {
  letter-spacing: 0.02em;
}

.trust-it {
  letter-spacing: 0.01em;
}
.footer-en,
.footer-links li,
.footer-trust p {
  line-height: 1.6;
}

.footer-it {
  line-height: 1.55;
}
::selection {
  background: rgba(198,166,103,0.25);
  color: #fff;
}
/* ============================= */
/* LINK COLOR – LUXURY GOLD FIX */
/* ============================= */

a {
  color: #C6A667;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* ============================= */
/* HERO – BRAND CENTERED LUXURY */
/* ============================= */

.hero {
  min-height: 100vh;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.55)
    ),
    url("../images/hero/hero-luxury-mobility.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;}

/* LOGO */
.hero-logo {
  margin-bottom: 32px;
}

.hero-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.65));
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    background-size: 95%;
  }

  .hero-logo img {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-size: cover;
  }
}
.hero h1.lang-en {
  white-space: nowrap;
}
.hero-content {
  position: relative;
  top: 0;
  transform: translateY(0);
}
.hero-content {
  margin-top: 60px;
}
/* HERO – PYRAMIDAL TYPOGRAPHY */
.hero-content h1.lang-en {
  max-width: 1000px;
}

.hero-content h1.lang-it {
  max-width: 760px;
}

.hero-content p.lang-en,
.hero-content p.lang-it {
  max-width: 620px;
}
.hero-content h1,
.hero-content p {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-content h1.lang-en,
  .hero-content h1.lang-it,
  .hero-content p {
    max-width: 100%;
  }
}
.services-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* QUESTO è il centro vero */
  justify-content: center;
  margin: 80px auto 0;
  text-align: center;
  padding: 0 24px;
}
/* ============================= */
/* CTA BUTTON – MASTER FIX      */
/* ============================= */

.cta-button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid #C6A667;
  color: #C6A667;
  outline: none;
}

/* hover coerente ovunque */
.cta-button:hover {
  background: rgba(198,166,103,0.10);
  color: #C6A667;
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(198,166,103,0.35);
}

/* 👇 QUESTO È IL FIX CHIAVE */
.cta-button:active {
  background: rgba(198,166,103,0.10); /* identico all’hover */
  color: #C6A667;
  transform: translateY(-1px); /* micro pressione */
  box-shadow: 0 0 12px rgba(198,166,103,0.25);
}

/* niente effetti strani al focus */
.cta-button:focus {
  outline: none;
}
/* ============================= */
/* CTA – SERVICE CARD (PRIMARY) */
/* ============================= */

.service-card .cta-button {
  background: #C6A667;
  color: #0f0f0f;
  border: 1px solid #C6A667;
  box-shadow: 0 12px 30px rgba(198,166,103,0.35);
}

/* hover elegante, NON cambia stile */
.service-card .cta-button:hover {
  background: #C6A667;
  color: #0f0f0f;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(198,166,103,0.45);
}

/* click premium */
.service-card .cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(198,166,103,0.35);
}
/* ============================= */
/* CTA PRIMARY – SERVICE CARDS  */
/* ============================= */

.cta-primary {
  background: #C6A667;
  color: #0f0f0f;
  border: 1px solid #C6A667;
  box-shadow: 0 12px 30px rgba(198,166,103,0.35);
}

.cta-primary:hover {
  background: #C6A667;
  color: #0f0f0f;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(198,166,103,0.45);
}

.cta-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(198,166,103,0.35);
}
.contact-form {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
/* FIX DEFINITIVO CONTACT FORM – FORCE CENTER */
.contact-form {
  max-width: 520px !important;
  margin: 40px auto 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 26px !important;
}