/* ==============================
   HERO SECTION
============================== */

.hero {
  background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

.hero .container {
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 30px;
}

/* ==============================
   TEXT BLOCK
============================== */

.text-block {
  background: #fff;
}

.text-block .container {
  max-width: 900px;
}

/* ==============================
   IMAGE BLOCK
============================== */

.image-block img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ==============================
   GALLERY
============================== */

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery img {
  border-radius: 14px;
  transition: 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.04);
}

/* ==============================
   CARDS (future ready)
============================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Image Modal ===== */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.image-modal.active {
  opacity: 1;
  pointer-events: all;
}

.image-modal-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 16px;
}

.image-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

/* ===== Tabs ===== */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ===== Accordion ===== */
.accordion-body {
  display: none;
}
.accordion-item.open .accordion-body {
  display: block;
}

/* ===== Slider ===== */
.slide {
  display: none;
}
.slide.active {
  display: block;
}
.world-map {
  background: #f9fbff;
}

.map-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
}

.map-svg svg {
  width: 100%;
  height: auto;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-pin .dot {
  width: 14px;
  height: 14px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.2);
}

.pin-popup {
  position: absolute;
  top: -10px;
  left: 20px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  min-width: 200px;
}

.map-pin:hover .pin-popup {
  opacity: 1;
  pointer-events: all;
}

.pin-popup a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.pin-popup img {
  width: 20px;
  height: 20px;
}
