:root{
  --icx-bg: #0e160f;
  --icx-text: #ffffff;
  --icx-muted: rgba(255,255,255,.72);

  --icx-accent: #df8137;
  --icx-accent-2: #bb5d16;
  --icx-accent-3: #804f38;

  --icx-radius: 24px;
  --icx-radius-card: 18px;

  --icx-container: 1100px;
  --icx-shadow: 0 18px 48px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body.icx{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--icx-bg);
  color: var(--icx-text);
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }

.icx-container{
  width: min(var(--icx-container), calc(100% - 48px));
  margin: 0 auto;
}
.icx-container--narrow{
  width: min(820px, calc(100% - 48px));
}
.icx-main{ min-height: 60vh; }

/* =========================================================
   Header
========================================================= */
.icx-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

/* Home: header ma być nad hero (żeby tło zaczynało się od samej góry) */
body.home .icx-header{
  position: fixed;
  left: 0;
  right: 0;
}
.icx-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
  gap: 18px;
}

/* belka dopiero po scrollu */
.icx-header.is-scrolled{
  background: rgba(14,22,15,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

/* Brand */
.icx-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color:#fff;
}
.icx-brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 999px;
}
.icx-brand__name{
  font-weight: 700;
  letter-spacing: .2px;
}

/* Nav */
.icx-nav{
  display:flex;
  align-items:center;
  gap: 16px;
}
.icx-nav__list{
  display:flex;
  align-items:center;
  gap: 18px;
  list-style:none;
  margin:0;
  padding:0;
}
.icx-nav__list a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-size: 14px;
}
.icx-nav__list a:hover{ color:#fff; }

/* =========================================================
   Buttons
========================================================= */
.icx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 18px;
  border-radius: var(--icx-radius);
  border: 1px solid transparent;
  background: var(--icx-accent);
  color: #fff;
  text-decoration:none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(223,129,55,.18);
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.icx-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Outline / ghost */
.icx-btn--ghost{
  background: transparent;
  border-color: rgba(223,129,55,.55);
  color:#fff;
  box-shadow:none;
}
/* Hover: outline -> wypełnienie pomarańczowe */
.icx-btn--ghost:hover{
  background: var(--icx-accent);
  border-color: var(--icx-accent);
  box-shadow: 0 10px 24px rgba(223,129,55,.18);
}

.icx-btn--book{
  background: linear-gradient(90deg, var(--icx-accent-2), var(--icx-accent-3));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.icx-btn--small{ height: 34px; padding: 0 16px; font-size: 13px; }
.icx-btn--tiny{ height: 30px; padding: 0 14px; font-size: 12px; }

/* =========================================================
   Burger + mobile menu
========================================================= */
.icx-burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.15);
  cursor:pointer;
}
.icx-burger span{
  display:block;
  width: 18px;
  height: 2px;
  background:#fff;
  margin: 4px auto;
  border-radius: 2px;
}

.icx-mobile{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(14,22,15,.85);
}
.icx-mobile__list{
  list-style:none;
  padding: 14px 0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.icx-mobile__list a{ color:#fff; text-decoration:none; opacity:.92; }
.icx-mobile__book{ margin: 8px 0 18px; width: max-content; }

/* =========================================================
   Typography + layout helpers
========================================================= */
.icx-h1{
  margin:0 0 10px;
  font-size: 48px;
  line-height: 64px;
  font-weight: 700;
}
.icx-h2{
  margin:0 0 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}
.icx-h3{
  margin:0;
  font-size: 32px;
  font-weight: 700;
}
.icx-lead{
  margin:0 0 18px;
  font-size: 20px;
  opacity: .9;
}
.icx-muted{ color: var(--icx-muted); }

.icx-section{ padding: 56px 0; }
.icx-section--tight{ padding: 40px 0 56px; }
.icx-page{ padding: 36px 0 64px; }
.icx-center{ text-align:center; }
.icx-mt-32{ margin-top: 32px; }

/* =========================================================
   ICX: Page template (hero bg + overlap content)
========================================================= */
.icx-pagehero{
  position: relative;
  overflow: hidden;
}
.icx-pagehero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.icx-pagehero__inner{
  position: relative;
  z-index: 1;
  padding: 110px 0 90px;
}
.icx-pagehero__title{ margin:0 0 10px; }
.icx-pagehero__subtitle{ margin:0; opacity:.9; font-size: 18px; }

.icx-pagehero__content{
  position: relative;
  z-index: 2;
  margin-top: -54px; /* lekko nachodzi na tło */
}
.icx-pagehero__card{
  border-radius: var(--icx-radius);
  background: rgba(14,22,15,.78);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--icx-shadow);
  padding: 28px;
}
@media (max-width: 560px){
  .icx-pagehero__inner{ padding: 96px 0 72px; }
  .icx-pagehero__content{ margin-top: -38px; }
  .icx-pagehero__card{ padding: 22px; }
}

.icx-wysiwyg{ color: rgba(255,255,255,.9); }
.icx-wysiwyg a{ color:#fff; text-decoration: underline; text-decoration-color: rgba(223,129,55,.8); }

/* =========================================================
   Hero (Home)
========================================================= */
.icx-hero{
	min-height: calc(70vh);
  position:relative;
  padding-top: 76px;
  overflow:hidden;
  z-index:1;
}
.icx-hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-size:cover;
  background-position:center;
  transform: none;
}
.icx-hero__inner{
  position:relative;
  z-index:2;
  padding: 56px 0 44px;
}
.icx-hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:end;
  gap: 24px;
}
.icx-hero__content{ max-width: 640px; }
.icx-hero__cta{ display:flex; gap: 12px; flex-wrap:wrap; }
.icx-hero__artwrap{ display:flex; justify-content:flex-end; align-items:flex-end; padding-bottom: 10px; }
.icx-hero__art{
  width: min(560px, 100%);
  height:auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

/* =========================================================
   Blog (featured + cards + slider)
========================================================= */
.icx-feature{
  position:relative;
  border-radius: var(--icx-radius);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow: var(--icx-shadow);
  min-height: 280px; /* ciut wyższe (ok. +40px) */
  margin: 18px 0 26px;
}
.icx-feature__shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.12));
}
.icx-feature__content{
  position:relative;
  padding: 28px;
  max-width: 560px;
}

/* Featured: na mobile przycisk ma się trzymać w jednej linii i być większy */
@media (max-width: 560px){
  .icx-feature__content .icx-btn{
    height: 44px;
    padding: 0 22px;
    font-size: 15px;
    white-space: nowrap;
  }
}

.icx-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.icx-card{
  position:relative;
  border-radius: var(--icx-radius-card);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  min-height: 180px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.icx-card__shade{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.62));
}

/* karta: title + button pod spodem */
.icx-card__content{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 10px;
}
.icx-card__title{
  margin:0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100%;
}
.icx-card__btn{ align-self:flex-start; }

/* Hover na posty */
.icx-card,
.icx-feature{
  transform-origin: center;
  transition: transform .22s ease, filter .22s ease;
  will-change: transform;
}
.icx-card:hover{ transform: scale(1.03) rotate(5deg); }
.icx-feature:hover{ transform: scale(1.015); }

/* Slider */
.icx-slider{ position:relative; margin-top: 10px; }
.icx-slider__viewport{ overflow:hidden; }
.icx-slider__track{
  display:flex;
  transition: transform .28s ease;
  will-change: transform;
}
.icx-slide{ flex: 0 0 100%; }

.icx-slider__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
  z-index: 5;
}
.icx-slider__prev{ left: -10px; }
.icx-slider__next{ right: -10px; }

/* =========================================================
   Single post: prev/next buttons
========================================================= */
.icx-postdate{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.icx-postdate__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.92);
}

.icx-postnav{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  margin-top: 26px;
}
.icx-postnav__btn{
  min-width: 160px;
  justify-content: center;
}
.icx-postnav__btn span{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

/* =========================================================
   Contact block (blog + single)
========================================================= */
.icx-contact{
  padding: 54px 0 64px;
}
.icx-contact__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items:center;
}
.icx-contact__media img{
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}
.icx-contact__title{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
}
.icx-contact__text{
  margin: 0 0 18px;
  max-width: 520px;
}
.icx-contact__row{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.icx-contact__label{
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.icx-contact__link{
  color: var(--icx-accent);
  text-decoration: none;
  font-weight: 700;
}
.icx-contact__link:hover{ text-decoration: underline; }
.icx-contact__sep{ opacity: .6; }

/* =========================================================
   Footer
========================================================= */
.icx-footer{
  margin-top: 40px;
  background: linear-gradient(90deg, var(--icx-accent-2), var(--icx-accent-3));
  color:#fff;
}
.icx-footer__top{
  padding: 22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.icx-footer__menu{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.icx-footer__menu a{ color:#fff; text-decoration:none; font-size: 13px; opacity:.95; }
.icx-footer__contact{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.icx-footer__link{ color:#fff; text-decoration:none; font-weight:600; }
.icx-footer__sep{ opacity:.75; }
.icx-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 12px 0;
  opacity: .95;
}

/* =========================================================
   CF7 (Contact Form 7)
========================================================= */
.icx-cf7{ margin-top: 18px; }
.icx-cf7__row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.icx-cf7__row--2{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.icx-cf7 .wpcf7-form-control-wrap{ display:block; width:100%; }

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding: 14px 16px;
  outline: none;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.wpcf7 textarea{ min-height: 160px; resize: vertical; }

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{ color: rgba(255,255,255,.7); }

.wpcf7 input:focus,
.wpcf7 textarea:focus{
  border-color: rgba(223,129,55,.65);
  background: rgba(255,255,255,.10);
}

.wpcf7 .wpcf7-submit{
  border: 0;
  cursor: pointer;
  border-radius: var(--icx-radius);
  height: 40px;
  padding: 0 22px;
  background: var(--icx-accent);
  color:#fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(223,129,55,.18);
}
.wpcf7 .wpcf7-submit:hover{ filter: brightness(1.03); transform: translateY(-1px); }

/* =========================================================
   FAQ (WPBakery vc_tta accordion) – styl jak na screenie
========================================================= */
.vc_tta.vc_tta-accordion{
  background: transparent !important;
}

.vc_tta.vc_tta-accordion .vc_tta-panel{
  margin: 0 0 14px !important;
  border: 0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.vc_tta.vc_tta-accordion .vc_tta-panel-heading{
  margin: 0 !important;
  border: 0 !important;
  background: #fff !important;
}

.vc_tta.vc_tta-accordion .vc_tta-panel-title > a{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 22px !important;
  color: #0e160f !important;
  text-decoration:none !important;
  font-weight: 700;
  letter-spacing: .1px;
}

.vc_tta.vc_tta-accordion .vc_tta-panel-title .vc_tta-title-text{
  color: #0e160f !important;
}

.vc_tta.vc_tta-accordion .vc_tta-controls-icon{
  position: relative !important;
  width: 18px;
  height: 18px;
  margin-left: auto;
  transform: rotate(0deg);
  transition: transform .22s ease;
  opacity: .85;
}
.vc_tta.vc_tta-accordion .vc_tta-controls-icon:before,
.vc_tta.vc_tta-accordion .vc_tta-controls-icon:after{
  display:none !important;
}

/* obrót strzałki po aktywacji */
.vc_tta.vc_tta-accordion .vc_active .vc_tta-controls-icon{
  transform: rotate(180deg);
}

/* body */
.vc_tta.vc_tta-accordion .vc_tta-panel-body{
  border: 0 !important;
  background: #fff !important;
  color: #0e160f !important;
  padding: 0 22px 18px !important;
  animation: icxFaqIn .18s ease;
}
.vc_tta.vc_tta-accordion .vc_tta-panel-body p{
  color: rgba(14,22,15,.82) !important;
  margin: 0;
  line-height: 1.55;
}

@keyframes icxFaqIn{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   WPBakery (bez rozwalania siatki)
========================================================= */
.vc_row{ margin-left: 0 !important; margin-right: 0 !important; }
.vc_column_container>.vc_column-inner{ padding-left: 0; padding-right: 0; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px){
  .icx-h1{ font-size: 40px; line-height: 54px; }
  .icx-hero__grid{ grid-template-columns: 1fr; align-items:start; }
  .icx-hero__artwrap{ justify-content:flex-start; margin-top: 12px; }
  .icx-hero__art{ width: min(420px, 100%); }
  .icx-grid{ grid-template-columns: repeat(2, 1fr); }
  .icx-contact__grid{ grid-template-columns: 1fr; }
  .icx-contact__title{ font-size: 38px; }
}
@media (max-width: 780px){
  .icx-nav{ display:none; }
  .icx-burger{ display:inline-flex; align-items:center; justify-content:center; }
  .icx-footer__top{ flex-direction:column; align-items:flex-start; }
  .icx-footer__contact{ justify-content:flex-start; }
  .icx-slider__prev{ left: 0; }
  .icx-slider__next{ right: 0; }
  .icx-cf7__row--2{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .icx-h1{ font-size: 34px; line-height: 46px; }
  .icx-lead{ font-size: 18px; }
  .icx-hero__inner{ padding: 42px 0 32px; }
  .icx-hero__art{ width: 320px; }
  .icx-grid{ grid-template-columns: 1fr; }
  .icx-contact__title{ font-size: 32px; }
  .icx-postnav{ flex-direction: column; }
  .icx-postnav__btn{ width: 100%; }
}


/* =========================================================
   ICX: TRUST BLOCK (video + stars + rating)
========================================================= */
.icx-trust{
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items:center;
}

.icx-trust__media{
  position:relative;
  display:block;
  border-radius: var(--icx-radius);
  overflow:hidden;
  box-shadow: var(--icx-shadow);
  text-decoration:none;
}
.icx-trust__media img{
  transition: transform .22s ease, filter .22s ease;
  will-change: transform;
}
.icx-trust__media:hover img{
  transform: scale(1.04) rotate(1.2deg);
}
.icx-trust__media img{
  width:100%;
  height:auto;
  display:block;
}
.icx-trust__play{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  transition: transform .22s ease, background .22s ease;
}
.icx-trust__media:hover .icx-trust__play{
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(0,0,0,.42);
}
.icx-trust__play::before{
  content:"";
  position:absolute;
  left: 52%;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  opacity:.9;
}

/* Modal wideo (JS podpina iframe) */
.icx-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 10000;
  padding: 22px;
}
.icx-modal.is-open{ display:flex; }
.icx-modal__panel{
  width: min(980px, 100%);
  border-radius: 18px;
  overflow:hidden;
  background: #000;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  position: relative;
}
.icx-modal__close{
  position:absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
}
.icx-modal__ratio{
  position: relative;
  padding-top: 56.25%;
}
.icx-modal__ratio iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.icx-trust__stars{
  display:flex;
  gap: 10px;
  color: var(--icx-accent);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 14px;
}
.icx-trust__title{ margin: 0 0 10px; }
.icx-trust__sub{ margin: 0 0 18px; }

.icx-trust__row{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap:wrap;
}
.icx-trust__ta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.icx-trust__ta-icon{
  width: 22px;
  height: 22px;
	background: url("/wp-content/themes/icexcursion/img/trip.png") no-repeat center;
	  background-size: contain;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.75);
  position:relative;
  display:inline-block;
}
.icx-trust__ta-icon::after{
  content:"";
  position:absolute;
  inset: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}
.icx-trust__ta-text{ opacity:.92; font-weight:600; }
.icx-trust__ta-rate{ color: var(--icx-accent); font-weight:800; }


/* =========================================================
   ICX: BLOG CTA BLOCK (banner)
========================================================= */
.icx-blog-cta{
  position:relative;
  border-radius: var(--icx-radius);
  overflow:hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px; /* +~40px jak w podglądzie */
  box-shadow: var(--icx-shadow);
  margin-top: 18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  padding: 26px;
}

/* mobil: button ma się nie łamać i być ciut większy */
@media (max-width: 560px){
  .icx-blog-cta{ padding: 22px; }
  .icx-blog-cta__title{ font-size: 34px; }
  .icx-blog-cta__action .icx-btn{
    height: 44px;
    padding: 0 22px;
    font-size: 15px;
    white-space: nowrap;
  }
}
.icx-blog-cta__shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.18));
}
.icx-blog-cta__content,
.icx-blog-cta__action{
  position:relative;
  z-index:1;
}
.icx-blog-cta__title{
  margin:0 0 10px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
}
.icx-blog-cta__text{
  margin:0;
  font-size: 18px;
  opacity:.9;
}


/* =========================================================
   ICX: HERO HOME - tło od samej góry (bez "paska" nad grafiką)
========================================================= */
body.home .icx-hero{
  padding-top: 0 !important; /* zamiast sztucznego odsuwania całej sekcji */
}
body.home .icx-main{
  padding-top: 0 !important; /* bo globalnie main ma padding pod fixed header */
}
body.home .icx-hero__bg{
  top: 0; /* w razie gdyby coś to przesuwało */
}
body.home .icx-hero__inner{
  padding-top: 120px; /* ok. 25-30px wyżej niż wcześniej, bez wchodzenia pod header */
}

/* żeby pingwin i tło nie były ucinane na desktopie */
body.home .icx-hero__inner{
  padding-bottom: 120px; /* więcej powietrza pod CTA, żeby tło się nie ucinało */
}
body.home .icx-hero__art{
  width: min(560px, 100%);
}


/* =========================================================
   ICX: MOBILE MENU 
========================================================= */
@media (max-width: 780px){

  .icx-burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:0;
  }
  .icx-burger span{
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background:#fff;
  }

  /* menu jako overlay */
  .icx-mobile{
    position: fixed;
    left: 0; right: 0;
    top: 72px; 
    bottom: 0;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(6px);
    z-index: 9998;
    padding: 18px 0 26px;
  }

  .icx-mobile__list{
    padding: 26px 0 12px;
    gap: 14px;
    align-items:center;
  }
  .icx-mobile__list a{
    font-size: 15px;
    font-weight: 600;
    opacity: .95;
  }

  .icx-mobile__book{
    margin: 18px auto 0;
  }
  .icx-mobile__book.icx-btn{
    background: var(--icx-accent);
    border-color: var(--icx-accent);
  }
}
@media (max-width: 560px){
  body.home .icx-hero__inner{ padding-top: 104px; }
}


/* =========================================================
   FIX: HEADER ma być transparent + tło od samej góry

========================================================= */
:root{
  --icx-header-h: 76px; 
}

.icx-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}

.icx-main{
  padding-top: var(--icx-header-h);
}

/* Transparent domyślnie */
.icx-header--transparent{
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
}

/* Belka dopiero po scrollu */
.icx-header.is-scrolled{
  background: rgba(14,22,15,.55) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(8px) !important;
}

/* header-inner wysokościowo stabilny */
.icx-header__inner{
  min-height: var(--icx-header-h);
  padding: 18px 0;
}

/* =========================================================
   MOBILE MENU: 
========================================================= */
.icx-burger{
  display: none;
}

@media (max-width: 780px){
  .icx-nav{ display:none; }

  .icx-burger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.18);
    cursor: pointer;
  }

  .icx-burger span{
    display:block;
    width: 22px;
    height: 2px;
    background:#fff;
    border-radius: 2px;
    margin: 3px 0;
  }
}

/* overlay */
.icx-mobile{
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--icx-header-h) + 24px) 22px 28px;
}

.icx-mobile__inner{
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.icx-mobile__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.icx-mobile__list a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  opacity: .95;
}

.icx-mobile__book{
  width: 100%;
  justify-content: center;
}

/* blokada scrolla gdy menu otwarte */
html.icx-menu-open,
body.icx-menu-open{
  overflow: hidden;
}

/* =========================================================
   RESPONSYWNOŚĆ BLOKÓW (żeby na mobilce były 1 pod drugim)
========================================================= */
@media (max-width: 980px){
  .icx-hero__grid{ grid-template-columns: 1fr; }
  .icx-contact__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 780px){
  .icx-grid{ grid-template-columns: 1fr; }
}


/* =========================================================
   MOBILE MENU
========================================================= */

/* zawsze ukryte */
.icx-mobile{
  display: none !important;
}

/* pokazujemy dopiero gdy menu otwarte */
html.icx-menu-open .icx-mobile{
  display: flex !important;
}

/* dodatkowo: jeśli coś ignoruje hidden */
.icx-mobile[hidden]{
  display: none !important;
}


/* =========================================================
   MOBILE FIX: TRUST + BLOG CTA
========================================================= */

/* ---------- TRUST (video + content) ---------- */
@media (max-width: 780px){
  .icx-trust{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .icx-trust__media{
    width: 100%;
  }

  .icx-trust__content{
    width: 100%;
  }

  .icx-trust__title{
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .icx-trust__stars{
    font-size: 18px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .icx-trust__row{
    gap: 12px;
    justify-content: flex-start;
  }

  .icx-trust__ta{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .icx-trust__play{
    width: 74px;
    height: 74px;
  }

  .icx-trust__play::before{
    border-left-width: 16px;
    border-top-width: 11px;
    border-bottom-width: 11px;
  }
}

@media (max-width: 560px){
  .icx-trust__title{
    font-size: 30px;
  }

  /* CTA pod Tripadvisor: pełna szerokość i wygodny klik */
  .icx-trust__row .icx-btn{
    width: 100%;
    height: 44px;
    padding: 0 22px;
    font-size: 15px;
    white-space: nowrap;
  }

  /* Tripadvisor w 2 linie max, bez rozjeżdżania */
  .icx-trust__ta-text,
  .icx-trust__ta-rate{
    font-size: 14px;
  }
}


/* ---------- BLOG CTA (Check our blog articles) ---------- */
@media (max-width: 780px){
  .icx-blog-cta{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 320px; /* trochę wyżej na mobile, żeby oddychało */
  }

  .icx-blog-cta__content{
    max-width: 100%;
  }

  .icx-blog-cta__action{
    width: 100%;
  }

  .icx-blog-cta__action .icx-btn{
    width: 100%;
    height: 44px;
    padding: 0 22px;
    font-size: 15px;
    white-space: nowrap;
    justify-content: center;
  }
}

@media (max-width: 560px){
  .icx-blog-cta{
    padding: 22px;
    min-height: 330px;
  }

  .icx-blog-cta__title{
    font-size: 32px;
    line-height: 1.05;
  }

  .icx-blog-cta__text{
    font-size: 16px;
  }
}
