
/* ============================================
   COLOR SCHEME D: Navy + Rose accent
   ============================================ */
:root {
    --primary: #2d3280;
    --primary-dark: #1e2260;
    --accent: #c41150;
    --accent-dark: #a00e42;
}
/* ============================================
   BERTZ MEDICAL
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   NAVIGATION - STICKY TOP MENU
   ============================================ */

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 25px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);  /* Białe tło po scrollu */
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper .logo {
    flex-shrink: 0;
}

.nav-wrapper .logo img {
    height: 120px;  /* Większe logo jak w The Way */
    width: auto;
    transition: all 0.3s ease;
}

/* Logo białe widoczne domyślnie */
.nav-wrapper .logo-white {
    display: block;
}

.nav-wrapper .logo-black {
    display: none;
}

/* Po scrollu: czarne logo, mniejsze */
.nav-wrapper.scrolled .logo img {
    height: 120px;
}

.nav-wrapper.scrolled .logo-white {
    display: none;
}

.nav-wrapper.scrolled .logo-black {
    display: block;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav > li {
    position: relative;
    display: flex;
    align-items: center;
}

/* Separators between menu items */
.main-nav > li:not(:last-child):after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled .main-nav > li:not(:last-child):after {
    color: rgba(51, 51, 51, 0.3);  /* Czarne po scrollu */
}

.main-nav > li > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;  /* Białe domyślnie */
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

/* Czarne po scrollu */
.nav-wrapper.scrolled .main-nav > li > a {
    color: #333;
}

.main-nav > li > a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;  /* Białe domyślnie */
    transition: width 0.3s ease;
}

/* Czarna linia po scrollu */
.nav-wrapper.scrolled .main-nav > li > a:after {
    background: #333;
}

.main-nav > li > a:hover:after,
.main-nav > li > a.active:after {
    width: 100%;
}

/* Separatory - białe/czarne */
.main-nav > li:not(:last-child):after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);  /* Białe domyślnie */
    margin: 0 20px;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.nav-wrapper.scrolled .main-nav > li:not(:last-child):after {
    color: rgba(51, 51, 51, 0.3);  /* Czarne po scrollu */
}

/* Dropdown Menu */
.main-nav li.has-dropdown {
    position: relative;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 0, 0, 0.7);  /* Przeźroczyste ciemne na hero */
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Szare tło po scrollu */
.nav-wrapper.scrolled .dropdown {
    background: rgba(245, 245, 245, 0.98);  /* Jasny szary */
    backdrop-filter: blur(10px);
}

.main-nav li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li {
    display: block;
    margin: 0;
}

.main-nav .dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);  /* Białe na hero */
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

/* Czarne linki po scrollu */
.nav-wrapper.scrolled .dropdown li a {
    color: #333;
}

.main-nav .dropdown li a:hover {
    background: rgba(255,255,255,0.1);
    border-left-color: #2d3280;  /* Niebieski akcent */
    color: #fff;
    padding-left: 24px;
}

/* Hover po scrollu */
.nav-wrapper.scrolled .dropdown li a:hover {
    background: rgba(45, 50, 128, 0.1);
    border-left-color: #2d3280;
    color: #2d3280;
}

/* ============================================
   HERO SECTION - FULL SCREEN WITH IMAGE SLIDER
   (REVOLUTION STYLE)
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0s 0.8s;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0s 0s;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease-out;
    will-change: transform;
}

.hero-slide.active .slide-background {
    transform: scale(1.08);
}

/* Video jako tło slajdu */
.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Box - ramka jak w The Way Revolution */
.hero-box {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 60px 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
	box-shadow: 0 0 60px rgba(196,17,80,0.25), 0 20px 80px rgba(0, 0, 0, 0.5); 
}

.hero-box:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Niebieskie akcenty w boxie (jak pomarańczowe w The Way) */
.accent-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #c41150;
    vertical-align: middle;
    margin: 0 15px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(45, 50, 128, 0.5);
}

.hero-slide.active .accent-line {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.25s;
}

/* Accent lines w nagłówkach sekcji - zawsze widoczne */
.section-title .accent-line {
    opacity: 1;
    transform: scaleX(1);
}

.title-accent {
    color: #2d3280;
    font-weight: 900;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.box-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-slide.active .box-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.box-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8); 
}

.hero-slide.active .box-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0%, 100% {
        top: 5px;
    }
    50% {
        top: 12px;
    }
}

/* ============================================
   TAGLINES SECTION (SLIDING TEXT)
   ============================================ */

.taglines-section {
    background: #f8f8f8;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-slider {
    position: relative;
    min-height: 150px;
}

.tagline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2d3280;
    margin-bottom: 15px;
}

.tagline p {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-top: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background: #fff;
}

/* Image Carousel */
.image-carousel {
    margin: 50px 0;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    width: 250px;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.carousel-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2d3280;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Content */
.about-content {
    margin-top: 60px;
}

.about-text-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
	margin-top: 60px;
}

.about-col h5 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2d3280;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.about-col {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
    padding: 60px 0;
}

.about-hero-left {
    text-align: center;
}

.about-logo {
    max-width: 400px;
    width: 100%;
}

.about-hero-right {
}

.about-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-dot {
    color: #2d3280;
    font-size: 48px;
}

.about-hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-hero-text strong {
    color: #333;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-logo {
        max-width: 250px;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #666;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #c41150;
    color: #fff;
}

/* Team CTA */
.team-cta {
    background: #c41150;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
}

.cta-content h4 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content h6 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #2d3280;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.main-quote {
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    color: #2d3280;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   WORKS/PORTFOLIO SECTION
   ============================================ */

.works-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.work-item-small {
    grid-column: span 1;
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
	opacity: 0; 
    transition: all 0.5s ease;
}

.work-item:hover .work-image img {
	opacity: 1;
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 50, 128, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.work-item:hover .work-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.work-info {
    text-align: center;
    color: #fff;
    transform: translateY(0);
    /*transition: transform 0.4s ease;*/
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.work-item:hover .work-info {
    transform: translateY(0);
}

.work-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.work-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.work-desc {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.work-info p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: #c41150;
}

.cta-box {
    text-align: center;
    color: #fff;
}

.cta-box h6 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.cta-box h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.btn-primary-light {
    display: inline-block;
    padding: 15px 50px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background: #fff;
    color: #2d3280;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.stats-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: #2d3280;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-item h6 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 80px;
    color: #2d3280;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: scale(1.15);
    color: #0077aa;
}

.service-item h5 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.testimonials-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 60px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-item blockquote {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.testimonial-item h6 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d3280;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d3280;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.error-msg {
    display: none;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 5px;
}

.form-group.error .error-msg {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.btn-submit {
    padding: 15px 40px;
    background: #c41150;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #a00e42;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196,17,80,0.25);
}

.form-messages div {
    display: none;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
}

.error-message {
    background: #fee;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.success-message {
    background: #efe;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.timeout-message {
    background: #ffeaa7;
    color: #e17055;
    border: 1px solid #e17055;
}

/* Contact Info */
.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

.contact-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    color: #2d3280;
    margin-top: 3px;
}

.info-item a {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #2d3280;
}

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

.footer {
    background: #c41150;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 35px;
}

.footer-text p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #2d3280;
    transform: translateY(-3px);
}

/* FontAwesome icons */
.icon-large {
    font-size: 60px;
    color: #2d3280;
    margin-bottom: 20px;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .nav-wrapper {
        padding: 20px 30px;
    }
    
    .main-nav {
        display: none;
    }
    
    .box-title {
        font-size: 48px;
    }
    
    .hero-box {
        padding: 40px 50px;
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .box-title {
        font-size: 36px;
    }
    
    .hero-box {
        padding: 30px 30px;
        border-width: 2px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text-cols {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nav-wrapper {
        padding: 15px 20px;
    }
    
    .box-title {
        font-size: 28px;
    }
    
    .box-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .accent-line {
        width: 30px;  /* Krótsze linie na mobile */
        margin: 0 10px;
    }
    
    .hero-box {
        padding: 20px 20px;
        border-width: 2px;
    }
    
    .hero-box:before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .tagline h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   Dodatkowe usprawnienia - NIE ZMIENIA istniejącego kodu
   ============================================ */

/* Mobile Extra Small (320px - 480px) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-wrapper .logo img {
        height: 90px;
    }
    
    /* Hero */
    .box-title {
        font-size: 24px !important;
    }
    
    .box-subtitle {
        font-size: 10px !important;
        letter-spacing: 1px;
    }
    
    .accent-line {
        width: 20px !important;
        margin: 0 8px !important;
    }
    
    /* Sections */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* About */
    .about-main-title {
        font-size: 26px !important;
    }
    
    .about-hero {
        gap: 20px;
        padding: 20px 0;
    }
    
    .about-logo {
        max-width: 180px;
    }
    
    .about-hero-text p {
        font-size: 14px;
    }
    
    /* Services */
    .service-icon {
        width: 80px !important;
        height: 80px !important;
    }
    
    .service-icon i {
        font-size: 50px !important;
    }
    
    .service-item h5 {
        font-size: 18px !important;
    }
    
    .service-item p {
        font-size: 13px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    /* Products/Works */
    .work-item .work-info h3 {
        font-size: 20px !important;
    }
    
    .work-item .work-info h5 {
        font-size: 14px;
    }
    
    .work-item .work-info p {
        font-size: 13px;
    }
    
    /* Contact */
    .contact-wrapper {
        padding: 20px 15px;
    }
    
    .contact-info h6 {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        padding: 30px 0;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Logo */
    .nav-wrapper .logo img {
        height: 100px;
    }
    
    /* About */
    .about-hero {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .about-logo {
        max-width: 250px;
    }
    
    /* Grids */
    .works-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Tablet Landscape (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    /* About */
    .about-hero {
        grid-template-columns: 320px 1fr;
    }
    
    /* Grids */
    .works-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Touch Devices - Disable hover effects */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap areas */
    .main-nav > li > a {
        padding: 15px 5px;
    }
    
    /* Always show overlay on touch */
    .work-item .work-overlay {
        opacity: 1 !important;
        background: rgba(45, 50, 128, 0.85);
    }
    
    /* Disable hover transforms */
    .service-item:hover {
        transform: none !important;
    }
    
    .work-item:hover .work-image img {
        transform: none !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 500px;
    }
    
    .box-title {
        font-size: 36px !important;
    }
    
    .hero-box {
        padding: 25px 35px;
    }
}

/* Print Styles */
@media print {
    .nav-wrapper,
    .scroll-indicator,
    .slider-dots,
    footer {
        display: none !important;
    }
    
    .hero-section {
        height: auto !important;
        min-height: auto !important;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ============================================
   KONTAKT PAGE - ADDITIONAL STYLES
   ============================================ */

/* ============================================
   HERO SECTION WITH GOOGLE MAP
   ============================================ */

.hero-map-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Google Map - iframe (nie wymaga API key!) */
.google-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Contact Boxes ON THE MAP - NA DOLE DLA WSZYSTKICH EKRANÓW! */
.contact-boxes-on-map {
    position: absolute;
    top: auto;
    bottom: 30px; /* Na dole ekranu */
    left: 50%;
    transform: translateX(-50%); /* Wycentrowane */
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 20px;
}

.container-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 10px; /* Mniejszy gap */
}

/* Contact Box - stylizowane jak hero-box - PRZEZROCZYSTE BEZ TŁA! MAŁE! */
.contact-box {
    /* BEZ background - przezroczyste jak hero-box! */
    padding: 15px 12px; /* BARDZO mały padding */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Cieńsza ramka */
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(45, 50, 128, 0.2), 0 5px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.contact-box:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-box:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 60px rgba(45, 50, 128, 0.35), 0 15px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.contact-box:hover:before {
    border-color: rgba(45, 50, 128, 0.35);
}

/* Main company box - większy i wyróżniony - LEKKO PRZEZROCZYSTY */
.contact-box-main {
    grid-column: span 3; /* 3 kolumny - cała szerokość */
    background: rgba(45, 50, 128, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.contact-box-main:before {
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-box-main:hover {
    background: rgba(45, 50, 128, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-box-main .contact-box-title,
.contact-box-main .contact-box-content,
.contact-box-main p {
    color: #fff;
}

.contact-box-main .contact-box-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-box-main .contact-box-icon i {
    color: #fff;
}

.contact-box-main a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.contact-box-main a:hover {
    text-decoration-color: #fff;
}

.contact-box-main:hover .contact-box-icon {
    background: rgba(255, 255, 255, 0.3);
}

/* Contact Box Icon - MNIEJSZA */
.contact-box-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px; /* Mniejszy margines */
    transition: all 0.4s ease;
}

.contact-box-icon i {
    font-size: 18px; /* Mniejsza ikona */
    color: #fff;
    transition: all 0.4s ease;
}

.contact-box:hover .contact-box-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-box:hover .contact-box-icon i {
    color: #fff;
}

/* Contact Box Title - MNIEJSZY */
.contact-box-title {
    font-size: 12px; /* Mniejsza czcionka */
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 8px; /* Mniejszy margines */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Contact Box Content - MNIEJSZE */
.contact-box-content {
    text-align: center;
}

.contact-box-content p {
    margin: 5px 0; /* Mniejsze marginesy */
    color: #fff;
    line-height: 1.4; /* Mniejsza wysokość linii */
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    font-size: 11px; /* Mniejsza czcionka */
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Mniejszy gap */
    font-size: 11px; /* Mniejsza czcionka */
}

.contact-item i {
    color: #fff;
    font-size: 12px; /* Mniejsza ikona */
    min-width: 14px;
}

.contact-item a {
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-item a:hover {
    color: #2d3280;
    text-shadow: 0 0 10px rgba(45, 50, 128, 0.7);
}

/* Company specific styles - MNIEJSZE */
.company-address,
.company-tax,
.company-web {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 5px 0;
    font-size: 12px; /* Mniejsza czcionka */
}

.company-address i,
.company-tax i,
.company-web i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    min-width: 16px;
}

/* ============================================
   ANIMACJE
   ============================================ */

.contact-box {
    opacity: 0;
    animation: fadeInBox 0.8s ease forwards;
}

.contact-box:nth-child(1) { animation-delay: 0.2s; }
.contact-box:nth-child(2) { animation-delay: 0.3s; }
.contact-box:nth-child(3) { animation-delay: 0.4s; }
.contact-box:nth-child(4) { animation-delay: 0.5s; }
.contact-box:nth-child(5) { animation-delay: 0.6s; }
.contact-box:nth-child(6) { animation-delay: 0.7s; }

@keyframes fadeInBox {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE FOR CONTACT PAGE
   ============================================ */

@media (max-width: 1200px) {
    .contact-boxes-on-map {
        bottom: 20px;
        max-width: 95%;
    }
    
    .container-boxes {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny */
        gap: 12px;
    }
    
    .contact-box-main {
        grid-column: span 2;
    }
    
    .contact-box {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .hero-map-section {
        min-height: 100vh;
    }
    
    .contact-boxes-on-map {
        bottom: 15px;
        padding: 10px;
    }
    
    .container-boxes {
        grid-template-columns: 1fr; /* 1 kolumna na mobile */
        gap: 10px;
    }
    
    .contact-box-main {
        grid-column: span 1;
    }
    
    .contact-box {
        padding: 20px 15px;
    }
    
    .contact-box-title {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 15px 12px;
    }
    
    .contact-box-title {
        font-size: 12px;
    }
    
    .contact-box-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-box-icon i {
        font-size: 20px;
    }
}


/* ============================================
   KONTAKT PAGE V2 - NEW LAYOUT
   Biały box na górze + mapa Google pod spodem
   ============================================ */

.contact-map-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    background: #f5f5f5;
}

.contact-info-overlay {
    position: relative;
    z-index: 10;
    padding: 0 20px 20px; /* Mniejszy padding dołem */
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 40px; /* MNIEJSZY padding */
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

.contact-main-title {
    font-size: 32px; /* Mniejszy */
    font-weight: 700;
    color: #333;
    margin-bottom: 10px; /* Mniejszy margines */
    text-align: center;
}

.contact-subtitle {
    font-size: 14px; /* Mniejszy */
    color: #666;
    text-align: center;
    margin-bottom: 30px; /* Mniejszy margines */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Mniejszy gap */
}

.contact-box-company {
    grid-column: span 3;
    background: #2d3280;
    color: #fff;
}

.contact-box-company h3,
.contact-box-company p,
.contact-box-company a {
    color: #fff;
}

.contact-box-company .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-box-company .info-icon i {
    color: #fff;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 20px 15px; /* MNIEJSZY padding */
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 50, 128, 0.15);
    border-color: #2d3280;
}

.info-icon {
    width: 50px; /* Mniejsza */
    height: 50px;
    background: rgba(45, 50, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px; /* Mniejszy margines */
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 22px; /* Mniejsza */
    color: #2d3280;
    transition: all 0.3s ease;
}

.contact-info-box:hover .info-icon {
    background: #c41150;
    transform: scale(1.1);
}

.contact-info-box:hover .info-icon i {
    color: #fff;
}

.contact-info-box h3 {
    font-size: 13px; /* Mniejszy */
    font-weight: 700;
    color: #333;
    margin-bottom: 10px; /* Mniejszy margines */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-box p {
    font-size: 12px; /* Mniejszy */
    color: #666;
    margin: 5px 0; /* Mniejszy margines */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-info-box p i {
    color: #2d3280;
    font-size: 12px; /* Mniejsza */
    min-width: 14px;
}

.contact-info-box a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: #2d3280;
}

.map-container {
    position: relative;
    width: 100%;
    height: 600px; /* Większa wysokość - żeby mapa była widoczna! */
    margin-top: 0; /* Usuwam ujemny margines */
}

.google-map-full {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-box-company {
        grid-column: span 2;
    }
    
    .contact-info-container {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-top: 120px;
    }
    
    .contact-info-container {
        padding: 30px 25px;
    }
    
    .contact-main-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-box-company {
        grid-column: span 1;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-info-container {
        padding: 25px 20px;
    }
    
    .contact-main-title {
        font-size: 28px;
    }
    
    .contact-info-box {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* ============================================
   KONTAKT PAGE V3 - NEW 2-COLUMN LAYOUT
   Like eee.webp: left info + right form + map below
   ============================================ */

/* Force dark nav on contact page (no hero, so always show dark) */
.page-contact .nav-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.page-contact .nav-wrapper .logo-white {
    display: none;
}

.page-contact .nav-wrapper .logo-black {
    display: block;
}

.page-contact .nav-wrapper .main-nav > li > a {
    color: #333;
}

.page-contact .nav-wrapper .main-nav > li > a:after {
    background: #333;
}

.page-contact .nav-wrapper .main-nav > li:not(:last-child):after {
    color: rgba(51, 51, 51, 0.3);
}

.page-contact .nav-wrapper .dropdown {
    background: rgba(245, 245, 245, 0.98);
}

.page-contact .nav-wrapper .dropdown li a {
    color: #333;
}

.page-contact .nav-wrapper .dropdown li a:hover {
    background: rgba(45, 50, 128, 0.1);
    border-left-color: #2d3280;
    color: #2d3280;
}

/* --- Section --- */
.contact-page-section {
    position: relative;
    padding-top: 180px;
    background: #f5f6f8;
    overflow: visible;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}

/* --- Two Column Grid --- */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 120px;
}

/* --- LEFT COLUMN --- */
.contact-left-col {
    padding-top: 0;
}

.contact-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-page-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.contact-col-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-detail-group {
    margin-bottom: 24px;
}

.contact-detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #2d3280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-detail-value {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.contact-detail-value a {
    color: #444;
    transition: color 0.25s ease;
}

.contact-detail-value a:hover {
    color: #2d3280;
}

/* --- Social Icons --- */
.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.contact-social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: #c41150;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(196, 17, 80, 0.3);
}

/* --- RIGHT COLUMN - Form Card --- */
.contact-right-col {
    position: relative;
    z-index: 10;
}

.contact-form-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 36px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-card-intro {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* --- Form Fields --- */
.contact-page-form .form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-page-form .form-field {
    margin-bottom: 20px;
}

.contact-page-form .form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 7px;
}

.contact-page-form .form-field input,
.contact-page-form .form-field textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1.5px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-page-form .form-field input:focus,
.contact-page-form .form-field textarea:focus {
    border-bottom-color: #2d3280;
}

.contact-page-form .form-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* --- Submit Button --- */
.form-submit-btn {
    display: inline-block;
    padding: 13px 36px;
    background: #c41150;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: #a00e42;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,17,80,0.25);
}

/* --- Map Full Width - Styled --- */
.contact-map-full {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: -80px;
    overflow: hidden;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: saturate(0.3) brightness(1.05) contrast(1.1) hue-rotate(190deg);
    transition: filter 0.5s ease;
}

.contact-map-full:hover iframe {
    filter: saturate(0.5) brightness(1.02) contrast(1.05) hue-rotate(190deg);
}

/* Subtle gradient overlay on map for brand cohesion */
.map-filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(245, 246, 248, 0.6) 0%,
        rgba(245, 246, 248, 0) 15%,
        rgba(45, 50, 128, 0.03) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* --- Custom Logo Marker --- */
.map-logo-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-logo {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(196,17,80,0.25);
    position: relative;
    z-index: 3;
}

.marker-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Pulse ring animation */
.marker-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(45, 50, 128, 0.25);
    z-index: 1;
    animation: markerPulse 2.5s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* --- Contact Page Responsive --- */

@media (max-width: 1024px) {
    .contact-two-col {
        gap: 40px;
    }
    
    .contact-form-card {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding-top: 140px;
    }
    
    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .contact-page-title {
        font-size: 32px;
    }
    
    .contact-map-full {
        height: 380px;
        margin-top: 0;
    }
    
    .contact-page-form .form-row-two {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding-top: 120px;
    }
    
    .contact-page-container {
        padding: 0 16px;
    }
    
    .contact-page-title {
        font-size: 28px;
    }
    
    .contact-form-card {
        padding: 28px 20px;
    }
    
    .contact-map-full {
        height: 300px;
    }
}

/* --- Centered Footer (contact page) --- */
.footer.footer-centered {
    background: #fff;
    padding: 50px 0 40px;
    border-top: 1px solid #eee;
}

.footer-content-centered {
    text-align: center;
}

.footer-logo-center {
    margin-bottom: 14px;
}

.footer-logo-center img {
    height: 90px;
    display: inline-block;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ============================================
   PRODUCER PAGE STYLES
   ============================================ */

/* Force dark nav on producer page */
.page-producer .nav-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.page-producer .nav-wrapper .logo-white { display: none; }
.page-producer .nav-wrapper .logo-black { display: block; }
.page-producer .nav-wrapper .main-nav > li > a { color: #333; }
.page-producer .nav-wrapper .main-nav > li > a:after { background: #333; }
.page-producer .nav-wrapper .main-nav > li:not(:last-child):after { color: rgba(51,51,51,0.3); }
.page-producer .nav-wrapper .dropdown { background: rgba(245,245,245,0.98); }
.page-producer .nav-wrapper .dropdown li a { color: #333; }
.page-producer .nav-wrapper .dropdown li a:hover {
    background: rgba(45, 50, 128, 0.1);
    border-left-color: #2d3280;
    color: #2d3280;
}

/* --- Producer Hero --- */
.producer-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 150px;
}

.producer-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
}

.producer-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,50,80,0.85) 0%, rgba(26,26,46,0.9) 100%);
}

.producer-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.producer-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.producer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.producer-name {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.producer-tagline {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
}

.producer-meta {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.producer-meta span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.producer-meta i {
    color: #c41150;
    font-size: 14px;
}

/* --- Producer About --- */
.producer-about {
    padding: 80px 0;
    background: #fff;
}

.producer-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.producer-about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.producer-about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 14px;
}

.producer-about-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.producer-stat {
    text-align: center;
}

.producer-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2d3280;
    line-height: 1;
    margin-bottom: 8px;
}

.producer-stat-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Products Section --- */
.products-section {
    padding: 80px 0 100px;
    background: #f5f6f8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* --- Product Card --- */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f0f0f0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(45, 50, 128, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-card-hover {
    opacity: 1;
}

.product-card-btn {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-btn i {
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-btn i {
    transform: translateX(4px);
}

.product-card-info {
    padding: 24px 24px 28px;
}

.product-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* ============================================
   PRODUCT DRAWER (slide-in from right)
   ============================================ */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 580px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0,0,0,0.15);
}

.product-drawer.active {
    transform: translateX(0);
}

/* Large screens: wider drawer */
@media (min-width: 1600px) {
    .product-drawer {
        width: 700px;
    }
}

@media (min-width: 2200px) {
    .product-drawer {
        width: 800px;
    }
}

/* --- Drawer Header --- */
.drawer-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    padding: 20px 28px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: #e74c3c;
    color: #fff;
    transform: rotate(90deg);
}

/* --- Drawer Body --- */
.drawer-body {
    padding: 0;
}

.drawer-product {
    display: none;
    padding: 0;
}

.drawer-product.active {
    display: block;
}

/* --- Drawer Product Gallery --- */
.drawer-product-gallery {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.drawer-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Drawer Product Details --- */
.drawer-product-name {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 28px 8px;
}

.drawer-product-category {
    font-size: 12px;
    color: #2d3280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 28px 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.drawer-product-desc {
    padding: 0 28px;
}

.drawer-product-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.drawer-product-desc h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.drawer-product-desc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.drawer-product-desc ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 6px 0 6px 20px;
    position: relative;
}

.drawer-product-desc ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 2px;
    background: #c41150;
}

/* --- Drawer Spec Table --- */
.drawer-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 20px;
}

.drawer-spec-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.drawer-spec-table td {
    padding: 10px 0;
    font-size: 13px;
    color: #555;
}

.drawer-spec-table td:first-child {
    font-weight: 600;
    color: #333;
    width: 45%;
}

/* --- Drawer Actions --- */
.drawer-product-actions {
    padding: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.drawer-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #c41150;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.drawer-btn-primary:hover {
    background: #a00e42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,17,80,0.25);
    color: #fff;
}

.drawer-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1.5px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.drawer-btn-secondary:hover {
    border-color: #2d3280;
    color: #2d3280;
}

/* --- Prevent body scroll when drawer open --- */
body.drawer-open {
    overflow: hidden;
}

/* --- Producer Page Responsive --- */

@media (max-width: 768px) {
    .producer-hero {
        height: 320px;
        margin-top: 70px;
    }
    
    .producer-name {
        font-size: 32px;
    }
    
    .producer-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-drawer {
        width: 100%;
        max-width: 100vw;
    }
    
    .producer-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .producer-hero {
        height: 280px;
    }
    
    .producer-name {
        font-size: 26px;
    }
    
    .drawer-product-name {
        font-size: 22px;
    }
    
    .drawer-product-actions {
        flex-direction: column;
    }
}

/* ============================================
   SERVICE HOTLINE (under services section)
   ============================================ */

.services-hotline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.services-hotline a {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.services-hotline a:hover {
    color: var(--primary-dark, #222);
}

.services-hotline a i {
    font-size: 18px;
}

.hotline-divider {
    color: #ccc;
    font-size: 20px;
    font-weight: 300;
}

/* ============================================
   HERO BOX LINKS
   ============================================ */

.hero-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.hero-box-link:hover {
    transform: scale(1.03);
}

.hero-box-link h1,
.hero-box-link p,
.hero-box-link span {
    color: inherit;
}

/* ============================================
   KONTAKT PAGE V4 - REDESIGNED
   Hero map + gradient header + icon cards
   ============================================ */

/* Hero Map */
.contact-hero-map {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.contact-hero-map-inner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.contact-hero-map-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.8) brightness(1.05);
}

.contact-hero-badge {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.hero-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary, #2d3280);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-badge-text strong {
    font-size: 16px;
    color: #222;
}

.hero-badge-text span {
    font-size: 14px;
    color: #666;
}

/* Contact Header with gradient */
.contact-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 50px;
    text-align: center;
}

.contact-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards-section {
    padding: 60px 0;
    background: #fff;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c41150, #2d3280);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary, #2d3280);
    box-shadow: 0 10px 30px rgba(45,50,128,0.12);
    transform: translateY(-4px);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #2d3280;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.contact-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-card-body a {
    color: var(--primary, #2d3280);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card-body a:hover {
    color: #222;
}

/* Form Section V2 */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-form-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.contact-form-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-form-left .contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contact-form-left .contact-social-icons a {
    width: 44px;
    height: 44px;
    background: var(--primary, #2d3280);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-form-left .contact-social-icons a:hover {
    background: #222;
    transform: translateY(-3px);
}

.contact-form-right {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-wrapper-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-map-inner {
        height: 280px;
    }
    .contact-hero-title {
        font-size: 30px;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-badge-inner {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    .contact-form-right {
        padding: 25px;
    }
}

/* ============================================
   UNIFIED CARDS - shared style for:
   - Services section (index.html)
   - About section (index.html)
   - Contact cards (kontakt.html)
   ============================================ */

.unified-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.unified-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 35px 25px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c41150, #2d3280);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.unified-card:hover {
    border-color: var(--primary, #2d3280);
    box-shadow: 0 10px 30px rgba(45,50,128,0.12);
    transform: translateY(-4px);
}

.unified-card:hover::before {
    transform: scaleX(1);
}

.unified-card-icon {
    width: 60px;
    height: 60px;
    background: #2d3280;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.unified-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.unified-card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.unified-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.unified-card-body a {
    color: var(--primary, #2d3280);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.unified-card-body a:hover {
    color: #222;
}

@media (max-width: 1024px) {
    .unified-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unified-cards-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   LANGUAGE SWITCHER - absolute, top-right
   Same font as nav, inherits color transitions
   ============================================ */

.nav-wrapper .container {
    position: relative;
}

.lang-switcher {
    position: absolute;
    top: 0;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.lang-switcher a:hover {
    color: #fff;
}

.lang-switcher a.active {
    color: #fff;
    font-weight: 700;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 300;
    user-select: none;
}

/* Scrolled - active lang */
.nav-wrapper.scrolled .lang-switcher a.active {
    color: #222;
    font-weight: 700;
}

/* Contact/Producer - active lang */
.page-contact .lang-switcher a.active,
.page-producer .lang-switcher a.active {
    color: #222;
    font-weight: 700;
}

/* Scrolled state - white nav */
.nav-wrapper.scrolled .lang-switcher a {
    color: rgba(51, 51, 51, 0.55);
}
.nav-wrapper.scrolled .lang-switcher a:hover {
    color: #333;
}
.nav-wrapper.scrolled .lang-sep {
    color: rgba(51, 51, 51, 0.3);
}

/* Pages with always-light nav (contact, producer) */
.page-contact .lang-switcher a,
.page-producer .lang-switcher a {
    color: rgba(51, 51, 51, 0.55);
}
.page-contact .lang-switcher a:hover,
.page-producer .lang-switcher a:hover {
    color: #333;
}
.page-contact .lang-sep,
.page-producer .lang-sep {
    color: rgba(51, 51, 51, 0.3);
}
/* ================================================
   MEDICAL DISCLAIMER MODAL (Purpose Gate)
   ================================================ */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.disclaimer-modal {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 36px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Bottom gradient bar */
.disclaimer-modal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent, #c41150), var(--primary, #2d3280));
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2d3280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.disclaimer-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.disclaimer-modal h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.disclaimer-modal p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin: 0 0 24px;
}

.disclaimer-statement {
    background: #f4f5fb;
    border: 1px solid #dcdde8;
    border-left: 3px solid #2d3280;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 0 28px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.disclaimer-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.disclaimer-btn {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.disclaimer-btn-no {
    background: #fff;
    color: #2d3280;
    border: 2px solid #2d3280;
}

.disclaimer-btn-no:hover {
    background: #f4f5fb;
    color: #1e2260;
}

.disclaimer-btn-yes {
    background: #2d3280;
    color: #fff;
}

.disclaimer-btn-yes:hover {
    background: #1e2260;
    box-shadow: 0 4px 16px rgba(45, 50, 128, 0.35);
}

/* Body scroll lock when modal is open */
body.disclaimer-open {
    overflow: hidden;
}

/* Animation */
.disclaimer-overlay {
    animation: disclaimerFadeIn 0.3s ease;
}

.disclaimer-modal {
    animation: disclaimerSlideIn 0.35s ease;
}

@keyframes disclaimerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes disclaimerSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 480px) {
    .disclaimer-modal {
        padding: 36px 24px 28px;
    }
    .disclaimer-modal h2 {
        font-size: 19px;
    }
    .disclaimer-buttons {
        flex-direction: column-reverse;
    }
    .disclaimer-btn {
        width: 100%;
    }
}

/* ================================================
   MOBILE HAMBURGER MENU
   ================================================ */

/* Hamburger button - hidden on desktop */
.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.mobile-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Scrolled / contact / producer pages - dark hamburger */
.nav-wrapper.scrolled .mobile-hamburger span,
.page-contact .mobile-hamburger span,
.page-producer .mobile-hamburger span {
    background: #1a1a2e;
}

/* Hamburger active (X) */
.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media (max-width: 992px) {
    .mobile-hamburger {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 22px;
    color: #555;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #2d3280;
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid #f0f0f5;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 16px 24px;
    color: #1a1a2e;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-menu-list > li > a:hover,
.mobile-menu-list > li > a:active {
    background: #f4f5fb;
    color: #2d3280;
}

/* Mobile Dropdown (Produkty accordion) */
.mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f8f9fc;
}

.mobile-has-dropdown.open .mobile-dropdown {
    max-height: 2000px;
    overflow-y: auto;
    transition: max-height 0.5s ease;
}

.mobile-dropdown li a {
    display: block;
    padding: 9px 16px 9px 32px;
    color: #555;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    border-top: 1px solid #eef0f5;
    transition: all 0.2s;
}

.mobile-dropdown li a:hover,
.mobile-dropdown li a:active {
    color: #2d3280;
    background: #eef0f8;
}

/* Mobile Menu Language Switcher */
.mobile-menu-lang {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-lang a {
    color: #888;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.mobile-menu-lang a.active {
    color: #2d3280;
    font-weight: 700;
}

.mobile-menu-lang a:hover {
    color: #2d3280;
}

.mobile-menu-lang span {
    color: #ccc;
    font-size: 14px;
}

/* Body lock when menu open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ================================================
   MOBILE HERO (replaces slider on small screens)
   ================================================ */
.hero-mobile {
    display: none;
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.6) 0%, rgba(45, 50, 128, 0.75) 100%);
}

.hero-mobile-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 24px;
}

.hero-mobile-subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.hero-mobile-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-mobile-title .title-accent {
    color: #c41150;
}

.hero-mobile-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2d3280;
    color: #fff;
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-mobile-btn:hover {
    background: #1e2260;
    box-shadow: 0 4px 16px rgba(45, 50, 128, 0.4);
}

/* ================================================
   RESPONSIVE: Show mobile hero, hide slider
   ================================================ */
@media (max-width: 768px) {
    /* Hide desktop slider */
    .hero-slider-section {
        display: none !important;
    }

    /* Show mobile hero */
    .hero-mobile {
        display: block;
    }

    /* Hide lang-switcher in nav on mobile (it's in mobile menu) */
    .lang-switcher {
        display: none;
    }

    /* Taglines smaller */
    .tagline h2 {
        font-size: 24px !important;
    }
    .tagline p {
        font-size: 13px;
    }

    /* About section */
    .about-hero {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .about-hero-left {
        display: flex;
        justify-content: center;
    }

    .about-logo {
        max-width: 200px;
    }

    .about-main-title {
        font-size: 24px !important;
        text-align: center;
    }

    .about-hero-text p {
        text-align: left;
        font-size: 14px;
    }

    /* Unified cards */
    .unified-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Quote section */
    .main-quote {
        font-size: 20px !important;
        padding: 0 10px;
    }

    /* Section headers */
    .section-title {
        font-size: 22px !important;
    }

    .section-subtitle {
        font-size: 13px !important;
    }

    /* Works grid */
    .works-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    /* Section paddings */
    .about-section,
    .works-section,
    .services-section,
    .quote-section,
    .taglines-section {
        padding: 50px 0 !important;
    }
}

/* Extra small phones */
@media (max-width: 400px) {
    .hero-mobile-title {
        font-size: 34px;
    }

    .hero-mobile {
        min-height: 420px;
        height: 75vh;
    }

    .mobile-menu {
        width: 280px;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet (769px - 992px) — slider stays but hamburger appears */
@media (min-width: 769px) and (max-width: 992px) {
    .lang-switcher {
        display: none;
    }
}
