@import url('https://fonts.googleapis.com/css2?family=Pretendard:wght@400;500;600;700;800&display=swap');

/* =========================
   BALLOON PAGE BASE
========================= */
.balloon-page section + section{
  margin-top:0 !important;
}

.balloon-page{
  background:#f7fffb;
  color:#1f2b2a;
  overflow-x:hidden;
}

.balloon-page section{
  position:relative;
  padding:104px 0;
}

.balloon-page .section-inner{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.balloon-page .section-inner.narrow{
  max-width:900px;
  text-align:center;
}

.balloon-page .section-label{
  display:inline-block;
  margin-bottom:18px;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(110,217,196,0.14);
  border:1px solid rgba(31,138,112,0.16);
  color:#1f8a70;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:2.5px;
}

.balloon-page h2{
  font-size:clamp(2.5rem, 5vw, 4.6rem);
  line-height:1.12;
  font-weight:800;
  color:#10201d;
  margin-bottom:22px;
  letter-spacing:-0.04em;
  word-break:keep-all;
}

.balloon-page h2 span{
  color:#1f8a70;
}

.balloon-page .section-desc{
  font-size:1.04rem;
  line-height:1.85;
  color:#4a5856;
  word-break:keep-all;
}

.balloon-page .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:15px 26px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.25s ease;
}

.balloon-page .btn-primary{
  background:#1f8a70;
  color:#fff;
  box-shadow:0 14px 28px rgba(31,138,112,0.24);
}

.balloon-page .btn-primary:hover{
  transform:translateY(-3px);
  background:#166d58;
}

.balloon-page .btn-outline{
  border:1.5px solid rgba(31,138,112,0.35);
  color:#1f8a70;
  background:rgba(255,255,255,0.7);
}

.balloon-page .btn-outline:hover{
  transform:translateY(-3px);
  background:#ffffff;
  border-color:#1f8a70;
}

/* =========================
   HERO
========================= */

.balloon-page .hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(8,22,20,0.78) 0%, rgba(8,22,20,0.56) 40%, rgba(8,22,20,0.18) 100%),
    url("../image/program/ballroon/ballroon-hero.webp") center/cover no-repeat;
  overflow:hidden;
}

.balloon-page .hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,243,163,0.18), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(110,217,196,0.16), transparent 24%),
    radial-gradient(circle at 70% 75%, rgba(255,255,255,0.10), transparent 20%);
  pointer-events:none;
}

.balloon-page .hero-container{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1200px;
  margin:0 auto;
  padding-top:120px;
}

.balloon-page .hero-text{
  max-width:720px;
  color:#fff;
}

.balloon-page .hero-kicker{
  margin-bottom:18px;
  font-size:0.95rem;
  font-weight:800;
  color:#fff3a3;
  letter-spacing:1.8px;
}

.balloon-page .hero h1{
  font-size:clamp(3rem, 7vw, 6rem);
  line-height:0.96;
  letter-spacing:-0.04em;
  font-weight:800;
  margin-bottom:28px;
  color:#ffffff;
  margin-left:-5px;
}

.balloon-page .hero-desc{
  font-size:1.15rem;
  line-height:1.9;
  color:rgba(255,255,255,0.92);
  word-break:keep-all;
}

.balloon-page .hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

/* =========================
   INTRO
========================= */

.balloon-page .balloon-intro{
  background:#ffffff;
}

/* =========================
   FEATURE
========================= */

.balloon-page .balloon-feature{
  background:linear-gradient(180deg, #f7fffb 0%, #edfff9 100%);
}

.balloon-page .feature-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}

.balloon-page .feature-photo{
  position:relative;
}

.balloon-page .feature-photo::before{
  content:"";
  position:absolute;
  top:-18px;
  left:-18px;
  width:100%;
  height:100%;
  border-radius:30px;
  background:rgba(255,243,163,0.35);
  z-index:0;
}

.balloon-page .feature-photo img{
  position:relative;
  z-index:1;
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center center;
  display:block;
  border-radius:30px;
  box-shadow:0 24px 50px rgba(24,62,54,0.14);
}

.balloon-page .feature-content p{
  font-size:1.05rem;
  line-height:1.9;
  margin-bottom:24px;
  color:#5f574d;
  word-break:keep-all;
}

.balloon-page .feature-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:0;
  margin:0;
  list-style:none;
}

.balloon-page .feature-list li{
  position:relative;
  padding-left:20px;
  font-size:1rem;
  line-height:1.8;
  color:#2f3d3b;
  word-break:keep-all;
}

.balloon-page .feature-list li::before{
  content:"";
  position:absolute;
  top:11px;
  left:0;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#1f8a70;
}

/* =========================
   POINT
========================= */

.balloon-page .balloon-point{
  background:#ffffff;
}

.balloon-page .point-head{
  text-align:center;
  margin-bottom:46px;
}

.balloon-page .point-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.balloon-page .point-card{
  background:#fcfffd;
  border:1px solid rgba(31,138,112,0.12);
  border-radius:26px;
  padding:34px 28px;
  box-shadow:0 12px 24px rgba(29,65,58,0.05);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.balloon-page .point-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  padding:7px 13px;
  border-radius:999px;
  background:#fff3a3;
  color:#6f5a00;
  font-size:0.8rem;
  font-weight:800;
  letter-spacing:0.05em;
}

.balloon-page .point-card h3{
  font-size:1.1rem;
  line-height:1.45;
  margin-bottom:10px;
  color:#10201d;
}

.balloon-page .point-card p{
  font-size:0.98rem;
  line-height:1.8;
  color:#5f574d;
  word-break:keep-all;
  max-width:320px;
}

/* =========================
   TARGET
========================= */

.balloon-page .balloon-target{
  background:linear-gradient(180deg, #edfff9 0%, #f7fffb 100%);
}

.balloon-page .target-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.balloon-page .target-tags span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(31,138,112,0.14);
  color:#1f8a70;
  font-size:0.95rem;
  font-weight:700;
}

/* =========================
   GIFT
========================= */

.balloon-page .balloon-gift{
  background:#ffffff;
}

.balloon-page .gift-box{
  max-width:980px;
  margin:0 auto;
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
  box-shadow:none;
  text-align:center;
}

.balloon-page .gift-box h2{
  margin-bottom:18px;
}

.balloon-page .gift-main{
  font-size:1.08rem;
  line-height:1.9;
  color:#5f574d;
  word-break:keep-all;
}

.balloon-page .gift-sub{
  margin-top:18px;
  font-size:0.96rem;
  line-height:1.8;
  color:#5f574d;
  word-break:keep-all;
}

/* =========================
   GALLERY
========================= */

.balloon-page .balloon-gallery{
  background:#f7fffb;
}

.balloon-page .gallery-head{
  text-align:center;
  margin-bottom:42px;
}

.balloon-page .gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.balloon-page .gallery-item{
  border:none;
  padding:0;
  background:none;
  cursor:pointer;
  overflow:hidden;
  border-radius:24px;
  box-shadow:0 14px 30px rgba(29,65,58,0.08);
}

.balloon-page .gallery-item img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
  transition:transform 0.35s ease;
}

.balloon-page .gallery-item:hover img{
  transform:scale(1.05);
}

/* =========================
   CHECKLIST
========================= */

.balloon-page .balloon-checklist{
  background:#f7fffb;
}

.balloon-page .checklist-box{
  max-width:1280px;
  margin:0 auto;
  padding:58px 46px 52px;
  border-radius:34px;
  background:#ffffff;
  border:1px solid rgba(31,138,112,0.10);
  box-shadow:0 18px 40px rgba(24,62,54,0.05);
}

.balloon-page .checklist-head{
  text-align:center;
  margin-bottom:36px;
}

.balloon-page .checklist-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.balloon-page .check-item{
  padding:28px 22px;
  border-radius:22px;
  background:rgba(255,255,255,0.56);
  border:1px solid rgba(31,138,112,0.10);
  backdrop-filter:blur(2px);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.balloon-page .check-item h3{
  font-size:1.1rem;
  font-weight:800;
  color:#10201d;
  margin-bottom:10px;
  line-height:1.45;
}

.balloon-page .check-item p{
  font-size:0.95rem;
  line-height:1.75;
  color:#5f574d;
  word-break:keep-all;
  max-width:240px;
}

/* =========================
   GALLERY MODAL
========================= */

.balloon-page .gallery-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.72);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:opacity 0.28s ease, visibility 0.28s ease;
  z-index:99999;
}

.balloon-page .gallery-modal.is-open{
  opacity:1;
  visibility:visible;
}

.balloon-page .gallery-modal-inner{
  position:relative;
  width:min(1200px, 96vw);
  max-height:92vh;
  background:#fff;
  border-radius:24px;
  padding:10px 10px 18px;
  box-shadow:0 24px 80px rgba(0,0,0,0.28);
  text-align:center;
  overflow:hidden;
  animation:balloonGalleryPopupUp 0.28s ease;
}

.balloon-page .gallery-modal img{
  width:100%;
  max-height:80vh;
  object-fit:contain;
  display:block;
  border-radius:18px;
  background:#f8f8f8;
}

.balloon-page .gallery-modal-caption{
  margin:12px 0 0;
  color:#333;
  font-size:1rem;
  line-height:1.6;
  word-break:keep-all;
}

.balloon-page .gallery-modal-close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:rgba(0,0,0,0.08);
  color:#222;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
}

/* =========================
   FLOATING BUTTONS
========================= */

.balloon-page .floating-buttons{
  position:fixed;
  right:24px;
  bottom:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9998;
}

.balloon-page .floating-btn{
  width:74px;
  height:74px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:0.95rem;
  font-weight:800;
  box-shadow:0 14px 28px rgba(0,0,0,0.18);
  transition:all 0.25s ease;
}

.balloon-page .floating-btn:hover{
  transform:translateY(-3px);
}

.balloon-page .floating-btn.call{
  background:#ffffff;
  color:#1f8a70;
  border:1px solid rgba(31,138,112,0.14);
}

.balloon-page .floating-btn.kakao{
  background:#fff3a3;
  color:#3b3100;
}

/* =========================
   OTHER KIDS SHOW
========================= */

.balloon-page .balloon-other-show{
  background:#ffffff;
  padding-top:28px;
}

.balloon-page .balloon-other-show .section-inner{
  max-width:1200px;
  width:90%;
  margin:0 auto;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border-radius:0;
}

.balloon-page .balloon-other-show .section-inner::before{
  display:none;
}

.balloon-page .balloon-photo-frame{
  position:relative;
  padding:72px 44px 54px;
  border-radius:36px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(227,246,241,0.9), rgba(250,247,235,0.92));
  border:1px solid rgba(31,138,112,0.10);
  box-shadow:0 14px 34px rgba(29,65,58,0.05);
}

.balloon-page .balloon-photo-frame::before{
  content:"";
  position:absolute;
  inset:-12% auto auto -10%;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(110,217,196,0.14), transparent 68%);
  pointer-events:none;
}

.balloon-page .balloon-photo-frame::after{
  content:"";
  position:absolute;
  inset:auto -8% -18% auto;
  width:340px;
  height:340px;
  background:radial-gradient(circle, rgba(255,243,163,0.18), transparent 70%);
  pointer-events:none;
}

.balloon-page .balloon-photo-head{
  position:relative;
  z-index:2;
  margin-bottom:38px;
  text-align:center;
}

.balloon-page .balloon-photo-head h2{
  margin-bottom:0;
  font-size:clamp(2.5rem, 5vw, 4.6rem);
  line-height:1.08;
  font-weight:800;
  color:#10201d;
  letter-spacing:-0.04em;
}

.balloon-page .balloon-photo-head h2 span{
  color:#1f8a70;
}

.balloon-page .balloon-photo-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-top:6px;
}

.balloon-page .balloon-show-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border-radius:24px;
  background:#f9fffc;
  border:1px solid rgba(31,138,112,0.10);
  text-decoration:none;
  text-align:center;
  box-shadow:none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.balloon-page .balloon-show-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(29,65,58,0.07);
  border-color:rgba(31,138,112,0.18);
}

.balloon-page .balloon-show-card.active{
  background:linear-gradient(135deg, #7fd8c6, #5fcdb8);
  border-color:#5fcdb8;
  box-shadow:0 16px 30px rgba(95,205,184,0.24);
}

.balloon-page .balloon-show-thumb{
  position:relative;
  aspect-ratio:16 / 10;
  overflow:hidden;
}

.balloon-page .balloon-show-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.05) 100%),
    linear-gradient(135deg, rgba(110,217,196,0.10) 0%, transparent 58%, rgba(255,243,163,0.12) 100%);
  pointer-events:none;
}

.balloon-page .balloon-show-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.35s ease;
}

.balloon-page .balloon-show-card:hover .balloon-show-thumb img{
  transform:scale(1.05);
}

.balloon-page .balloon-show-info{
  padding:22px 22px 24px;
  text-align:center;
}

.balloon-page .balloon-show-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  min-width:112px;
  height:34px;
  padding:0 14px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(31,138,112,0.08);
  border:1px solid rgba(31,138,112,0.12);
  color:#1f8a70;
  font-size:0.84rem;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.balloon-page .balloon-show-card.active .balloon-show-badge{
  background:rgba(255,255,255,0.18);
  border-color:rgba(255,255,255,0.24);
  color:#ffffff;
}

.balloon-page .balloon-show-info h3{
  font-size:1.1rem;
  line-height:1.45;
  margin:0 0 10px;
  color:#10201d;
}

.balloon-page .balloon-show-info p{
  font-size:0.98rem;
  line-height:1.65;
  color:#5f574d;
  word-break:keep-all;
  margin:0;
}

.balloon-page .balloon-show-card.active .balloon-show-info h3,
.balloon-page .balloon-show-card.active .balloon-show-info p{
  color:#ffffff;
}

.balloon-page .balloon-photo-note{
  margin-top:26px;
  font-size:1.02rem;
  line-height:1.7;
  color:#5c6967;
  word-break:keep-all;
  text-align:center;
  position:relative;
  z-index:2;
}

/* =========================
   SECTION BOX SYSTEM
========================= */

.balloon-page .section-box-gradient{
  max-width:1280px;
  margin:0 auto;
  padding:58px 46px 52px;
  border-radius:34px;
  background:linear-gradient(135deg, rgba(227,246,241,0.9), rgba(250,247,235,0.92));
  border:1px solid rgba(31,138,112,0.10);
  box-shadow:0 18px 40px rgba(24,62,54,0.05);
}

.balloon-page .section-box-white{
  max-width:1280px;
  margin:0 auto;
  padding:58px 46px 52px;
  border-radius:34px;
  background:#ffffff;
  border:1px solid rgba(31,138,112,0.10);
  box-shadow:0 18px 40px rgba(24,62,54,0.05);
}

.balloon-page .balloon-contact{
  background:#ffffff;
}

/* =========================
   ANIMATION
========================= */

@keyframes balloonGalleryPopupUp{
  from{
    transform:translateY(16px) scale(0.96);
    opacity:0;
  }
  to{
    transform:translateY(0) scale(1);
    opacity:1;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){
  .balloon-page .balloon-photo-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 1100px){
  .balloon-page .feature-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .balloon-page .point-grid{
    grid-template-columns:1fr;
  }

  .balloon-page .checklist-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 900px){
  .balloon-page .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .balloon-page section{
    padding:90px 0;
  }

  .balloon-page .section-inner{
    width:92%;
  }

  .balloon-page .section-inner.narrow{
    width:92%;
    max-width:100%;
  }

  .balloon-page .hero{
    min-height:auto;
    padding:130px 0 80px;
    background:
      linear-gradient(180deg, rgba(8,22,20,0.82) 0%, rgba(8,22,20,0.52) 48%, rgba(8,22,20,0.30) 100%),
      url("../image/program/ballroon/ballroon-hero-mobile.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
  }

  .balloon-page .hero-container{
    padding-top:0;
  }

  .balloon-page .hero-text{
    max-width:100%;
  }

  .balloon-page .hero-kicker{
    font-size:0.78rem;
    letter-spacing:1.4px;
    margin-bottom:12px;
  }

  .balloon-page .hero h1{
    font-size:clamp(2.1rem, 10vw, 3.4rem);
    line-height:1.02;
    margin-bottom:18px;
    margin-left:0;
  }

  .balloon-page h2,
  .balloon-page .balloon-photo-head h2{
    font-size:clamp(2rem, 8vw, 2.9rem);
    line-height:1.18;
    margin-bottom:18px;
  }

  .balloon-page .section-label{
    font-size:0.78rem;
    letter-spacing:1.8px;
    margin-bottom:14px;
  }

  .balloon-page .section-desc,
  .balloon-page .hero-desc,
  .balloon-page .feature-content p,
  .balloon-page .point-card p,
  .balloon-page .gift-main,
  .balloon-page .gift-sub,
  .balloon-page .check-item p,
  .balloon-page .gallery-modal-caption,
  .balloon-page .balloon-show-info p,
  .balloon-page .balloon-photo-note{
    font-size:0.95rem;
    line-height:1.8;
  }

  .balloon-page .feature-list li,
  .balloon-page .target-tags span{
    font-size:0.95rem;
    line-height:1.8;
  }

  .balloon-page .point-card h3,
  .balloon-page .check-item h3,
  .balloon-page .balloon-show-info h3{
    font-size:1rem;
    margin-bottom:8px;
  }

  .balloon-page .hero-actions{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    margin-top:24px;
  }

  .balloon-page .btn{
    width:100%;
    min-width:0;
    max-width:220px;
    padding:13px 20px;
    font-size:0.88rem;
  }

  .balloon-page .feature-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .balloon-page .point-grid,
  .balloon-page .gallery-grid,
  .balloon-page .checklist-grid,
  .balloon-page .balloon-photo-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .balloon-page .feature-photo::before{
    top:-12px;
    left:-12px;
    border-radius:22px;
  }

  .balloon-page .feature-photo img{
    border-radius:22px;
  }

  .balloon-page .point-card,
  .balloon-page .check-item{
    padding:24px 18px;
    border-radius:18px;
  }

  .balloon-page .point-head,
  .balloon-page .gallery-head,
  .balloon-page .checklist-head{
    margin-bottom:24px;
  }

  .balloon-page .point-number{
    margin-bottom:10px;
    font-size:0.72rem;
  }

  .balloon-page .target-tags{
    gap:10px;
    margin-top:28px;
  }

  .balloon-page .target-tags span{
    padding:10px 14px;
    font-size:0.9rem;
  }

  .balloon-page .checklist-box,
  .balloon-page .section-box-gradient,
  .balloon-page .section-box-white{
    padding:30px 22px;
    border-radius:22px;
  }

  .balloon-page .gallery-grid{
    margin-top:0;
  }

  .balloon-page .gallery-item{
    border-radius:16px;
  }

  .balloon-page .gallery-modal{
    padding:14px;
  }

  .balloon-page .gallery-modal-inner{
    width:100%;
    max-height:90vh;
    border-radius:18px;
    padding:8px 8px 14px;
  }

  .balloon-page .gallery-modal img{
    max-height:72vh;
    border-radius:14px;
  }

  .balloon-page .gallery-modal-caption{
    margin-top:10px;
    line-height:1.5;
  }

  .balloon-page .gallery-modal-close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    font-size:1.5rem;
  }

  .balloon-page .floating-buttons{
    right:16px;
    bottom:16px;
    gap:10px;
  }

  .balloon-page .floating-btn{
    width:64px;
    height:64px;
    border-radius:18px;
    font-size:0.84rem;
  }

  .balloon-page .balloon-other-show{
    padding-top:16px;
  }

  .balloon-page .balloon-other-show .section-inner{
    width:92%;
    padding:0;
    border-radius:0;
    background:transparent;
    border:none;
    box-shadow:none;
  }

  .balloon-page .balloon-photo-frame{
    padding:30px 22px;
    border-radius:22px;
  }

  .balloon-page .balloon-show-card{
    padding:0;
    border-radius:18px;
  }

  .balloon-page .balloon-show-badge{
    min-width:104px;
    height:32px;
    font-size:0.78rem;
    margin-bottom:16px;
  }

  .balloon-page .contact-actions{
    flex-direction:column;
    align-items:center;
    gap:12px;
  }
}

.balloon-page .balloon-intro,
.balloon-page .balloon-target,
.balloon-page .balloon-contact{
  text-align:center;
}

.balloon-page .balloon-intro .section-inner,
.balloon-page .balloon-target .section-inner,
.balloon-page .balloon-contact .section-inner{
  text-align:center;
}

.balloon-page .balloon-intro .section-desc,
.balloon-page .balloon-target .section-desc,
.balloon-page .balloon-contact .section-desc{
  margin-left:auto;
  margin-right:auto;
}

/* =========================
   BOOKING CTA SPACING
========================= */

.balloon-page .balloon-contact .section-box-gradient{
  padding: 68px 46px 64px;
}

.balloon-page .balloon-contact .section-label{
  margin-bottom: 26px;
}

.balloon-page .balloon-contact h2{
  margin-bottom: 24px;
  line-height: 1.1;
}

.balloon-page .balloon-contact .section-desc{
  margin-bottom: 34px;
}

.balloon-page .balloon-contact .contact-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .balloon-page .balloon-contact .section-box-gradient{
    padding: 38px 22px 36px;
  }

  .balloon-page .balloon-contact .section-label{
    margin-bottom: 18px;
  }

  .balloon-page .balloon-contact h2{
    margin-bottom: 18px;
  }

  .balloon-page .balloon-contact .section-desc{
    margin-bottom: 24px;
  }
}