@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #0b1a13;
    --primary: #123020;
    --primary-light: #1c4530;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b3946b;
    --accent: #d4e3db;
    --accent-bright: #d4af37; /* Polished gold */
    --accent-sage: #8fa89b;
    --text-dark: #1c2420;
    --text-light: #f5f7f6;
    --white: #ffffff;
    --gray-light: #f6f8f7;
    --gray-border: #e2e8e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 110px; /* Offset na menu z paskiem górnym */
}

body {
    background-color: var(--gray-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .section-subtitle, .logo, .nav-links a {
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

/* Animations & Modern Accents */
@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

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

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

.footer-gallery-strip:hover {
    animation-play-state: paused;
}

/* TOP CONTACT BAR */
.top-bar {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    padding: 8px 5%;
    z-index: 1001;
    position: relative;
    max-height: 60px;
    opacity: 1;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
}

.top-bar-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.top-bar-contact a:hover {
    color: var(--accent-gold);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Menu */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 2px solid transparent;
}

header.scrolled {
    background-color: rgba(11, 26, 19, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid var(--accent-gold);
}

header.scrolled .top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    opacity: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo img {
    width: 110px;
    height: auto;
    transition: width 0.3s ease;
    display: block;
}

header.scrolled .logo img {
    width: 75px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Dropdown Oferta */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(11, 26, 19, 0.98);
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-top: 3px solid var(--accent-gold);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown-content li {
    list-style: none;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 12px 20px;
    font-size: 0.72rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

.btn-nav {
    background-color: var(--accent-gold) !important;
    border: 1px solid var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 800 !important;
    letter-spacing: 1.5px;
}

.btn-nav:hover {
    background-color: var(--accent-bright) !important;
    border-color: var(--accent-bright) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.social-icon {
    font-size: 1.1rem !important;
}

/* Animacje wejścia (AOS) */
.aos {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aos.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* HERO SECTION - RESTRUCTURED DUAL SLIDER LAYOUT */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding: 130px 4% 60px !important;
    max-width: 100% !important;
    background: #0b1a13;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: 0;
    filter: brightness(0.75) contrast(1.1);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(28, 69, 48, 0.45) 0%, rgba(11, 26, 19, 0.95) 80%),
                repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.15) 0px, rgba(0, 0, 0, 0.15) 2px, transparent 2px, transparent 8px);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.hero-text-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 26, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.45);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title-main {
    font-size: clamp(1.9rem, 3.1vw, 2.9rem) !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.25;
    margin: 0 0 1.4rem;
    max-width: 100%;
    color: var(--white);
    text-align: left;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.9));
}

.hero-highlight-text {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 2px solid rgba(197, 168, 128, 0.4);
    padding-bottom: 2px;
}

.hero-subtitle-text {
    max-width: 100%;
    margin: 0 0 1.8rem;
    font-size: clamp(0.98rem, 1.1vw, 1.12rem);
    color: var(--accent);
    line-height: 1.65;
    font-weight: 400;
    opacity: 0.95;
    text-align: left;
}

.hero-feature-tags {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.hero-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 6px 15px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-feature-tag i {
    color: var(--accent-gold);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 0.5rem;
}

/* DUAL SLIDERS SHOWCASE CONTAINER */
.hero-sliders-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 12px;
    background: rgba(11, 26, 19, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

.hero-sliders-col::before,
.hero-sliders-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 5;
    pointer-events: none;
}

.hero-sliders-col::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(11, 26, 19, 0.95), transparent);
}

.hero-sliders-col::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 26, 19, 0.95), transparent);
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-slider-label {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-slider-label span {
    background: rgba(11, 26, 19, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-slider-track {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    will-change: transform;
}

.slider-track-1 .hero-slider-track {
    animation: heroScrollUp 32s linear infinite;
}

.slider-track-2 .hero-slider-track {
    animation: heroScrollDown 38s linear infinite;
}

.hero-sliders-col:hover .hero-slider-track {
    animation-play-state: paused;
}

@keyframes heroScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes heroScrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.hero-slide-card {
    position: relative;
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hero-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.slide-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 26, 19, 0.6) 0%, transparent 60%);
    transition: opacity 0.3s ease;
}

.hero-slide-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.4);
    transform: scale(1.03);
    z-index: 4;
}

.hero-slide-card:hover img {
    transform: scale(1.08);
}

/* RESPONSIVE LAYOUT FOR HERO */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text-col {
        text-align: center;
        align-items: center;
    }

    .hero-title-main,
    .hero-subtitle-text {
        text-align: center !important;
    }

    .hero-feature-tags,
    .hero-cta-group {
        justify-content: center !important;
    }

    .hero-sliders-col {
        height: 360px;
    }
}
    margin-top: 1.5rem;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}

.btn-tactical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-tactical:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.25);
}

.btn-tactical.btn-gold {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark) !important;
}

.btn-tactical.btn-gold:hover {
    background-color: var(--accent-bright);
    border-color: var(--accent-bright);
    color: var(--primary-dark) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-tactical.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-tactical.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.3);
}

.btn-tactical.btn-text {
    border-color: transparent;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.btn-tactical.btn-text:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* Sekcje Ogólne */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.full-width-section {
    padding-top: 6rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.dark-bg {
    background-color: var(--primary);
    color: var(--text-light);
    max-width: 100%;
    border-top: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

.dark-bg .section-title {
    color: var(--white);
}

.dark-bg .section-subtitle {
    color: var(--accent-gold);
}

.tactical-pattern {
    background-color: var(--primary);
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.08) 0px, rgba(0, 0, 0, 0.08) 2px, transparent 2px, transparent 8px);
}

.tactical-pattern-dark {
    background-color: var(--primary-dark);
    background-image: repeating-linear-gradient(45deg, rgba(197, 168, 128, 0.02) 0px, rgba(197, 168, 128, 0.02) 2px, transparent 2px, transparent 8px);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Taktyczne Nagłówki */
.tactical-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--primary-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-title::before { left: -45px; }
.section-title::after { right: -45px; }

/* Obrazy / Ramki */
.image-full {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 2px solid var(--primary-light);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tactical-frame {
    position: relative;
    z-index: 1;
    padding-right: 15px;
    padding-bottom: 15px;
    margin: 1.5rem 0;
}

.tactical-frame img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.tactical-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 2px solid var(--accent-gold);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tactical-frame:hover img {
    transform: translate(-5px, -5px);
}

.tactical-frame:hover::after {
    transform: translate(5px, 5px);
    background-color: rgba(197, 168, 128, 0.05);
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tactical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 3rem;
}

/* Tactical Cards */
.t-card {
    position: relative;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-light);
    background-color: var(--primary-dark);
}

.edge-grid .t-card {
    border-radius: 0;
    border: none;
    height: 400px;
}

.t-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.t-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 26, 19, 1) 0%, rgba(11, 26, 19, 0.4) 50%, rgba(11, 26, 19, 0) 100%);
    transition: all 0.4s ease;
}

.t-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    color: var(--white);
    transform: translateY(calc(100% - 80px));
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.t-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
}

.t-card-desc {
    font-size: 0.92rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    line-height: 1.5;
}

.t-card:hover .t-card-img {
    transform: scale(1.08);
    opacity: 0.35;
}

.t-card:hover .t-card-overlay {
    background: rgba(11, 26, 19, 0.9);
}

.t-card:hover .t-card-content {
    transform: translateY(0);
}

.t-card:hover .t-card-desc {
    opacity: 1;
}

/* Nieregularna Galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin-top: 3rem;
}

.g-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.g-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    border-color: var(--accent-gold);
}

.g-item-1 { grid-column: span 2; grid-row: span 2; }
.g-item-2 { grid-column: span 2; grid-row: span 1; }
.g-item-3 { grid-column: span 1; grid-row: span 1; }
.g-item-4 { grid-column: span 1; grid-row: span 1; }
.g-item-5 { grid-column: span 2; grid-row: span 1; }
.g-item-6 { grid-column: span 1; grid-row: span 1; }
.g-item-7 { grid-column: span 1; grid-row: span 1; }

/* Karty Studia */
.study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.study-card {
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-top: 3px solid var(--primary-light);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.study-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.2rem;
    transition: color 0.3s;
}

.study-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.study-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.study-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.study-card:hover i {
    color: var(--accent-gold);
}

/* AUDIENCE SEGMENTS SECTION */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 868px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.audience-card {
    position: relative;
    background-color: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--accent-gold);
    border-radius: 6px;
    padding: 2.5rem 2.2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    color: var(--white);
    z-index: 1;
}

.audience-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 0.6s ease, opacity 0.4s ease;
    z-index: -2;
}

.audience-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 19, 0.75) 0%, rgba(21, 71, 45, 0.60) 100%);
    z-index: -1;
    transition: background 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-7px);
    border-color: var(--accent-gold);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.audience-card:hover .audience-card-bg {
    transform: scale(1.08);
    opacity: 0.75;
}

.audience-card:hover .audience-card-overlay {
    background: linear-gradient(135deg, rgba(11, 26, 19, 0.62) 0%, rgba(28, 69, 48, 0.48) 100%);
}

.audience-card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-card-icon {
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.audience-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.audience-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.audience-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.audience-list li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.audience-btn {
    display: block;
    text-align: center;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    border: 1px solid var(--accent-gold);
}

.audience-btn:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}

/* DLACZEGO WARTO (BENEFITS) */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: 6px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: color 0.3s;
}

.benefit-item:hover .benefit-icon {
    color: var(--accent-gold);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--accent);
    opacity: 0.8;
    max-width: 200px;
    line-height: 1.4;
}

/* PARTNERS & TESTIMONIALS */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.partner-logo {
    background-color: var(--gray-light);
    border: 1px solid var(--gray-border);
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-align: center;
    padding: 1.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.partner-logo:hover {
    border-color: var(--accent-gold);
    background-color: var(--white);
    color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    padding: 2.2rem 2rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    transition: all 0.3s;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(197, 168, 128, 0.15);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* NEWS SECTION */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.news-card {
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.news-img-container {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

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

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

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-more-btn {
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.news-more-btn:hover {
    color: var(--accent-gold);
}

/* SUBPAGE TEMPLATES */
.subpage-hero {
    position: relative;
    padding: 10rem 5% 5rem;
    background-color: var(--primary-dark);
    background-image: repeating-linear-gradient(45deg, rgba(197, 168, 128, 0.03) 0px, rgba(197, 168, 128, 0.03) 2px, transparent 2px, transparent 8px);
    border-bottom: 3px solid var(--accent-gold);
    text-align: center;
    color: var(--white);
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
}

.subpage-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.subpage-hero p {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--accent);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb,
.breadcrumbs {
    font-size: 0.88rem;
    color: var(--accent-sage);
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.breadcrumb a,
.breadcrumbs a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
    color: var(--white);
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    margin-bottom: 1rem;
}

.main-content h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.3rem);
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
    position: relative;
}

.main-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
    margin-top: 0.8rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.sidebar-layout {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.sidebar-box {
    background-color: var(--gray-light);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sidebar-box h3,
.sidebar-box h4 {
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.6rem;
}

.sidebar-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.sidebar-menu a:hover, 
.sidebar-menu a.active {
    color: var(--primary);
    padding-left: 5px;
}

.sidebar-menu a.active {
    color: var(--accent-gold);
    font-weight: 700;
}

.sidebar-box.contact-box,
.sidebar-contact-card {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--primary-light);
    border-top: 4px solid var(--accent-gold);
}

.sidebar-box.contact-box h4,
.sidebar-contact-card h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.sidebar-box.contact-box p,
.sidebar-contact-card p {
    font-size: 0.88rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.contact-link i {
    color: var(--accent-gold);
}

.contact-link:hover {
    color: var(--accent-gold);
}

.sidebar-contact-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.sidebar-contact-btn:hover {
    background: var(--accent-bright);
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.lead-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: start;
}

@media (max-width: 960px) {
    .lead-form-wrapper {
        grid-template-columns: 1fr;
    }
}

.lead-form-box {
    background-color: var(--gray-light);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--gray-border);
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lead-form-box h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.lead-form-box p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.lead-form-box label {
    color: #555;
    cursor: pointer;
}

.lead-form-box input,
.lead-form-box textarea,
.lead-form-box select {
    background-color: var(--white) !important;
    border: 1px solid var(--gray-border) !important;
    color: var(--primary-dark) !important;
    font-size: 0.95rem;
}

.lead-form-box input:focus,
.lead-form-box textarea:focus,
.lead-form-box select:focus {
    border-color: var(--accent-gold) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.recruitment-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    padding: 2rem;
    border-radius: 4px;
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Stopka / Kontakt */
footer {
    color: var(--text-light);
    padding: 5rem 5% 3rem;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-info i {
    color: var(--accent-gold);
    margin-right: 10px;
    width: 25px;
}

/* Formularz Kontaktowy */
.tactical-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tactical-form input,
.tactical-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--primary-light);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tactical-form input:focus,
.tactical-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

.tactical-form input::placeholder,
.tactical-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsywność */
@media (max-width: 900px) {
    .grid-2, .sidebar-layout, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .tactical-grid,
    .edge-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .g-item-1, .g-item-2, .g-item-3, .g-item-4, .g-item-5, .g-item-6, .g-item-7 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 350px;
        background-color: rgba(11, 26, 19, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 7rem 2rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
        overflow-y: auto;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.05rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dropdown > a {
        margin-bottom: 0.5rem;
    }
    
    .dropdown-content {
        position: static !important;
        display: flex !important;
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        width: 100%;
        margin-top: 0;
        transform: none;
    }
    
    .dropdown-content li {
        width: 100%;
    }
    
    .dropdown-content a {
        border: none;
        padding: 10px 0;
        font-size: 0.92rem;
        color: var(--accent);
    }
    
    .nav-separator {
        display: none;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .contact-grid {
        text-align: center;
    }
    
    .t-card-content {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(11, 26, 19, 1) 0%, rgba(11, 26, 19, 0.8) 100%);
    }
    
    .t-card-desc {
        opacity: 1;
    }
    
    .top-bar {
        display: none; /* Ukryj topbar na bardzo małych urządzeniach */
    }
    
    html {
        scroll-padding-top: 80px;
    }
}

/* ==========================================================================
   MODERN CUSTOM UI COMPONENTS (Anti-Generic AI Touch)
   ========================================================================== */

/* Hero Live Pill */
.hero-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

/* Floating Hero Badges */
.hero-floating-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-badge-card {
    background: rgba(11, 26, 19, 0.65);
    border: 1px solid rgba(197, 168, 128, 0.25);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: floatBadge 5s ease-in-out infinite;
}

.hero-badge-card:nth-child(2) { animation-delay: 1.5s; }
.hero-badge-card:nth-child(3) { animation-delay: 3s; }

.hero-badge-icon {
    width: 38px;
    height: 38px;
    background: rgba(197, 168, 128, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Stats Counter Bar */
.stats-bar-section {
    background: var(--primary-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding: 2.5rem 5%;
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Partner Logo Marquee */
.marquee-section {
    background: var(--white);
    padding: 2rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-border);
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 1rem;
}

.marquee-wrapper {
    display: flex;
    width: 200%;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    gap: 3rem;
}

.partner-logo-box {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    opacity: 0.65;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.partner-logo-box:hover {
    opacity: 1;
    color: var(--primary);
}

/* Modern FAQ Accordion */
.faq-section {
    background-color: var(--gray-light);
    padding: 5rem 5%;
    border-bottom: 1px solid var(--gray-border);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}
