/*
Theme Name: Drexperts
*/

/* Variables & Theme Colors */
:root {
  --color-primary-blue: #162b81;     /* Deep executive blue */
  --color-accent-orange: #ffa101;    /* Vibrant hot orange matching logo/CTA */
  --color-hover-orange: #e49000;     /* Slightly darker orange for hovering */
  --color-text-dark: #2a3342;        /* High-contrast charcoal text */
  --color-text-muted: #5c6c7f;       /* Classy slate gray for subtle details */
  --font-family-base: 'Manrope', sans-serif;
  --transition-speed: 0.35s;
}

/* General Layout Reset */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animations Trigger (WOW.js) */
.wow {
  visibility: hidden;
}

/* --- NAVIGATION BAR --- */
.transition-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1050;
}

/* Scroll action class triggered via Scroll Event */
.transition-navbar.scrolled {
  background-color: #ffffff !important;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.02);
}

/* Brand Logo Layout */
.nav-logo {
  max-height: 52px;
  width: auto;
  transition: all var(--transition-speed) ease-in-out;
}

.scrolled .nav-logo {
  max-height: 44px;
}

/* Navigation List */
.header-menu .nav-item {
  margin: 0 15px;
}

.header-menu .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary-blue) !important;
  letter-spacing: 0.2px;
  padding: 8px 0 !important;
  transition: color 0.25s ease;
  position: relative;
}

.header-menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-orange);
  transition: width 0.25s ease;
}

.header-menu .nav-link:hover {
  color: var(--color-accent-orange) !important;
}

.header-menu .nav-link:hover::after {
  width: 100%;
}

/* Custom Rounded CTA Button inside Navigation Bar */
.btn-orange {
  background-color: var(--color-accent-orange);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--color-accent-orange);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orange:hover {
  background-color: var(--color-hover-orange);
  border-color: var(--color-hover-orange);
  transform: translateY(-2px);
}

.btn-orange:active {
  transform: translateY(0);
}

.wpcf7-submit {
    background-color: var(--color-accent-orange);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--color-accent-orange);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- HERO BANNER SECTION --- */
.hero-section {
  position: relative;
  background-image: url('img/hero1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  min-height: 100vh;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Beautiful desktop layer: Left background soft-lighting overlay */
@media (min-width: 1200px) {
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
}

/* Tablet & Mobile Overlay for optimal text readability and accessibility (AA/AAA contrast level) */
@media (max-width: 1199px) {
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
}

.hero-content-box {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-title-top {
  display: block;
  color: var(--color-primary-blue);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-title-bottom {
  display: block;
  color: var(--color-accent-orange);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-primary-blue);
  max-width: 530px;
  margin-bottom: 45px;
  border-left: 4px solid var(--color-accent-orange);
  padding-left: 20px;
}

/* Elegant Hero Banner Action Button */
.btn-hero {
  background-color: var(--color-accent-orange);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 45px;
  border-radius: 50px;
  border: 2px solid var(--color-accent-orange);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-hero:hover {
  background-color: var(--color-hover-orange);
  border-color: var(--color-hover-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 136, 5, 0.45);
}

.btn-hero:active {
  transform: translateY(0);
}

.btn-hero .arrow-icon {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.btn-hero:hover .arrow-icon {
  transform: translateY(3px);
}

/* --- INTRO & FOR WHO SECTION (WSTĘP / DLA KOGO) --- */
.intro-for-who-section {
  background-color: #ffffff;
  padding-top: 70px !important;
  padding-bottom: 50px !important;
}

/* Common cards general layout */
.intro-card,
.for-who-card {
  border-radius: 24px;
  padding: 45px 35px 45px 40px;
  transition: all var(--transition-speed) ease-in-out;
}

/* Wstęp Card - subtle modern pale blue tint background */
.intro-card {
  background-color: #f2f5fa;
}

/* Dla Kogo Card - elegant subtle pale warm cream tint background */
.for-who-card {
  background-color: #fef8f2;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(47, 67, 147, 0.06);
}

.for-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(241, 136, 5, 0.06);
}

/* Icons styling inside headers */
.intro-icon,
.for-who-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.intro-icon.bg-deep-blue {
  background-color: var(--color-primary-blue);
}

.for-who-icon.bg-orange {
  background-color: var(--color-accent-orange);
}

.intro-svg,
.for-who-svg {
  width: 100%;
  height: 100%;
}

/* Headings with decorative orange bottom bars */
.title-with-bar {
  position: relative;
}

.title-with-bar .card-section-title {
  font-size: 22px;
}

.intro-title-svg {
  width: 32px;
  height: 32px;
}

.text-blue {
  color: var(--color-primary-blue) !important;
}

.card-section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 38px;
}

.orange-bar {
  width: 48px;
  height: 3px;
  background-color: var(--color-accent-orange);
  margin-top: 6px;
  border-radius: 2px;
}

/* Wstęp and For Who Card text styling */
.intro-card-text {
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 0;
}

.for-who-main-desc {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* List with beautiful custom checkmarks matching the screenshot */
.for-who-list li {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.for-who-list li:last-child {
  margin-bottom: 0;
}

.for-who-list li strong {
  font-weight: 700;
  color: var(--color-primary-blue);
}

.orange-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  color: #ffffff;
  padding: 3px;
  margin-top: 3px;
  box-shadow: 0 2px 6px rgba(241, 136, 5, 0.3);
}

.orange-checkbox svg {
  width: 100%;
  height: 100%;
}

/* --- PROGRAM SECTION (3 ŚCIEŻKI ROZWOJU) --- */
.program-section {
  background-color: #fcfdfe; /* soft, almost pure white executive background */
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* Decorative Title Header with Horizontal Lines */
.title-with-lines {
  width: 100%;
}

.title-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 67, 147, 0) 0%, var(--color-primary-blue) 50%, rgba(47, 67, 147, 0) 100%);
  opacity: 0.3;
}

.section-title {
  color: var(--color-primary-blue);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0px;
}

.text-orange {
  color: var(--color-accent-orange) !important;
}

/* Program Card Styling */
.program-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(47, 67, 147, 0.05);
  border: 1px solid rgba(47, 67, 147, 0.06);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(47, 67, 147, 0.12);
  border-color: rgba(241, 136, 5, 0.2);
}

/* Card Header Box */
.card-header-box {
  padding: 24px 20px;
  min-height: 110px;
  position: relative;
  display: flex !important;
  align-items: center !important;
}

.card-header-box.bg-orange {
  background-color: var(--color-accent-orange);
}

.card-header-box.bg-blue {
  background-color: var(--color-primary-blue);
}

/* Badge Circle on the Left */
.badge-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--color-primary-blue);
  border: 2px solid #ffffff;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Align circle matching with design */
.card-header-box.bg-blue .badge-circle {
  background-color: #1c2b6b; /* slightly darker navy for higher contrast inside blue header */
}

.badge-number {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

/* Header Titles */
.header-titles .zjazd-title {
font-size: 14px;
    font-weight: 700;
    letter-spacing: 0px;
    opacity: .9;
    margin-bottom: 3px;
}

.header-titles .card-main-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0px;
}

.header-titles .italic-sub {
    font-size: 15px;
    font-weight: 600;
    font-style: normal;
    opacity: 1;
    margin-top: 3px;
}

/* Card Image Box representing the visual path */
.card-img-box {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card-img-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .card-img {
  transform: scale(1.06);
}

/* Card Body Content */
.card-body-box {
  padding: 35px 30px;
}

/* Elegant styled lists with orange dot bullets */
.card-list {
  margin-bottom: 30px !important;
}

.card-list li {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.card-list li:last-child {
  margin-bottom: 0;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  box-shadow: 0 0 6px rgba(241, 136, 5, 0.4);
}

/* Card Footer Effect Box */
.card-footer-effect {
  border-top: 1px dashed rgba(47, 67, 147, 0.12);
  padding-top: 25px;
  margin-top: auto;
}

.effect-text {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* --- HOW WE WORK BANNER (JAK PRACUJEMY) --- */
.how-we-work-banner {
  background-color: var(--color-primary-blue);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(47, 67, 147, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Centralizing the left info layout */
.banner-left-info {
  margin-right: 40px;
  max-width: 38%;
}

.banner-circle-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 25px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.custom-svg-icon {
  width: 100%;
  height: 100%;
}

.banner-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px !important;
  letter-spacing: 0px;
}

.banner-desc {
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Layout for the 6 elegant icons side */
.banner-right-icons {
  display: flex;
  flex-grow: 2;
  width: 62%;
}

.banner-icons-header {
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.font-size-14 {
  font-size: 14px;
}

/* Elegant Icon Grid items with thin dividers */
.banner-icon-item {
  flex: 1;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 110px;
}

.banner-icon-item:last-child {
  border-right: none;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.84);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  padding: 13px;
  transition: all 0.3s ease;
}

.banner-icon-item:hover .icon-circle {
  background-color: #ffffff;
  color: var(--color-primary-blue);
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.icon-circle svg {
  width: 100%;
  height: 100%;
}

/* --- ORG DETAILS SECTION (SZCZEGÓŁY ORGANIZACYJNE) --- */
.org-details-section {
  background-color: #fff;
  border-bottom: 1px solid rgba(47, 67, 147, 0.03);
  padding-bottom:0px !important
}

/* 4 Main Parameters top bar */
.org-features-bar {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
}

.org-feature-item {
  padding: 10px 15px;
}

.feature-icon-circle {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  padding: 14px;
  margin-right: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle.bg-blue {
  background-color: var(--color-primary-blue);
}

.feature-icon-circle.bg-orange {
  background-color: var(--color-accent-orange);
}

.feature-icon-circle svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0px;
  margin-bottom: 5px !important;
}

.pin-icon {
  width:26px;
  margin-right:12px
}

.feature-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Organization Cards */
.org-card {
  background-color: #f6f7fa;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
}

.card-box-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

/* Dates Card Custom styling with inline dashed borders */
.locations-flex-container {
  position: relative;
}

.location-col {
  width: 46%;
}

.loc-pin {
  font-size: 18px;
}

.location-name {
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight:700
}

.dates-list .zjazd-label {
  font-size: 14px;
  color: #232323;
  font-weight: 500;
}

.dates-list .date-value {
  font-size: 14px;
  color: #232323;
  font-weight: 600;
  color: var(--color-primary-blue);
}

.border-bottom-dashed {
  border-bottom: 1px dashed rgba(47, 67, 147, 0.12);
}

.loc-divider {
  width: 1px;
  background-color: rgba(47, 67, 147, 0.1);
  margin: 0 20px;
  align-self: stretch;
}

/* Price Includes styling */
.price-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background-color: rgba(241, 136, 5, 0.08);
  padding: 8px;
  box-shadow: 0 2px 6px rgba(241, 136, 5, 0.05);
}

.inline-svg-icon {
  width: 100%;
  height: 100%;
}

.price-include-text {
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-text-dark);
  padding-top: 6px;
}

.price-include-text strong {
  font-weight: 700;
  color: var(--color-primary-blue);
}

/* --- TRAINERS SECTION (TRENERKI PROGRAMU) --- */
.trainers-section {
  background-color: #ffffff;
  overflow: hidden;
}

/* Dotted orange decorative layers */
.dotted-pattern-left {
  position: absolute;
  top: 15%;
  left: 2%;
  width: 110px;
  height: 80px;
  background-image: radial-gradient(var(--color-primary-blue) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.15;
}

.dotted-pattern-right {
  position: absolute;
  top: 15%;
  right: 2%;
  width: 110px;
  height: 80px;
  background-image: radial-gradient(var(--color-accent-orange) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.18;
}

/* Trainers layout with connectors */
.trainer-card {
  background-color: #f2f4fa;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all var(--transition-speed) ease-in-out;
  width: 100%;
  position: relative;
  z-index: 2;
}



/* Circle Photo Frame with beautiful curve overlays */
.trainer-circle-frame {
    width: auto;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    margin: 0 auto;
    position: relative;
}



.trainer-img-left,
.trainer-img-right {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trainer-name {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
}

.trainer-description {
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text-dark);
}

p.trainer-description {
  margin-bottom:0px !important
}

.brand-sublogo {
  max-height: 36px;
  width: auto;
  opacity: 1;
  margin-bottom:15px
}

.brand-sublogo-tiny {
  max-height: 18px;
  width: auto;
}

.coaching-experts-text {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-primary-blue);
  opacity: 0.9;
}

.more-link {
    font-size: 13px;
    letter-spacing: 1px;
    transition: transform 0.25s ease;
    font-weight: 700;
}

.more-link:hover {
  color: var(--color-accent-orange) !important;
  transform: translateX(4px);
}

/* Connector Circle Amperstand '&' */
.trainer-connector-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary-blue);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(47, 67, 147, 0.3);
  border: 2px solid #ffffff;
}

/* --- INCLUDED VALUE & BLUE CTA --- */
.included-value-section {
  background-color: #fff;
}

.included-bottom-card {
  background-color: #f2f4fa;
  border-radius: 24px;
  padding: 45px;
}

.included-box-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
}

.included-detail-text {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-text-dark);
  padding-top: 2px;
}

/* Blue CTA Card on the right of the bottom block */
.cta-blue-card {
  background-color: var(--color-primary-blue);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(47, 67, 147, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-speed) ease-in-out;
}

.cta-blue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(241, 136, 5, 0.22);
}

.cta-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  padding: 15px;
}

.cta-badge-icon-circular {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background-color: transparent;
  padding: 20px;
}

.cta-title-orange-text {
  font-size: 18px;
  line-height: 1.2;
  font-weight:700;
  letter-spacing: 0.5px;
}

.cta-subtitle-white-text {
  font-size: 17px;
  line-height: 1.3;
  font-weight:600;
  letter-spacing: 0.5px;
}

.inline-svg-icon-large {
  width: 100%;
  height: 100%;
}

.cta-sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-main-headline {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-paragraph {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-blue-card .btn-orange {
  padding: 14px 25px;
}

/* --- RESPONSIVENESS AND MEDIA QUERIES FOR ALL NEW SECTIONS --- */
@media only screen and (max-width: 1399px) {
  .location-col {
    width: 48%;
  }
}

@media only screen and (max-width: 1199px) {
  .org-features-bar {
    padding: 20px 10px;
  }
  .feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 12px;
    margin-right: 12px;
  }
  .trainer-card {
    padding: 30px 20px;
  }
  .trainer-circle-frame {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .locations-flex-container {
    flex-direction: column !important;
  }
  .location-col {
    width: 100%;
  }
  .loc-divider {
    display: none !important;
  }
  .location-col:first-child {
    margin-bottom: 30px !important;
    border-bottom: 1px dashed rgba(47, 67, 147, 0.1);
    padding-bottom: 25px;
  }
  .included-bottom-card {
    padding: 35px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .org-features-bar {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .org-feature-item {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(47, 67, 147, 0.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
  }
  .org-card {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 575px) {
  .trainer-body-row {
    flex-direction: column !important;
    text-align: center;
  }
  .trainer-photo-col {
    margin-bottom: 20px !important;
  }
  .trainer-info-col {
    padding-left: 0 !important;
  }
    .trainer-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: 0px;
        padding-top: 20px;
    }
}

.icon-circle svg {
  width: 100%;
  height: 100%;
}

.icon-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-transform: lowercase;
}


/* Media Queries customization specifically for the Jak pracujemy banner */
@media only screen and (max-width: 1399px) {
  .how-we-work-banner {
    flex-direction: column !important;
    padding: 35px;
  }
  .banner-left-info {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
    align-self: flex-start;
  }
  .banner-right-icons {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
  .banner-right-icons .banner-icons-header {
    grid-column: span 3;
    width: 100% !important;
  }
  .banner-icon-item {
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }
  .banner-icon-item:nth-child(4),
  .banner-icon-item:nth-child(5),
  .banner-icon-item:nth-child(6) {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .how-we-work-banner {
    padding: 30px 20px;
  }
  .banner-left-info {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
  }
  .banner-circle-icon {
    margin-right: 0;
    margin-bottom: 18px;
  }
  .banner-right-icons {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-right-icons .banner-icons-header {
    grid-column: span 2;
    width: 100% !important;
  }
  .banner-icon-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px;
  }

}

/* --- RESPONSIVENESS AND MEDIA QUERIES --- */
@media only screen and (max-width: 1400px) {
  .hero-title {
    font-size: 4.2rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-section {
    min-height: unset;
    padding-top: 140px;
    padding-bottom: 100px;
    background-position: 75% center;
  }
  .header-menu .nav-item {
    margin: 4px 0;
  }
  .btn-nav-container {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.02);
  }
  .btn-nav-container {
    margin-top: 15px;
    display: inline-block;
  }
  .btn-orange {
    width: 100%;
    text-align: center;
  }
  .header-menu .nav-link {
    padding: 5px 0 !important;
  }
  .header-menu .nav-link::after {
    display: none;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 45px;
    background-position: 55% center;
  }
  .hero-section::before {
    background: rgba(255, 255, 255, 0.82);
  }
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .hero-subtitle {
  font-size: 16px;
        padding-left: 15px;
        margin-bottom: 30px;
  }
  .btn-hero {
    width: 100%;
    padding:9px 25px;
  }
    .section-title {
        font-size: 19px;
    }
}

@media only screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
}

/* --- FOOTER SECTION --- */
.main-footer {
  background-color: #1a2754; /* deep royal theme navy */
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  font-family: var(--font-family-base);
}

.footer-logo {
  max-height: 55px;
  width: auto;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  max-width: 320px;
}

.footer-sub-title {
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #ffffff;
}

/* Social icons circles */
.social-icon-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 10px;
}

.social-icon-item:hover {
  background-color: var(--color-accent-orange);
  color: #ffffff;
  border-color: var(--color-accent-orange);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(241, 136, 5, 0.35);
}

.social-svg-icon {
  width: 100%;
  height: 100%;
}

/* Navigation column in footer */
.footer-headline {
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  color: #ffffff;
}

.footer-links-list li {
  position: relative;
}

.footer-link-item {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.25s ease;
}

.footer-link-item::before {
  content: '>';
  color: var(--color-accent-orange);
  font-weight: 800;
  margin-right: 10px;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.footer-link-item:hover {
  color: var(--color-accent-orange) !important;
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact-list li {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.contact-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-accent-orange);
  display: inline-block;
  margin-top: 1px;
}

.contact-svg-icon {
  width: 100%;
  height: 100%;
}

.contact-link {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88) !important;
  transition: color 0.25s ease;
}

a.contact-link:hover {
  color: var(--color-accent-orange) !important;
}

/* Framed CTA block */
.footer-cta-card-framed {
  border: 1.2px solid var(--color-accent-orange);
  border-radius: 20px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-speed) ease;
}

.footer-cta-card-framed:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(241, 136, 5, 0.05);
}

.footer-cta-framed-badge {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent-orange);
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.footer-cta-card-framed:hover .footer-cta-framed-badge {
  transform: rotate(360deg);
  background-color: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
}

.footer-cta-card-framed:hover .footer-cta-framed-badge svg {
  stroke: #ffffff;
}

.footer-cta-framed-text {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-cta-btn {
  padding: 12px 20px !important;
  font-size: 12.5px !important;
}

/* Responsiveness for Footer */
@media only screen and (max-width: 1199px) {
  .footer-brand-col {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .main-footer {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .footer-cta-col {
    margin-top: 30px;
  }
  .footer-cta-card-framed {
    padding: 30px 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  .main-footer {
    text-align: center !important;
  }
  .footer-brand-col {
    align-items: center !important;
  }
  .footer-brand-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .main-footer .orange-bar {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-link-item {
    justify-content: center;
  }
  .footer-contact-list li {
    justify-content: center;
    align-items: center !important;
  }
  .footer-contact-list li .d-flex {
    justify-content: center;
  }
  .footer-nav-col, .footer-contact-col {
    margin-top: 25px;
  }
  .footer-cta-col {
    margin-top: 40px;
  }
}

/* --- TESTIMONIALS SLIDER SECTION (OPINIE) --- */
.testimonials-section {
  background-color: #ffffff;
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}

/* Slick Slider Base Overrides */
.testimonials-slider {
  position: relative;
  padding: 0 45px; /* space for custom outer arrows */
}

/* Equal height columns setup for Slick Slider */
.testimonials-slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

.testimonials-slider .slick-slide {
  display: flex !important;
  height: auto !important;
  align-items: stretch !important;
}

.testimonials-slider .slick-slide > div {
  display: flex !important;
  flex: 1 1 auto;
  align-items: stretch !important;
}

.testimonial-slide-item {
  padding: 15px; /* spacing between adjacent cards */
  display: flex !important;
  flex-direction: column;
  width: 100%;
}

/* Testimonial Card Styling */
.testimonial-card {
  background-color: #f2f4fa;
  border-radius: 20px;
  padding: 35px 30px;
  width: 100%;
}

.slick-dots li button::before {
display:none
}

/* Star Rating */
.star-gold {
  color: var(--color-accent-orange);
  font-size: 18px;
  margin-right: 3px;
  display: inline-block;
  text-shadow: 0 1px 3px rgba(241, 136, 5, 0.2);
}

/* Quote Text */
.testimonial-quote {
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-text-dark);
  font-style: italic;
  margin: 0;
}

/* Avatar Placeholder matching screenshot */
.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f0f2f7;
  padding: 10px;
}

.avatar-icon {
  width: 100%;
  height: 100%;
}

.author-position {
  font-size: 13px;
  font-weight: 500;
}

/* Custom Navigation Slick Arrows (Matching Screenshot Buttons) */
.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.5px solid rgba(241, 136, 5, 0.08);
  color: var(--color-accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background-color: var(--color-accent-orange);
  color: #ffffff;
  border-color: var(--color-accent-orange);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(241, 136, 5, 0.35);
}

.slick-prev-custom {
  left: -5px;
}

.slick-next-custom {
  right: -5px;
}

.arrow-svg {
  width: 100%;
  height: 100%;
}

/* Custom Dots Styling matching the orange/grey dots in the screenshot */
.testimonials-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 35px 0 0 0;
  margin-left:-40px
}

.testimonials-slider .slick-dots li {
  margin: 0 6px;
}

.testimonials-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #e1e5eb;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li.slick-active button {
  background-color: var(--color-accent-orange);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(241, 136, 5, 0.4);
}

@media only screen and (max-width: 767px) {
  .testimonials-slider {
    padding: 0; /* remove arrow padding since arrows are hidden */
  }
}

/* --- NEWS SECTION (AKTUALNOŚCI) --- */
.news-section {
  background-color: #f5f6fa; /* high premium light gray clean background precisely */
  padding-top: 90px !important;
  padding-bottom: 100px !important;
}

/* News cards design */
.news-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(47, 67, 147, 0.03);
  border: 1px solid rgba(47, 67, 147, 0.04);
  transition: all var(--transition-speed) ease-in-out;
  width: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(47, 67, 147, 0.1);
  border-color: rgba(241, 136, 5, 0.2);
}

/* --- PARTNERS LOGO SECTION --- */
.partners-section {
  background-color: #ffffff;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
  border-top: 1px solid rgba(22, 43, 129, 0.04);
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all var(--transition-speed) ease-in-out;
}

.partner-logo-img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-logo-item:hover .partner-logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.news-img-box {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img {
  transform: scale(1.07);
}

/* Floating chic tag over images */
.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-accent-orange);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(241, 136, 5, 0.25);
}

/* News Body content */
.news-body {
  padding: 30px 25px;
}

.news-date {
  font-size: 12.5px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.news-title {
  font-size: 17.5px;
  font-weight: 800;
  line-height: 1.4;
}

.news-title a {
  color: var(--color-primary-blue) !important;
  transition: color 0.25s ease;
}

.news-title a:hover {
  color: var(--color-accent-orange) !important;
}

.news-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-dark);
  font-weight: 500;
  opacity: 0.9;
}

.news-footer .more-link {
  font-size: 11.5px;
  letter-spacing: 1px;
  transition: transform 0.25s ease;
}

.news-footer .more-link:hover {
  color: var(--color-accent-orange) !important;
  transform: translateX(4px);
}

/* --- WHY US SECTION (DLACZEGO WARTO ROZWIJAĆ LIDERÓW) --- */
.why-us-section {
  background-color: #ffffff;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  overflow: hidden;
}

.sub-label-orange {
  font-size: 15px;
  color: var(--color-accent-orange);
  letter-spacing: 1px;
  font-weight:500
}

.why-us-main-headline {
  font-size: 50px;
  line-height: 1.25;
  letter-spacing: 0px;
  font-weight:700
}

.why-us-intro-desc {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

/* Visual Wrapper with yellow background disks and bounding rings */
.why-us-decor-circle-wrapper {
  width: 480px;
  height: 480px;
}

.why-us-yellow-disk {
  position: absolute;
  top: 15px;
  left: 35px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  z-index: 2;
}

/* Thin circular borders */
.why-us-thin-bound-left {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border:2.5px solid var(--color-primary-blue);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.why-us-thin-bound-right {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent-orange);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.why-us-dotted-layer {
  position: absolute;
  right: -30px;
  bottom: 80px;
  width: 100px;
  height: 60px;
  background-image: radial-gradient(var(--color-primary-blue) 1.5px, transparent 1.5px);
  background-size: 12px 14px;
  opacity: 0.22;
  z-index: 0;
}

/* Composite central portrait frame */
.why-us-portrait-frame {
  position: absolute;
  top: 0;
  width: 420px;
  height: 450px;
  border-radius: 0 0 160px 160px;
  overflow: hidden;
  z-index: 4;
}

.why-us-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Feature Grid Cards */
.why-us-feature-card {
  background-color: #fbfcff;
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid rgba(47, 67, 147, 0.12);
  box-shadow: 0 6px 20px rgba(47, 67, 147, 0.015);
  transition: all var(--transition-speed) ease-in-out;
  width: 100%;
}

.why-us-feature-card:hover {
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 67, 147, 0.075);
  border-color: rgba(241, 136, 5, 0.15);
}

.why-icon-circle {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background-color: var(--color-primary-blue);
  color: #ffffff;
  padding: 14px;
  transition: all 0.3s ease;
}

.why-us-feature-card:hover .why-icon-circle {
  transform: rotate(15deg);
}

.why-icon-circle svg {
  width: 100%;
  height: 100%;
}

.why-card-title {
  font-size: 14px;
  letter-spacing: 0px;
  font-weight:600
}

.why-card-desc {
  font-size: 13px;
  line-height: 1.55;
}

.sub-orange-underline {
  width: 35px;
  height: 2px;
  background-color: var(--color-accent-orange);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.why-us-feature-card:hover .sub-orange-underline {
  width: 55px;
}

/* Quotes and hanging navy card bottom layer */
.quotes-outer-wrapper {
  margin-top: 80px !important;
}

.why-us-horizontal-dashed-line {
  width: 100%;
  border-bottom: 2px dashed rgba(241, 136, 5, 0.2);
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.why-us-bottom-quote-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent-orange);
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(241, 136, 5, 0.3);
}

.why-us-bottom-quote-icon .quote-symbol {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
}

/* Hanging navy cardboard box */
.why-us-navy-box {
  background-color: var(--color-primary-blue);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(47, 67, 147, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.04);
  width: 100%;
  max-width: 350px;
  position: relative;
  z-index: 5;
}

.navy-box-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 12px;
}

.navy-box-title {
  font-size: 13.5px;
  line-height: 1.7;
}

.navy-box-desc {
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.85;
}

.small-orange-rounded-bar {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 6px;
  border-radius: 6px 6px 0 0;
  background-color: var(--color-accent-orange);
}

/* Media Queries customization for WHY US */
@media only screen and (max-width: 1400px) {
  .quotes-decorative-line {
    width: 60%;
  }
}

@media only screen and (max-width: 991px) {
    .why-us-main-headline {
        font-size: 2rem;
    }

.h-100 {
    height: auto !important;
}

.orange-model-img {
    object-fit: contain !important;
    min-height: 100%;
}

  .why-us-decor-circle-wrapper {
    margin-top: 30px;
  }
  .quotes-decorative-line {
    display: none;
  }
  .why-us-navy-box {
    max-width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .why-us-main-headline {
    font-size: 1.95rem;
  }
  .why-us-decor-circle-wrapper {
    width: 310px;
    height: 310px;
  }
  .why-us-yellow-disk {
    width: 250px;
    height: 250px;
    left: 20px;
  }
  .why-us-thin-bound-left {
    width: 280px;
    height: 280px;
  }
  .why-us-portrait-frame {
    width: 260px;
    height: 290px;
    left: 10%;
    border-radius: 0 0 130px 130px;
  }
}

/* --- ORANGE MODEL SECTION (POD HERO) --- */
.orange-model-section {
  overflow: hidden;
  background-color:#f9a600;
  padding-top:70px;
  padding-bottom:70px
}




.bg-orange-accent {
  background-color: #f9a600 !important;
}

.orange-model-content {
  max-width: 580px;
}

.orange-model-headline {
  font-size: 2.25rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.small-white-bar {
  width: 60px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Custom premium navy button inside orange section */
.btn-navy-model {
  background-color: var(--color-primary-blue);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 15px 35px;
  border-radius: 50px;
  border: 2px solid var(--color-primary-blue);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(47, 67, 147, 0.15);
  text-decoration: none;
}

.btn-navy-model:hover {
  background-color: #1a2754; /* slightly darker deep blue */
  border-color: #1a2754;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(47, 67, 147, 0.3);
}

.btn-navy-model:active {
  transform: translateY(0);
}

/* Image scaling wrapper representing modeling map */
.orange-model-img-wrapper {
  overflow: hidden;
  width: 100%;
}

.orange-model-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 480px; /* robust block fitting matching text */
  transition: transform 0.6s ease;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0px;
    font-size:15px
}

.model-caption {
    font-size: 13.5px;
    line-height: 1.5;
    color: #ffffff !important;
    font-weight: 400;
    letter-spacing: 0.3px;
    opacity: .85;
    padding: 0px;
}

@media only screen and (max-width: 1599px) {
/* --- ORANGE MODEL SECTION (POD HERO) --- */
.orange-model-section {
  padding-top:30px;
  padding-bottom:30px
}

.orange-model-img {
    width: auto;
    height: auto;
    object-fit: none;
    min-height: 380px;
    transition: transform 0.6s ease;
}

.orange-model-img-wrapper img{
  width:100%;
max-width:500px
}

}


@media only screen and (max-width: 991px) {
    .orange-model-headline {
        font-size: 21px;
        line-height: 32px;
    }

  .navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.orange-model-section .p-5 {
  padding-bottom:20px !important
}

}


@media only screen and (max-width: 767px) {


.transition-navbar {
    padding-top: 6px;
    padding-bottom: 6px;
}

.transition-navbar.scrolled {
    padding-top: 4px;
    padding-bottom: 4px;
}

.orange-model-section {
    padding-top: 0px;
    padding-bottom: 30px;
}

.intro-for-who-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}
  
.intro-card, .for-who-card {
    padding: 35px 25px 35px 25px;
}

.card-section-title {
    font-size: 20px;
    line-height: 30px;
}

.intro-card-text {
    font-size: 14.5px;
    line-height: 1.75;
}

.for-who-list li {
    font-size: 14.5px;
    line-height: 1.60;
}

#program .mb-5 {
    margin-bottom: 0rem!important;
}

.card-body-box {
    padding: 30px 22px;
}

.banner-circle-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 12px;
}

.banner-title {
    font-size: 19px;
}

.banner-desc {
    font-size: 14.5px;
    line-height: 1.65;
}

#terminy .mb-5 {
    margin-bottom: 1rem !important;
}

.org-feature-item {
    padding: 20px 25px 15px;
}

.trainers-section {
  padding-top:35px
}

.trainers-section  .mb-5 {
    margin-bottom: 2rem !important;
}

.trainer-card {
  margin-bottom:20px
}

.included-value-section.py-5 {
  padding-top:10px !important
}

.cta-title-orange-text {
    font-size: 15px;
        line-height: 1.4;
    letter-spacing: .4px;
}

.cta-subtitle-white-text {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: .4px;
}

.cta-badge-icon-circular {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background-color: transparent;
    padding: 15px;
}

.why-us-portrait-frame {
    width: 100%;
    height: auto;
}

.why-us-feature-card {
    background-color: #fbfcff;
    border-radius: 20px;
    padding: 25px 15px;
}

.testimonials-section .mb-5 {
    margin-bottom: 1rem !important;
}

.testimonials-section {
    padding-bottom: 30px !important;
}

.testimonials-slider .slick-dots {
    margin-left: 0px;
}

.news-section {
    background-color: #f5f6fa;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

#aktualnosci .mb-5 {
    margin-bottom: 1.8rem !important;
}

.orange-model-img {
     min-height:200px !important;
    height: auto;
}

}

/* --- SUBPAGE (ZJAZDY) STYLES --- */
#hero-subpage {
  background-image: url('img/pagebg.jpg');
  min-height: 50vh;
  padding-top: 160px;
  padding-bottom: 70px;
}

.hero-subpage-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-subpage-desc {
  font-size: 1.15rem !important;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6 !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.italic-sub-subpage {
  font-style: italic;
  opacity: 0.9;
}

.subpage-heading {
  font-size: 24px;
  line-height: 1.3;
}

.lead-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
}

.orange-bar.size-hero {
  width: 80px;
  height: 4px;
}

.orange-bar.size-medium {
  width: 50px;
  height: 2px;
}

.orange-bar.size-small {
  width: 40px;
  height: 3px;
}

.orange-bar.size-form {
  width: 50px;
  height: 3px;
}

.orange-bar.size-footer-large {
  width: 45px;
  height: 3px;
}

.orange-bar.size-footer-small {
  width: 30px;
  height: 2px;
}

.subpage-section-badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  font-weight: 700;
}

.badge-blue {
  background-color: var(--color-primary-blue);
}

.badge-orange {
  background-color: var(--color-accent-orange);
}

.subpage-section-title {
  font-size: 20px;
}

.orange-checkbox.square {
  border-radius: 4px;
}

.zjazd-modul-top {
  margin-top:-310px
}

.subpage-list-number {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #ffa002;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(22, 43, 129, 0.15);
  transition: all 0.3s ease;
}

.subpage-list-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #ffa002;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(22, 43, 129, 0.15);
  transition: all 0.3s ease;
}

.program-box-fancy-list li {
  background-color:#f2f5fa;
  border-left: 3px solid #162b81;
  border-radius: 4px 12px 12px 4px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.program-box-fancy-list li:hover {
  background-color: rgba(22, 43, 129, 0.05);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(22, 43, 129, 0.06);
}

.program-box-fancy-list li:hover .subpage-list-number,
.program-box-fancy-list li:hover .subpage-list-icon {
  background-color: var(--color-accent-orange);
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(254, 161, 1, 0.3);
  color: #fff;
}

.subpage-list-item-text {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.blue-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--color-primary-blue);
}

.blue-checkbox svg {
  width: 100%;
  height: 100%;
}

.orange-accent-bullet {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--color-accent-orange);
}

.orange-accent-bullet svg {
  width: 100%;
  height: 100%;
}

.teleclass-box {
  background-color: rgba(22, 43, 129, 0.03);
  border-left: 4px solid var(--color-accent-orange);
  padding: 25px;
  border-radius: 0 12px 12px 0;
}

.teleclass-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.teleclass-icon svg {
  width: 100%;
  height: 100%;
}

.teleclass-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.teleclass-title {
  font-size: 18px;
}

.sidebar-sticky-wrapper {
  top: 110px;
  z-index: 10;
}

.sidebar-card {
  background-color: var(--color-primary-blue);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(22, 43, 129, 0.15);
}

.sidebar-card-img {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-height: 230px;
  width: 100%;
  object-fit: cover;
}

.sidebar-badge {
  font-size: 14px !important;
  color:var(--color-accent-orange)
}

.sidebar-title {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.sidebar-item-icon {
  font-size: 18px;
}

.sidebar-item-svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
}

.sidebar-item-text {
  font-size: 14px;
  font-weight: 500;
}

.sidebar-btn {
  letter-spacing: 0.5px;
}

.form-section-title {
  font-size: 28px;
}

.form-section-desc {
  max-width: 550px;
  font-size: 15px;
}

.form-wrapper {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(22, 43, 129, 0.05);
}

.form-custom-label {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-custom-input {
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.form-custom-input:focus {
  border-color: var(--color-accent-orange) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 161, 1, 0.25) !important;
}

.form-textarea {
  resize: none;
}

.form-custom-checkbox {
  cursor: pointer;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.15) !important;
}

.form-custom-checkbox-label {
  font-size: 12.5px;
  line-height: 1.5;
  cursor: pointer;
}

.form-submit-btn {
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.registration-section {
  background-color: #f7f9fc;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.bg-white-section {
  background-color: #ffffff;
}

.bg-light-section {
  background-color: #f7f9fc;
}

/* --- SUBPAGE HERO ORGANIZATIONAL DETAILS PANEL --- */
.hero-org-details-box {
  background: transparent;
  border: none;
}

.hero-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-detail-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-detail-item-icon.icon-orange {
  color: var(--color-primary-blue);
  border: none;
  background-color: transparent;
}

.hero-detail-item-icon svg {
  width: 32px;
  height: 32px;
}

.hero-detail-item-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-accent-orange);
  margin-bottom: 4px !important;
}

.hero-detail-item-desc {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
#hero-subpage {
    min-height: 0;
    padding-top: 120px;
    padding-bottom: 40px;
}

    #hero-subpage.hero-section::before {
        background: rgb(255 255 255 / 27%);
    }

.subpage-list-item-text {
    font-size: 13.5px;
    font-weight: 500;
}

.partners-section {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.mb-5.decorative-header-row {
    margin-bottom: 2rem !important;
}

.zjazd-modul-top {
    margin-top: 0px;
}

}

