/* ============================================================
   SEASIDE ESCAPE BIKE RENTAL – STYLE.CSS
   Premium Coastal Tourism Website
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --primary: #003B73;
  --primary-dark: #002954;
  --primary-light: #004d99;
  --secondary: #00B4D8;
  --secondary-light: #48CAE4;
  --accent: #E9D8A6;
  --accent-dark: #d4bc7d;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFD;
  --bg-dark: #003B73;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --green-wa: #25D366;

  --font-display: 'Lora', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 59, 115, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 59, 115, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 59, 115, 0.16);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

details {
  border: none;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
.btn-light:hover,
.btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-wa:hover,
.btn-wa:focus-visible {
  background: #1eba57;
  border-color: #1eba57;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(0, 41, 84, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-wa);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  margin-left: 8px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #1eba57;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      #001a3d 0%,
      #002766 30%,
      #00397a 55%,
      #004b8f 70%,
      #0066a6 85%,
      #007bb8 100%
    );
  background-size: cover;
}

/* Wave texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 60% 60%, rgba(0, 180, 216, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 30% 80%, rgba(233, 216, 166, 0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 25, 65, 0.45) 0%,
    rgba(0, 40, 100, 0.6) 50%,
    rgba(0, 20, 50, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: calc(var(--nav-h) + 32px) 24px 80px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
}

.badge i {
  color: var(--accent);
  font-size: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
  padding: 8px;
  border-radius: 50%;
  transition: color var(--transition);
}

.hero-scroll:hover {
  color: var(--white);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTIONS COMMON
============================================================ */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--light .section-title,
.section-title--light {
  color: var(--white);
}

.section-header--light .section-subtitle,
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.8);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.section-eyebrow--light {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us {
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 59, 115, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 59, 115, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--secondary);
  box-shadow: 0 4px 32px rgba(0, 180, 216, 0.15);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.service-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-visual--city {
  background: linear-gradient(135deg, var(--primary) 0%, #005a9e 100%);
}

.service-visual--ebike {
  background: linear-gradient(135deg, #00637a 0%, var(--secondary) 100%);
}

.service-visual--multiday {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
}

.service-visual--family {
  background: linear-gradient(135deg, #5c4a00 0%, #a07e1e 100%);
}

.service-body {
  padding: 28px 28px 32px;
}

.service-name {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
}

.service-includes li i {
  color: var(--secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.service-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ============================================================
   PRICES
============================================================ */
.prices {
  background: var(--bg-soft);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 40px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(0, 59, 115, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-card--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.price-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.price-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--secondary);
}

.price-card--featured .price-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.price-type {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.price-card--featured .price-type {
  color: var(--white);
}

.price-tagline {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-style: italic;
}

.price-card--featured .price-tagline {
  color: rgba(255, 255, 255, 0.65);
}

.price-list {
  flex: 1;
  margin-bottom: 32px;
  border-top: 1px solid rgba(0, 59, 115, 0.08);
}

.price-card--featured .price-list {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 59, 115, 0.06);
  transition: background var(--transition);
}

.price-card--featured .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-row--highlight {
  border-radius: var(--radius-sm);
  padding: 13px 10px;
  margin: 4px -10px;
  background: rgba(0, 180, 216, 0.07);
  border-bottom-color: transparent !important;
}

.price-card--featured .price-row--highlight {
  background: rgba(233, 216, 166, 0.12);
}

.price-duration {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}

.price-card--featured .price-duration {
  color: rgba(255, 255, 255, 0.75);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.price-card--featured .price-amount {
  color: var(--accent);
}

.price-row--highlight .price-amount {
  font-size: 1.2rem;
}

.price-card .btn {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.prices-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.prices-note i {
  color: var(--secondary);
}

.prices-note a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   VIA VERDE
============================================================ */
.via-verde {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.viaverde-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
}

.viaverde-intro strong {
  color: var(--accent);
}

/* Route stops timeline */
.route-stops {
  position: relative;
  max-width: 680px;
  margin: 0 auto 64px;
}

.route-line {
  position: absolute;
  left: 16px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), rgba(0, 180, 216, 0.2));
}

.route-stop {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.route-stop:last-child {
  margin-bottom: 0;
}

.stop-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.2);
  border: 2px solid var(--secondary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.stop-dot--you {
  background: var(--secondary);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 180, 216, 0.2);
}

.stop-dot--end {
  background: var(--accent);
  border-color: var(--accent);
}

.stop-content {
  padding-top: 4px;
  padding-bottom: 16px;
}

.stop-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.stop-you-badge {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.stop-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* Via Verde stats */
.viaverde-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.vvstat {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  backdrop-filter: blur(8px);
}

.vvstat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.vvstat-label {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Map */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-embed {
  height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   COSTA DEI TRABOCCHI
============================================================ */
.costa {
  background: var(--bg);
}

.costa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.costa-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0, 59, 115, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.costa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.costa-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.costa-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.costa-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   ACCOMMODATION
============================================================ */
.accommodation {
  background: linear-gradient(160deg, #001a3d 0%, var(--primary) 60%, #004d99 100%);
}

.accommodation-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
}

.accommodation-intro strong {
  color: var(--accent);
}

.accommodation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.accomm-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.accomm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.accomm-card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.accomm-visual--sea {
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.5), rgba(0, 180, 216, 0.4));
}

.accomm-visual--coast {
  background: linear-gradient(135deg, rgba(0, 59, 115, 0.5), rgba(37, 211, 102, 0.3));
}

.accomm-visual--relax {
  background: linear-gradient(135deg, rgba(100, 75, 0, 0.5), rgba(233, 216, 166, 0.3));
}

.accomm-card-body {
  padding: 24px 24px 28px;
}

.accomm-card-body h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.accomm-card-body p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 18px;
}

.accomm-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.accomm-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.accomm-features li i {
  color: var(--secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.accommodation-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY (MASONRY)
============================================================ */
.gallery {
  background: var(--bg-soft);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 200px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder i {
  font-size: 2.5rem;
  transition: transform var(--transition);
}

.gallery-placeholder:hover i {
  transform: scale(1.15);
}

.gp-bikes    { background: linear-gradient(135deg, #002766 0%, #00437a 100%); }
.gp-ebike    { background: linear-gradient(135deg, #00637a 0%, #007b96 100%); }
.gp-viaverde { background: linear-gradient(135deg, #1a4a0a 0%, #2d7a12 100%); }
.gp-trabocco { background: linear-gradient(135deg, #5c2e00 0%, #8a4a00 100%); }
.gp-beach    { background: linear-gradient(135deg, #004d6b 0%, #0077a1 100%); }
.gp-accomm   { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.review-card blockquote p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-author div {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  font-size: 0.88rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.review-author span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 59, 115, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 180, 216, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(0, 180, 216, 0.04);
}

.faq-icon {
  color: var(--secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid rgba(0, 59, 115, 0.06);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  padding-top: 16px;
}

.faq-answer a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--primary);
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: linear-gradient(160deg, #001229 0%, var(--primary-dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item-text strong {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-item-text a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-item-text a:hover {
  color: var(--secondary);
}

.contact-item-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #000f25;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 1.6rem;
  color: var(--secondary);
}

.footer-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-logo-sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  max-width: 300px;
}

.footer-brand-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand-link a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours i {
  color: var(--secondary);
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 20px;
}

.footer-address strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.footer-wa-btn {
  font-size: 0.8rem;
  padding: 11px 20px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: waPulse 3s ease-in-out infinite 2s;
}

.wa-float:hover {
  transform: scale(1.1);
  background: #1eba57;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   RESPONSIVE – TABLET (≤1024px)
============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .viaverde-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .costa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accommodation-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-map {
    min-height: 320px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  /* NAV */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 60, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 28px;
    color: var(--white);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* NAV toggle animation */
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HERO */
  .hero-content {
    padding: calc(var(--nav-h) + 24px) 20px 72px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* PRICES */
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    padding: 32px 24px;
  }

  /* VIA VERDE */
  .route-line {
    display: none;
  }

  .route-stop {
    gap: 16px;
    margin-bottom: 24px;
  }

  .viaverde-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .vvstat {
    padding: 20px 12px;
  }

  .vvstat-number {
    font-size: 1.4rem;
  }

  .map-embed {
    height: 280px;
  }

  /* COSTA */
  .costa-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ACCOMMODATION */
  .accommodation-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .accommodation-cta {
    flex-direction: column;
    gap: 12px;
  }

  .accommodation-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* GALLERY */
  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item {
    height: 160px;
  }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CONTACT */
  .contact-cta-buttons {
    flex-direction: column;
  }

  .contact-cta-buttons .btn {
    justify-content: center;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* WA Float */
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤400px)
============================================================ */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .viaverde-stats {
    grid-template-columns: 1fr 1fr;
  }

  .prices-grid {
    gap: 16px;
  }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-scroll {
    animation: none;
  }

  .wa-float {
    animation: none;
  }
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  .site-header,
  .wa-float,
  .hero-actions,
  .contact-cta-buttons,
  .accommodation-cta,
  .footer-wa-btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}