
/* ===== Regional impact card ===== */
.impact-card{
  /* size + centring */
  max-width:760px;              /* ≈48 rem – adjust to taste            */
  margin:2.5rem auto;           /* even space above & below, centred    */

  /* look & feel */
  background:#ecfdf5;           /* soft emerald tint                    */
  border-left:4px solid #059669;
  padding:24px;
  border-radius:12px;
  box-shadow:0 1px 4px rgba(0,0,0,.08);

  /* layout: icon + copy */
  display:flex;
  align-items:flex-start;
  gap:12px;

  /* make sure no wrapper forces silly height */
  min-height:auto;
}

/* mobile: stack icon above copy */
@media (max-width:767px){
  .impact-card{flex-direction:column;}
}

/* icon */
.impact-icon{
  width:24px;height:24px;
  flex:0 0 24px;               /* fixes ballooning                      */
  fill:#059669;
}

/* copy block */
.impact-copy h4{
  margin:0 0 4px;
  font:600 1rem/1.4 "Playfair Display",serif;
  color:#064e3b;
}
.impact-copy p{
  margin:0;
  font:14px/1.6 Georgia,serif; /* or your body font                     */
}
.impact-copy a{
  color:#047857;
  text-decoration:underline;
  font-weight:500;
}

/* ===================
   Ferasaltu Global Styles
   =================== */

/* Layout & Typography */

body {
  font-family: 'Playfair Display';
  margin: 0;
  background: #f5f5f5;
  color: #333;
  padding-bottom: 80px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.section {
  margin: 40px 0;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in;
}

/* Hero Section */
.header {
  background: url('your-hero-image.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.header h1 {
  font-size: 3rem;
  margin: 0;
  font-family: 'Playfair Display';
  
}

.header p {
  font-size: 1.5rem;
  margin: 10px 0;
  font-family: 'Playfair Display';
}
.strip-icon {
  width: 266px; /* slightly reduced from 450px */
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.5));
  transition: transform 0.3s ease;
}
.strip-icon:hover {
  transform: scale(1.02);
}

/* Mobile breakpoints */
@media (max-width: 768px) {
  .strip-icon {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .strip-icon {
    width: 220px;
  }
 
}


.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
      max-width: 80%;
  flex: 1;
  }

  .mobile-only {
    display: inline;
      max-width: 80%;
  flex: 1;
  }
}
.language-switcher {
  position: absolute;
  right: 16px;
  top: 10px;
  font-size: 0.85rem;
  font-family: 'Playfair Display', serif;
}

.language-switcher a {
  color: #333;
  text-decoration: none;
  margin: 0 4px;
}

.language-switcher a:hover {
  text-decoration: underline;
}
/* === URGENCY BAR NAVIGATION === */
.urgency-bar-alt {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #f4f1ed;
  width: 100%;
  display: flex;
  flex-direction: row; /* CHANGED from column to row */
  align-items: center; /* Vertically center logo and text */
  justify-content: space-between;
  padding: 12px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}
.header-alt {
  padding-top: 80px;
}

@media (max-width: 768px) {
  .urgency-bar-alt {
    padding: 10px 16px;
  }

  .header-alt {
    padding-top: 60px;
  }
}
.urgency-bar {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #f4f1ed;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.urgency-logo {
  width: 28px;
  height: 28px;
  vertical-align: middle;
}

/* Toggle (☰ icon) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Toggle animation to "X" */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* NAV LINKS */
.nav-links {
  max-height: flex;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  padding-top: 10px;
  font-family: 'Playfair Display';
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  padding: 4px 10px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-bottom 0.2s ease;
  flex-shrink: 0;
  font-family: 'Playfair Display';
}

.nav-links a:hover {
  color: #045d56;
  border-bottom: 2px solid #045d56;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  max-height: 400px;
}
@media (max-width: 768px) {
  .urgency-bar {
    padding: 10px 16px;
  }

  .nav-container {
    display: flex;
    flex-direction: row;               /* force horizontal */
    justify-content: space-between;   /* logo left, menu right */
    align-items: center;
    width: 100%;
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-family: 'Playfair Display';
    flex: 1;
  }

  .urgency-logo {
    width: 24px;
    height: 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }
}
/* Optional: Pulse animation for logo */
@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.92;
  }
}

/* Buttons */
.btn-main {
  background: transparent;
  color: white;
  padding: 12px 28px;
  font-family: 'Playfair Display';
  font-size: 1.2rem;
  border: 2px solid white;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-main:hover {
font-family: 'Playfair Display';
  background: white;
  color: #333;
}

/* Lead Form Modal */
.lead-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lead-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 1rem;
}

/* Base Floating Button Styles */
.float-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.4s ease;
  transform: translateY(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
}

/* Show Animation */
.float-button.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery img {
  max-width: 300px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

/* Image Effects */
.hover-zoom {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-zoom:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.cta-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f4f1ed;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 9999;
}
.cta-mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: #333;
  text-decoration: none;
  font-family: 'Playfair Display';
}
.cta-mobile-bar i {
  font-size: 1.4rem;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .cta-mobile-bar {
    display: flex;
  }
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.cta-button {
  background: #333;
  color: #fff;
  font-family: 'Playfair Display', serif;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  border: 2px solid transparent;
}

.cta-button:hover {
  background: white;
  color: #333;
  border: 2px solid #333;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-button i {
  font-size: 1.2rem;
}.action-panel {
  background: #f4f1ed; /* soft parchment tone */
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin: 40px auto;
  max-width: 700px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  animation: fadeInUp 0.8s ease-out forwards;
}

.action-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #333;
  font-family: 'Playfair Display';
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Playfair Display';
}

.action-buttons a,
.action-buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.action-buttons a.whatsapp {
  background-color: #25d366;
  color: white;
}

.action-buttons button.schedule {
  background-color: #333;
  color: white;
}

.action-buttons button.request-info {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
}

.action-buttons a:hover,
.action-buttons button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

 #contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

 .submit-button {
  background-color: #6a2cc9;
  color: white;
  padding: 14px 28px;
  font-family: 'Playfair Display';
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
  background-color: #5a23b1;
  transform: translateY(-2px);
}

  @media screen and (max-width: 600px) {
    #contact-form {
      padding: 10px;
    }
  }
  .form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: 'Playfair Display';
  font-size: 0.95rem;
  color: #444;
  flex-wrap: wrap;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #25d366; /* WhatsApp green or your brand */
}
.route {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 2s ease-out forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
 .timeline {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
  border-left: 2px solid #ccc;
}

.timeline::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  background-color: #ccc;
  animation: fadeLine 1.5s ease-out forwards;
  height: 100%;
}

.timeline-event-block {
  position: relative;
  margin-bottom: 40px;
  padding: 16px 20px 16px 50px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.timeline-event-block:hover {
  transform: scale(1.01);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.timeline-event-block:nth-child(1) { animation-delay: 0.1s; }
.timeline-event-block:nth-child(2) { animation-delay: 0.2s; }
.timeline-event-block:nth-child(3) { animation-delay: 0.3s; }
.timeline-event-block:nth-child(4) { animation-delay: 0.4s; }
.timeline-event-block:nth-child(5) { animation-delay: 0.5s; }

.timeline-event-block::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -13px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 3px solid #0a0a0a;
  border-radius: 50%;
}

.timeline-icon {
  font-size: 1.3rem;
  position: absolute;
  left: -45px;
  top: 6px;
}

.timeline-date {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 6px;
}

.timeline-event {
  font-size: 0.95rem;
  color: #444;
}

@keyframes fadeLine {
  from { height: 0; }
  to { height: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
:root{
      --sticky-offset: 64px;          /* height of your urgency bar */
    }

    /* make every #anchor stop below the fixed bar */
    [id]{scroll-margin-top:var(--sticky-offset);}
}
video {
  max-width: 100%;
  height: auto;
}
#lang-switcher{
  position:fixed;       /* flotante */
  bottom:20px; right:20px;
  background:#fff;
  color:#033d2d;
  border:2px solid #033d2d;
  padding:6px 12px;
  font-size:0.8rem; font-weight:600;
  border-radius:50px;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  z-index:60;
  transition:all .2s ease;
}
#lang-switcher:hover{
  background:#033d2d;
  color:#fff;
}
/* ==== Cookie-banner (fits urgency-bar theme) ==== */
.cookie-banner{
  position:fixed;
  top:calc(var(--sticky-offset));      /* sits right under your 64 px bar */
  left:0;
  width:100%;
  background:#033d2d;                  /* dark jungle green – already used */  /* :contentReference[oaicite:0]{index=0}:contentReference[oaicite:1]{index=1} */
  color:#fff;
  padding:14px 20px;
  display:flex;                        /* keeps text & buttons on one row */
  align-items:center;
  justify-content:space-between;
  font: 600 .95rem/1.45 "Playfair Display", serif;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  z-index:1001;                        /* above nav (999) but below pop-ups */
}

.cookie-banner p{margin:0; max-width:680px;}
.cookie-banner a{color:#ecfdf5; text-decoration:underline;}

.cookie-actions button{
  margin-left:12px;
  padding:8px 18px;
  border-radius:6px;
  border:0;
  font-family:"Playfair Display", serif;
  cursor:pointer;
  transition:background .25s ease;
}

#cookie-accept{background:#25d366; color:#fff;}         /* WhatsApp green */
#cookie-accept:hover{background:#1dbb5b;}

#cookie-decline{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
}
#cookie-decline:hover{background:#fff; color:#033d2d;}

@media(max-width:768px){
  .cookie-banner{flex-direction:column; text-align:center; gap:12px;}
  .cookie-actions button{margin-left:0;}
}
