* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --gold: #E39A24;
    --gold-bright: #F2B544;
    --dark: #050b10;
    --dark-soft: #0b151d;
    --panel: #111d25;
    --text: #f2f1e8;
    --muted: rgba(242, 241, 232, 0.68);
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
  }
  
  .hero {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(5, 11, 16, 0.97) 0%, rgba(5, 11, 16, 0.86) 42%, rgba(5, 11, 16, 0.2) 100%),
      url('pocetna2.jpeg') center/cover;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -140px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(227, 154, 36, 0.55), transparent 65%);
    filter: blur(8px);
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 11, 16, 0.1), rgba(5, 11, 16, 0.65)),
      radial-gradient(circle at 70% 20%, rgba(255,255,255,0.08), transparent 28%);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0px 40px 90px;
    box-sizing: border-box;
  }
  .logo-box {
    width: max-content;
    margin: -35px 0 10px 10px;
    padding: 0;
  }
  
  .logo-img {
    width: 220px;
    height: auto;
    display: block;
  }
  .hero-text {
    margin-top: auto;
    max-width: 760px;
  }
  
  .eyebrow,
  .section-tag,
  .tabs-header span {
    display: inline-block;
    color: var(--gold-bright);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  
  
  
  .btn,
  .apply-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    color: #111;
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 999px;
    transition: 0.25s ease;
  }
  
  .btn:hover,
  .apply-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
  }
  
  .apply-btn {
    position: absolute;
    z-index: 4;
    top: 35px;
    right: 54px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
  }
  
  
  /* ABOUT */
  
  .about-section {
    padding: 115px 60px;
    background:
      radial-gradient(circle at 85% 10%, rgba(227, 154, 36, 0.12), transparent 26%),
      linear-gradient(180deg, #061018 0%, #0a141c 100%);
  }
  
  .about-top {
    max-width: 1050px;
    margin: 0 auto 58px;
  }
  
  .section-tag {
    background: rgba(227, 154, 36, 0.12);
    border: 1px solid rgba(227, 154, 36, 0.35);
    padding: 10px 20px;
    border-radius: 999px;
  }
  
  .about-top h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 28px;
  }
  
  .about-top p {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
  }
  
  .about-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  
  .about-card {
    min-height: 250px;
    padding: 34px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    position: relative;
    overflow: hidden;
  }
  
  .about-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -70px;
    background: radial-gradient(circle, rgba(227,154,36,0.22), transparent 65%);
  }
  
  .about-card span {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    color: var(--gold);
  }
  
  .about-card p {
    margin-top: 34px;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 1.15;
    text-transform: uppercase;
    color: rgba(242, 241, 232, 0.86);
  }
  
  .about-card.highlighted {
    border-color: rgba(227,154,36,0.35);
  }
  
  
  /* TABS */
  
  .tabs-section {
    padding: 120px 60px;
    background:
      linear-gradient(180deg, #050b10 0%, #071219 100%);
  }
  
  .tabs-header {
    max-width: 1050px;
    margin: 0 auto 70px;
    text-align: left;
  }
  .tabs-header span{
    color: #E39A24;;
  }
  
  .tabs-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    line-height: 0.95;
    text-transform: uppercase;
    max-width: 850px;
  }
  
  .tabs-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: start;
  }
  
  .tabs-left {
    display: grid;
    gap: 14px;
  }
  
  .tab {
    padding: 22px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 27px;
    line-height: 1.05;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(242, 241, 232, 0.45);
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    transition: 0.25s ease;
  }
  
  .tab:hover {
    color: var(--text);
    border-color: rgba(227, 154, 36, 0.3);
  }
  
  .tab.active {
    color: #111;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    border-color: transparent;
  }
  
  .tabs-right {
    min-height: 430px;
    padding: 48px;
    border-radius: 30px;
    background:
      radial-gradient(circle at 100% 0%, rgba(227,154,36,0.15), transparent 28%),
      linear-gradient(135deg, rgba(18, 31, 40, 0.96), rgba(8, 16, 22, 0.96));
    border: 1px solid rgba(227, 154, 36, 0.22);
    box-shadow: 0 25px 80px rgba(0,0,0,0.32);
    position: relative;
    overflow: hidden;
  }
  
  .tabs-right::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    pointer-events: none;
  }
  
  .tab-content {
    display: none;
    position: relative;
    z-index: 2;
  }
  
  .tab-content.active {
    display: block;
    animation: fadeUp 0.35s ease;
  }
  
  .tab-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--gold-bright);
  }
  /* naslov */
#tab-2 h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    color: #E39A24;
    margin-bottom: 25px;
  }
  
  /* dodatni tekst */
  .zasto-ja-desc {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
  }
  
  /* quote */
  .zasto-ja-quote {
    margin-top: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    line-height: 1.2;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
  }
  
  .tab-content p {
    font-size: 20px;
    line-height: 1.85;
    color: rgba(242, 241, 232, 0.74);
    margin-bottom: 30px;
    max-width: 760px;
  }
  
  .tab-content ul {
    list-style: none;
    padding-left: 0;
  }
  
  .tab-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: rgba(242, 241, 232, 0.75);
    font-size: 17px;
    line-height: 1.65;
  }
  
  .tab-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--gold);
    border-radius: 50%;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .hero-content {
      width: calc(100% - 44px);
      padding: 38px 0 70px;
    }

    .apply-btn {
      top: 28px;
      right: 22px;
      padding: 12px 26px;
    }

    .logo-box {
      
      margin: -95px 0 10px 10px;
    }
  
    .about-section,
    .tabs-section {
      padding: 80px 24px;
    }
  
    .about-grid,
    .tabs-container {
      grid-template-columns: 1fr;
    }
  
    .tabs-right {
      padding: 32px 24px;
      min-height: auto;
    }
  
    .tab {
      font-size: 23px;
    }
  }



/* =========================================
   FULL CIRCLE - MENTORSTVO
========================================= */

:root{
  --red:#960A1E;
  --red-light:#B41428;
  --dark:#071019;
  --dark-2:#0b1720;
  --text:#f3f0ea;
}

/* SECTION */

.mentor-section{
  padding:120px 60px;

  background:
    radial-gradient(circle at 10% 90%,
    rgba(150,10,30,.15),
    transparent 28%),

    linear-gradient(180deg,
    #04090d 0%,
    #07131a 100%);
}

/* HEADER */

.mentor-header{
  max-width:1200px;
  margin:0 auto 70px;
}

.mentor-header span{
  color:var(--red-light);
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:700;
  font-size:14px;
}

.mentor-header h2{
  font-family:'Oswald',sans-serif;
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.92;
  text-transform:uppercase;
  margin:18px 0;
  color:white;
}

.mentor-header .red{
  color:var(--red-light);
  display:block;
  font-size:inherit;
  font-weight:inherit;
  letter-spacing:inherit;
}

.mentor-header p{
  max-width:700px;
  color:rgba(255,255,255,.62);
  font-size:18px;
 
}

/* LAYOUT */

.mentor-layout{
  max-width:1300px;
  margin:0 auto;

  display:grid;
  grid-template-columns:340px 1fr;
  gap:34px;
}

/* LEFT */

.mentor-tabs{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mentor-tab{
  background:
    linear-gradient(90deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.015));

  border:1px solid rgba(255,255,255,.06);

  padding:22px 24px;

  border-radius:18px;

  color:rgba(255,255,255,.45);

  font-family:'Oswald',sans-serif;
  font-size:24px;
  text-transform:uppercase;

  text-align:left;

  cursor:pointer;

  transition:.3s ease;
}

.mentor-tab span{
  color:var(--red-light);
  margin-right:12px;
}

.mentor-tab:hover{
  color:white;
  transform:translateX(6px);
}

.mentor-tab.active{
  background:
    linear-gradient(90deg,
    var(--red-light),
    var(--red));

  color:white;
  border:none;

  transform:translateX(12px);
}

.mentor-tab.active span{
  color:white;
}

/* RIGHT CARD */

.mentor-card{
  position:relative;

  min-height:640px;

  border-radius:34px;

  overflow:hidden;

  padding:60px;

  background:
    radial-gradient(circle at 100% 0%,
    rgba(150,10,30,.18),
    transparent 35%),

    linear-gradient(135deg,
    rgba(17,31,40,.97),
    rgba(6,13,19,.98));

  border:1px solid rgba(150,10,30,.18);

  box-shadow:
    0 40px 80px rgba(0,0,0,.35);
}

.mentor-card::before{
  content:"";

  position:absolute;
  inset:18px;

  border-radius:24px;

  border:1px solid rgba(255,255,255,.05);

  pointer-events:none;
}

/* CONTENT */

.mentor-content{
  display:none;
  position:relative;
  z-index:2;
}

.mentor-content.active{
  display:block;
  animation:mentorFade .35s ease;
}

@keyframes mentorFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* NUMBER */

.mentor-number{
  width:60px;
  height:60px;

  border-radius:16px;

  background:
    linear-gradient(180deg,
    var(--red-light),
    var(--red));

  display:flex;
  align-items:center;
  justify-content:center;

  font-family:'Oswald',sans-serif;
  font-size:28px;
  color:white;

  margin-bottom:28px;
}

/* TITLE */

.mentor-content h3{
  font-family:'Oswald',sans-serif;
  font-size:clamp(2.8rem,5vw,5rem);
  line-height:.95;
  text-transform:uppercase;

  color:white;

  margin-bottom:30px;

  max-width:850px;
}

/* TEXT */

.mentor-content p{
  max-width:820px;

  font-size:20px;
  line-height:1.95;

  color:rgba(255,255,255,.72);

  margin-bottom:45px;
}

/* MENTOR BUTTONS */

.mentor-name-list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.mentor-name{
  border:none;

  background:
    linear-gradient(90deg,
    rgba(150,10,30,.20),
    rgba(150,10,30,.08));

  border:1px solid rgba(150,10,30,.30);

  color:var(--red-light);

  padding:16px 26px;

  border-radius:999px;

  font-family:'Oswald',sans-serif;
  font-size:22px;
  text-transform:uppercase;

  cursor:pointer;

  transition:.25s ease;
}

.mentor-name:hover{
  background:
    linear-gradient(90deg,
    var(--red-light),
    var(--red));

  color:white;

  transform:translateY(-2px);
}

/* =========================================
   POPUP
========================================= */

.mentor-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 24px;
}

.mentor-popup.active {
  display: flex;
}

.mentor-popup-box {
  width: min(860px, 100%);
  max-height: min(88vh, 680px);

  background:
    radial-gradient(circle at 100% 0%, rgba(150,10,30,.18), transparent 35%),
    linear-gradient(135deg, #101b24, #071019);

  border: 1px solid rgba(150,10,30,.28);
  border-radius: 30px;

  display: flex;
  flex-direction: row;
  overflow: hidden;

  position: relative;
  animation: popupOpen .28s ease;
}

@keyframes popupOpen {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1);   }
}

/* ---- LEFT (fixed) ---- */

.popup-left {
  width: 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 52px 20px 36px 28px;
  border-right: 1px solid rgba(150,10,30,.2);
  background: rgba(0,0,0,.12);
}

.popup-left img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(150,10,30,.45);
  flex-shrink: 0;
}

.popup-book-btn {
  display: block;
  width: 100%;
  padding: 13px 10px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: 14px;
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.popup-book-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

/* ---- RIGHT (scrollable) ---- */

.popup-right {
  flex: 1;
  overflow-y: auto;
  padding: 52px 36px 40px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(150,10,30,.4) transparent;
}

.popup-right::-webkit-scrollbar { width: 5px; }
.popup-right::-webkit-scrollbar-track { background: transparent; }
.popup-right::-webkit-scrollbar-thumb { background: rgba(150,10,30,.4); border-radius: 4px; }

.popup-right h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.popup-right .popup-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.popup-right p {
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 15px;
}

/* ---- OFFERINGS ---- */

.popup-offerings {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.popup-offerings h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.offering-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  transition: border-color .2s;
}

.offering-card:hover {
  border-color: rgba(227,154,36,.35);
}

.offering-card-info h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.offering-card-info p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin: 0;
}

.offering-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CLOSE */

.mentor-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: none;
  color: white;
  font-size: 34px;
  cursor: pointer;
  transition: .2s ease;
  z-index: 10;
}

.mentor-popup-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

/* RESPONSIVE */

@media(max-width:1000px){

  .mentor-layout{
    grid-template-columns:1fr;
  }

  .mentor-tab.active{
    transform:none;
  }

}

@media(max-width:700px){

  .mentor-section{
    padding:90px 24px;
  }

  .mentor-card{
    padding:36px 24px;
    min-height:auto;
  }

  .mentor-content p{
    font-size:17px;
    line-height:1.8;
  }

  .mentor-popup-box{
    flex-direction: column;
    max-height: min(92vh, 640px);
  }

  .popup-left {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(150,10,30,.2);
    padding: 24px 24px 20px;
    gap: 16px;
  }

  .popup-left img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .popup-book-btn {
    width: auto;
    flex: 1;
    font-size: 13px;
    padding: 10px;
  }

  .popup-right {
    padding: 24px 20px 28px;
  }

  .popup-right h3 {
    font-size: 26px;
  }

  .mentor-name{
    font-size:18px;
    width:100%;
    justify-content:center;
  }

}

















  
/* =========================================
   KALENDAR
========================================= */

.cal-section {
  padding: 120px 8%;
  background:
    radial-gradient(circle at 95% 10%, rgba(227, 154, 36, 0.1), transparent 35%),
    radial-gradient(circle at 5% 80%, rgba(181, 18, 43, 0.12), transparent 40%),
    var(--dark-soft);
}

.cal-top {
  text-align: center;
  margin-bottom: 64px;
}

.cal-top h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.cal-top h2 span {
  color: var(--gold-bright);
}

/* ---- Single calendar wrapper ---- */

.cal-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 10, 30, 0.25);
  border-radius: 24px;
  padding: 32px 36px 36px;
}

/* ---- Navigation ---- */

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cal-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.cal-nav-btn svg {
  width: 18px;
  height: 18px;
}

.cal-nav-btn:hover:not(:disabled) {
  background: rgba(150, 10, 30, 0.3);
  border-color: rgba(150, 10, 30, 0.55);
}

.cal-nav-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

#cal-month-name {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .04em;
}

#cal-month-year {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ---- Weekday headers ---- */

.cal-wdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 10px;
}

.cal-wdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 4px 0;
}

/* ---- Day grid ---- */

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  transition: background .15s, color .15s;
  cursor: default;
}

.cal-day:not(.cal-empty):hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.cal-empty {
  pointer-events: none;
}

/* Event day */

.cal-ev-red {
  color: #fff;
  font-weight: 700;
  background: rgba(150, 10, 30, 0.25);
}

.cal-ev-red::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(150, 10, 30, 0.9);
}

/* ---- Uskoro message ---- */

.cal-uskoro-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(227, 154, 36, 0.08);
  border: 1px solid rgba(227, 154, 36, 0.22);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ---- Events strip ---- */

.cal-events-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cal-ev-item {
  background: rgba(150, 10, 30, 0.08);
  border: 1px solid rgba(150, 10, 30, 0.25);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, background .2s;
}

.cal-ev-item:hover {
  background: rgba(150, 10, 30, 0.16);
  border-color: rgba(150, 10, 30, 0.45);
}

.cal-ev-soon {
  background: rgba(227, 154, 36, 0.06);
  border-color: rgba(227, 154, 36, 0.2);
}

.cal-ev-soon:hover {
  background: rgba(227, 154, 36, 0.12);
  border-color: rgba(227, 154, 36, 0.4);
}

.cal-ev-date-box {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.cal-ev-date-box strong {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.cal-ev-date-box span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.8;
}

.red-box strong,
.red-box span { color: rgba(180, 20, 40, 0.95); }

.gold-box strong,
.gold-box span { color: var(--gold-bright); }

.cal-ev-body strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 3px;
}

.cal-ev-body span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

/* ---- Responsive ---- */

@media (max-width: 700px) {
  .cal-section { padding: 80px 20px; }
  .cal-wrapper { padding: 24px 20px 28px; }
  .cal-day { font-size: 11px; }
  .cal-events-strip { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   FAQ
========================================= */

.faq-section {
  padding: 120px 8%;
  background:
    radial-gradient(circle at 0% 50%, rgba(181, 18, 43, 0.14), transparent 40%),
    radial-gradient(circle at 100% 20%, rgba(227, 154, 36, 0.08), transparent 35%),
    var(--dark);
}

.faq-header {
  max-width: 700px;
  margin: 0 auto 72px;
  text-align: center;
}

.faq-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.faq-header h2 span {
  color: var(--gold-bright);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Item --- */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Question button --- */

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: none;
  border: none;
  cursor: pointer;

  padding: 26px 4px;
  text-align: left;

  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);

  transition: color .2s;
}

.faq-q:hover {
  color: var(--gold-bright);
}

.faq-item.open .faq-q {
  color: var(--gold-bright);
}

/* --- Arrow icon --- */

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(181, 18, 43, 0.9);
  transition: transform .3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-bright);
}

/* --- Answer --- */

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.85;
  padding: 0 4px 28px;
  margin: 0;
}

.faq-a strong {
  color: var(--gold-bright);
  font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background:
    linear-gradient(180deg, var(--dark) 0%, #020609 100%);
  border-top: 1px solid rgba(181, 18, 43, 0.2);
  padding: 60px 8% 40px;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo {
  width: 160px;
  height: auto;
  opacity: 0.92;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}

.footer-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: color .2s;
}

.footer-link:hover {
  color: var(--gold-bright);
}

.footer-link:hover svg {
  color: var(--gold-bright);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.22);
  margin: 0;
  letter-spacing: .03em;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 48px 24px 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---- */

.faq-insta-link {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(227, 154, 36, 0.4);
  transition: border-color .2s, color .2s;
}

.faq-insta-link:hover {
  color: #fff;
  border-color: #fff;
}
/* ---- Kontakt forma ---- */

.faq-contact-box {
  max-width: 820px;
  margin: 56px auto 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(150, 10, 30, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 10, 30, 0.25);
  border-radius: 22px;
  padding: 36px 40px 40px;
}

.faq-contact-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-contact-header svg {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-contact-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 5px;
}

.faq-contact-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.faq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.faq-input-wrap label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.faq-input-wrap input,
.faq-input-wrap textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}

.faq-input-wrap input::placeholder,
.faq-input-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.faq-input-wrap input:focus,
.faq-input-wrap textarea:focus {
  border-color: rgba(150, 10, 30, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.faq-submit-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border: none;
  border-radius: 12px;
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  margin-top: 4px;
}

.faq-submit-btn:hover { opacity: .88; transform: translateY(-2px); }
.faq-submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.faq-form-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

.faq-msg-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.faq-msg-error {
  background: rgba(150, 10, 30, 0.12);
  border: 1px solid rgba(150, 10, 30, 0.35);
  color: rgba(255, 100, 100, 0.9);
}

@media (max-width: 600px) {
  .faq-contact-box { padding: 24px 20px 28px; }
  .faq-submit-btn { width: 100%; justify-content: center; }
}


/* --- Responsive --- */

@media (max-width: 700px) {
  .faq-section {
    padding: 80px 24px;
  }

  .faq-q {
    font-size: 0.95rem;
    padding: 22px 2px;
  }

  .faq-header {
    margin-bottom: 48px;
  }
}





/* =========================================
   MOBILNI ACCORDION – tabs-section & mentor-section
   (samo na uređajima ≤ 768px)
========================================= */

@media (max-width: 768px) {

  /* Sakrij desne panele – accordion ih zamjenjuje */
  .tabs-right-hidden,
  .mentor-card-hidden {
    display: none !important;
  }

  /* ---- Tabs accordion panel ---- */
  .mob-panel {
    display: none;
    overflow: hidden;
    border-radius: 18px;
    margin-top: 6px;
    margin-bottom: 4px;
  }

  .mob-panel.open {
    display: block;
    animation: fadeUp 0.3s ease;
    background:
      radial-gradient(circle at 100% 0%, rgba(227,154,36,0.15), transparent 28%),
      linear-gradient(135deg, rgba(18,31,40,0.97), rgba(8,16,22,0.97));
    border: 1px solid rgba(227,154,36,0.25);
    padding: 28px 22px 24px;
  }

  .mob-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 14px;
    line-height: 1.05;
  }

  .mob-panel p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(242,241,232,0.74);
    margin-bottom: 14px;
    max-width: none;
  }

  .mob-panel ul {
    list-style: none;
    padding-left: 0;
  }

  .mob-panel li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: rgba(242,241,232,0.75);
    font-size: 15px;
    line-height: 1.6;
  }

  .mob-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
  }

  /* Tab dugme sa strelicom (accordion indicator) */
  .tabs-left .tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tabs-left .tab::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.25s ease;
    opacity: 0.7;
  }

  .tabs-left .tab.active::after {
    transform: rotate(-135deg);
  }

  /* ---- Mentor accordion panel ---- */
  .mob-mentor-panel {
    display: none;
    overflow: hidden;
    border-radius: 18px;
    margin-top: 6px;
    margin-bottom: 4px;
  }

  .mob-mentor-panel.open {
    display: block;
    animation: fadeUp 0.3s ease;
    background:
      radial-gradient(circle at 100% 0%, rgba(150,10,30,0.18), transparent 35%),
      linear-gradient(135deg, rgba(17,31,40,0.97), rgba(6,13,19,0.98));
    border: 1px solid rgba(150,10,30,0.25);
    padding: 28px 22px 24px;
  }

  .mob-mentor-panel .mentor-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--red-light), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: white;
    margin-bottom: 18px;
  }

  .mob-mentor-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 14px;
    line-height: 1.05;
  }

  .mob-mentor-panel p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 20px;
    max-width: none;
  }

  .mob-mentor-panel .mentor-name-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mob-mentor-panel .mentor-name {
    font-size: 17px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Mentor tab sa strelicom */
  .mentor-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mentor-tab::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.25s ease;
    opacity: 0.6;
  }

  .mentor-tab.active::after {
    transform: rotate(-135deg);
    opacity: 1;
  }

  /* Sakrij mentor-tab transform na mobilnom */
  .mentor-tab:hover { transform: none; }
  .mentor-tab.active { transform: none; }
}