/* ========================================
   PARTENOPE VIAGGI - Stylesheet
   ======================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a5276;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #c0932e;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-hero {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-hero:hover {
  background: #fff;
  color: #1a3a5c;
  border-color: #fff;
}

.btn-primary {
  background: #1a3a5c;
  color: #fff;
}

.btn-primary:hover {
  background: #c0932e;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #1a3a5c;
  border: 2px solid #1a3a5c;
  padding: 10px 28px;
  font-size: 0.8rem;
}

.btn-outline:hover {
  background: #1a3a5c;
  color: #fff;
}

/* --- TITLES --- */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 30px;
}

.title-with-border {
  position: relative;
  padding-bottom: 15px;
}

.title-with-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #c0932e;
}

.section-desc {
  max-width: 750px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s;
}

.header.scrolled,
.header.scrolled-always {
  background: rgba(26, 58, 92, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header .logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
}

.logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo .logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav ul {
  display: flex;
  gap: 30px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c0932e;
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-lang {
  display: flex;
  gap: 10px;
}

.header-lang a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.header-lang a.active {
  color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ========================================
   HERO (Homepage full screen)
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.7), rgba(15, 32, 52, 0.85)),
    url('https://images.unsplash.com/photo-1534008897995-27a23e859048?w=1920') center/cover no-repeat;
  background-color: #1a3a5c;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ========================================
   PAGE HERO (Inner pages)
   ======================================== */
.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(15, 32, 52, 0.9)),
    url('https://images.unsplash.com/photo-1534008897995-27a23e859048?w=1920') center/cover no-repeat;
  background-color: #1a3a5c;
}

.page-hero-dest {
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.75), rgba(15, 32, 52, 0.88)),
    url('https://images.unsplash.com/photo-1515859005217-8a1f08870f59?w=1920') center/cover no-repeat;
  background-color: #1a3a5c;
}

.page-hero-about {
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.75), rgba(15, 32, 52, 0.88)),
    url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?w=1920') center/cover no-repeat;
  background-color: #1a3a5c;
}

.page-hero-contact {
  background:
    linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(15, 32, 52, 0.9)),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920') center/cover no-repeat;
  background-color: #1a3a5c;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.2));
}

.page-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  margin-top: 40px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.page-hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a3a5c, #0f2034);
}

.cta-section .main-title {
  color: #fff;
}

.cta-section .section-desc {
  color: rgba(255,255,255,0.75);
}

.cta-section .title-with-border::after {
  background: #c0932e;
}

/* ========================================
   FEATURES (3 punti di forza)
   ======================================== */
.features {
  padding: 80px 0;
  background: #f9f7f3;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.features-list li {
  text-align: center;
  padding: 0 15px;
}

.features-list h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a3a5c;
  margin-bottom: 20px;
}

.features-list p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.services-grid li {
  background: #f9f7f3;
  padding: 30px 20px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.services-grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-bottom-color: #c0932e;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.services-grid span {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a3a5c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   SERVICES DETAIL (servizi.html)
   ======================================== */
.services-detail {
  padding: 80px 0;
  background: #fff;
}

.service-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid #eee;
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  direction: ltr;
}

.service-block-icon {
  font-size: 3.5rem;
  text-align: center;
  padding-top: 5px;
}

.service-block-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a3a5c;
  margin-bottom: 15px;
}

.service-block-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  margin-bottom: 25px;
}

.service-includes li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0932e;
}

/* ========================================
   DESTINATIONS
   ======================================== */
.destinations {
  padding: 80px 0;
  background: #f9f7f3;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.dest-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.dest-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.dest-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dest-img-placeholder {
  color: rgba(255,255,255,0.3);
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
}

.dest-info {
  padding: 30px;
}

.dest-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a3a5c;
  margin-bottom: 15px;
}

.dest-info h3 span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  margin-top: 5px;
}

.dest-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.dest-specs li {
  flex: 1;
}

.dest-specs .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 3px;
}

.dest-specs .value {
  font-size: 0.85rem;
  color: #555;
}

.dest-desc {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.7;
}

.dest-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f0ede6;
  color: #1a3a5c;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #c0932e;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-top: 10px;
}

/* ========================================
   STORY (chi-siamo.html)
   ======================================== */
.story {
  padding: 80px 0;
  background: #f9f7f3;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-text .main-title {
  text-align: left;
}

.story-text .title-with-border::after {
  left: 0;
  transform: none;
}

.story-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-values h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1a3a5c;
  margin-bottom: 25px;
}

.value-item {
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
  border-left: 3px solid #c0932e;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a3a5c;
  margin-bottom: 5px;
}

.value-item p {
  font-size: 0.9rem;
  color: #666;
}

/* ========================================
   PRESS / RECENSIONI
   ======================================== */
.press {
  padding: 80px 0;
  background: #1a3a5c;
}

.press .main-title {
  color: #fff;
}

.press .title-with-border::after {
  background: #c0932e;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.press-item {
  background: rgba(255,255,255,0.08);
  padding: 35px 30px;
  border-radius: 5px;
  border-left: 3px solid #c0932e;
}

.press-quote {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.press-author {
  color: #c0932e;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ========================================
   PARTNERS
   ======================================== */
.partners {
  padding: 60px 0;
  background: #f9f7f3;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.partner-item {
  padding: 20px 30px;
  background: #fff;
  border-radius: 5px;
  color: #999;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a3a5c, #0f2034);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info {
  color: #fff;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #c0932e;
}

.contact-info h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c0932e;
  margin-top: 25px;
  margin-bottom: 8px;
}

.contact-info p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.contact-info a {
  color: rgba(255,255,255,0.8);
}

.contact-info a:hover {
  color: #c0932e;
}

.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-link {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: #c0932e;
  color: #c0932e !important;
}

/* --- FORM --- */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 40px;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 30px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-field label small {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c0932e;
  background: rgba(255,255,255,0.12);
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: #1a3a5c;
  color: #fff;
}

.form-field textarea {
  resize: vertical;
}

.form-fieldset {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 25px 20px;
  margin-bottom: 20px;
}

.form-fieldset legend {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  padding: 0 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: #c0932e;
  width: 18px;
  height: 18px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ========================================
   MAP SECTION (contatti.html)
   ======================================== */
.map-section {
  background: #f9f7f3;
}

.map-placeholder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  color: #888;
}

.map-placeholder p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 5px;
}

.map-placeholder small {
  font-size: 0.85rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #0d1b2a;
}

.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
}

.footer-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #c0932e;
}

.footer-bottom {
  padding: 25px 0;
}

.footer-left {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-left a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.footer-left a:hover {
  color: #c0932e;
}

.company-info-visible {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ========================================
   POLICY PAGES
   ======================================== */
.policy-content {
  padding: 60px 0 80px;
  background: #fff;
}

.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 25px;
}

.policy-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a3a5c;
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy-content h4 {
  font-size: 1rem;
  color: #1a3a5c;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.policy-content ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 5px;
}

.policy-content a {
  color: #c0932e;
}

.policy-date {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .features-list {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 40px auto 0;
  }

  .press-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 40px auto 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    gap: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block {
    grid-template-columns: 80px 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #0f2034;
    padding: 80px 30px 30px;
    transition: right 0.4s;
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .header-lang {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .page-hero {
    height: 280px;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .page-hero-content p {
    font-size: 0.9rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 30px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-top .content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 25px 20px;
  }

  .contact-social {
    flex-wrap: wrap;
  }

  .partners-logos {
    gap: 20px;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .service-includes li {
    text-align: left;
  }

  .service-block-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .dest-specs {
    flex-direction: column;
    gap: 8px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}

/* ===== Form feedback (contatti) ===== */
.form-feedback {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px solid transparent;
  white-space: pre-wrap;
  word-break: break-word;
}
.form-feedback-success {
  background: #e8f5ee;
  color: #1b6b3a;
  border-color: #a9d8be;
}
.form-feedback-error {
  background: #fdecea;
  color: #8a1f1f;
  border-color: #f1b5b0;
}
.btn-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
