/* ============================================================
   ROOT — MINI MODE
============================================================ */
:root {
  --bg: #f8f5ef;
  --ink: #ffffff;
  --ink-soft: #475569;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.15);
  --radius-xl: 18px;                  /* smaller radius */
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.10); /* lighter shadow */
  --max-width: 1150px;                /* slightly reduced */

  --space-section: clamp(2.8rem, 6vw, 5rem); /* smaller height */
  --space-gap: clamp(1.3rem, 3vw, 2.6rem);   /* tighter grid gap */
}

/* ============================================================
   SECTION WRAPPER (MINI)
============================================================ */
.custom-itinerary-cta {
  padding: var(--space-section) 1rem;  /* tighter */
  background: var(--bg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);         /* smaller entrance */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.custom-itinerary-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WRAPPER GRID (MINI)
============================================================ */
.ci-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;   /* slightly tighter ratio */
  align-items: center;
  gap: var(--space-gap);
}

/* ============================================================
   TEXT BLOCK — MINI
============================================================ */
.ci-content {
  width: 100%;
}

.ci-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;           /* smaller */
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: clamp(0.62rem, 1.6vw, 0.78rem); /* smaller text */
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.ci-content h2 {
  font-size: clamp(1.45rem, 3.8vw, 2.6rem);  /* smaller */
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.ci-content h2 span {
  color: var(--accent);
}

.ci-content p {
  margin: 0.8rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.9vw, 1.05rem);  /* smaller */
  line-height: 1.45;                         /* tighter */
}

.ci-points {
  list-style: none;
  margin: 0.9rem 0 1.8rem;                   /* tighter */
  padding: 0;
}

.ci-points li {
  margin: 0.35rem 0;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.8vw, 0.98rem); /* smaller */
}

/* ============================================================
   CTA BUTTON — MINI
============================================================ */
.ci-btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;                   /* reduced */
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-xl);
  font-size: clamp(0.9rem, 2vw, 1.05rem);    /* smaller */
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.ci-btn:hover {
  transform: translateY(-3px);               /* lighter hover */
  box-shadow: 0 10px 26px rgba(249,115,22,0.34);
}

/* ============================================================
   TRUST BADGE — MINI
============================================================ */
.ci-trust {
  margin-top: 1.4rem;                        /* reduced */
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.9;
  font-size: 0.85rem;
}

.ci-trust img {
  width: clamp(28px, 5vw, 36px);             /* smaller logo */
}

/* ============================================================
   IMAGE / ART — MINI
============================================================ */
.ci-art {
  overflow: hidden;
}

.ci-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ci-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;                         /* stays beautiful */
  object-fit: cover;
}

/* Glow — softer */
.ci-glow {
  position: absolute;
  inset: -18%;                                /* smaller slit */
  background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 60%);
  filter: blur(55px);                         /* softer glow */
  z-index: -1;
}

/* Floating Animation — mini */
.floating {
  animation: floatUpMini 5s ease-in-out infinite;
}

@keyframes floatUpMini {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }        /* smaller float */
}

/* ============================================================
   RESPONSIVE — MINI TUNING
============================================================ */
@media (max-width: 980px) {
  .ci-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .ci-art {
    max-width: 380px;                        /* smaller image */
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ci-btn {
    width: 100%;
    padding: 0.85rem 1.1rem;
  }
}

@media (max-width: 420px) {
  .ci-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 330px) {
  .ci-content h2 {
    font-size: 1.35rem;
  }
}
