/* ===== FRICAVOYAGE PAGE STYLES ===== */
:root {
  --brand: #0ea5e9;
  --brand-light: #38bdf8;
  --brand-dark: #0c4a6e;
  --brand-mid: #0369a1;
  --brand-pale: #e0f2fe;
  --accent: #0ea5e9;
}

/* ===== HERO ===== */
.fv-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #040d1a 0%, #071832 50%, #0c3a6e 100%);
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.fv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(14,165,233,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(56,189,248,0.08) 0%, transparent 70%);
}

.fv-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Floating dots decoration */
.fv-hero::before {
  content: '✈';
  position: absolute;
  right: 15%;
  top: 25%;
  font-size: 200px;
  opacity: 0.03;
  color: #fff;
  transform: rotate(-30deg);
  pointer-events: none;
}

.fv-hero-content {
  position: relative;
  max-width: 680px;
}

.fv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fv-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.fv-hero h1 span {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== BOARDING PASS VISUAL ===== */
.fv-hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
}

.boarding-pass {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 4px 20px rgba(14,165,233,0.2);
  font-family: 'Inter', system-ui, sans-serif;
}

.bp-header {
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-header-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.bp-header-brand {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}

.bp-plane {
  font-size: 22px;
  opacity: 0.9;
}

.bp-route {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px dashed #e2e8f0;
}

.bp-city {
  flex: 1;
  text-align: center;
}

.bp-code {
  font-size: 30px;
  font-weight: 900;
  color: #0c4a6e;
  letter-spacing: -1px;
  display: block;
}

.bp-city-name {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-arrow {
  font-size: 24px;
  color: #0ea5e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bp-arrow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #0369a1, #0ea5e9);
  border-radius: 2px;
}

.bp-details {
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 2px dashed #e2e8f0;
}

.bp-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
}

.bp-field span {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.bp-tear {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
  margin: -1px 0;
}

.bp-tear::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-top: 2px dashed #e2e8f0;
  z-index: 0;
}

.bp-circle {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #040d1a, #071832);
  border-radius: 50%;
  z-index: 1;
  flex-shrink: 0;
}

.bp-stub {
  padding: 14px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-stub-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
}

.bp-stub-field span {
  font-size: 16px;
  font-weight: 900;
  color: #0369a1;
}

.bp-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ===== PILLARS (3 main services) ===== */
.fv-pillars {
  background: #fff;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-card-1 {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
  color: #fff;
}

.pillar-card-2 {
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
  color: #fff;
}

.pillar-card-3 {
  background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
  color: #fff;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.pillar-emoji {
  font-size: 40px;
  line-height: 1;
}

.pillar-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.pillar-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.pillar-link:hover { gap: 10px; }

/* ===== SERVICES DETAIL ===== */
.fv-services { background: #f0f9ff; }

.fv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fv-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  border: 1.5px solid #bae6fd;
  transition: all 0.3s ease;
}

.fv-service-card:hover {
  border-color: var(--brand-light);
  box-shadow: 0 8px 32px rgba(3,105,161,0.1);
  transform: translateY(-5px);
}

.fv-service-icon {
  width: 54px;
  height: 54px;
  background: var(--brand-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.fv-service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.fv-service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
}

.fv-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fv-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: 100px;
}

/* ===== DESTINATIONS ===== */
.fv-destinations { background: #fff; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.destination-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.destination-card:hover {
  border-color: var(--brand-light);
  box-shadow: 0 6px 20px rgba(3,105,161,0.12);
  transform: translateY(-4px);
}

.dest-flag { font-size: 36px; line-height: 1; }

.dest-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.dest-type {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dest-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--brand-pale);
  color: var(--brand);
}

/* ===== STATS ===== */
.fv-stats {
  background: linear-gradient(135deg, #0c4a6e, #0369a1);
  padding: 80px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: #38bdf8;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== PROCESS ===== */
.fv-process { background: #f0f9ff; }

.fv-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.fv-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-light));
  z-index: 0;
}

.fv-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.fv-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-light) 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(14,165,233,0.3);
}

.fv-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.fv-step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== CTA ===== */
.fv-cta {
  background: linear-gradient(135deg, var(--brand-dark), #0369a1);
  color: #fff;
  text-align: center;
  padding: 96px 5%;
}

.fv-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.fv-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVBAR FRICAVOYAGE ===== */
.navbar-voyage {
  background: rgba(4, 13, 26, 0.97);
}

.navbar-voyage .nav-logo img {
  filter: none;
}

.back-btn-voyage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.back-btn-voyage:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* ===== OVERRIDES shared main.css ===== */
.section-tag { color: var(--brand-light); }
.nav-logo .logo-icon { background: linear-gradient(135deg, var(--brand-mid), var(--brand)); }
.nav-cta:hover { background: var(--brand-light); }
.btn-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 8px 24px rgba(14,165,233,0.35);
}
.contact-item .ci-icon { background: rgba(3,105,161,0.1); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
  border-color: var(--brand-light);
}
.btn-submit {
  background: linear-gradient(135deg, var(--brand-mid), var(--brand));
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  box-shadow: 0 8px 24px rgba(14,165,233,0.3);
}
.scroll-top:hover { background: var(--brand-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .fv-hero-visual { display: none; }
  .destinations-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .fv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fv-process-steps { grid-template-columns: repeat(2, 1fr); }
  .fv-process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fv-hero { padding: 100px 5% 56px; }
  .fv-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .fv-hero p { font-size: 16px; margin-bottom: 28px; }
  .fv-services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .fv-process-steps { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pillars-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
