.map {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  
}

/* Na małych ekranach – usuń marginesy */
@media (max-width: 640px) {
  .map {
    margin-left: 0;
    margin-right: 0;
  }
}


.map-section {
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.map-cta {
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.4;
}

.map-cta .highlight-map {
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}





/* --- LOKALIZACJE --- */


.ca-flags-section {
    text-align: center;
    margin-bottom: 30px;
}

.ca-flags {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-top: 10px;
}

/* --- ROI --- */
.ca-roi-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.ca-roi-highlight {
    flex: 1;
    background: var(--ca-pink);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    min-width: 280px;
}

.ca-roi-big-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.ca-roi-list {
    flex: 1;
    min-width: 280px;
}

.ca-roi-list ul {
    list-style: none;
    padding: 0;
}

.ca-roi-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding-left: 10px;
    border-left: 4px solid var(--ca-green-accent);
}

/* --- OFERTA --- */
.ca-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.ca-feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ca-feature-item h4 { color: var(--ca-pink); margin-bottom: 10px;}

.ca-finance-options { text-align: center; }
.ca-finance-options h3 { margin-bottom: 30px; color: var(--ca-green-dark); }

.ca-finance-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ca-finance-card {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.ca-finance-card h4 { color: var(--ca-green-accent); margin-bottom: 10px; }



/* Styl bazowy przycisku */
.btn-map-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 700;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  font-family: sans-serif;
}

/* Stan: Pokaż mapę (Zielony) */
.btn-show {
background: linear-gradient(135deg, #3ce86a 0%, #5ac483 100%);
font-size: 20px;
}

.btn-show:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

/* Stan: Zamknij mapę (Czerwony) */
.btn-close {
  background-color: #dc2626; /* Czerwony */
}

.btn-close:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Animacja wejścia mapy */
.map-container-fade {
  animation: fadeIn 0.4s ease-out;
}

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