/* ═══════════════════════════════════════════
   BikeFlow — main.css
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #2f4997;
    --navy: #152c6e;
    --perks-blue: #4e67ae;
    --white: #ffffff;
    --gray-100: #f5f6fa;
    --gray-200: #e8eaf0;
    --gray-600: #6b7280;
    --shadow-hero: 0px 3px 10px rgba(0,0,0,0.64);
    --shadow-nav: 0px 3px 10px rgba(0,0,0,0.43);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #1a1a2e;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s;
}

.main-nav.scrolled {
    background: rgba(21, 44, 110, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    text-shadow: var(--shadow-nav);
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.8; }

.nav-btn {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-shadow: var(--shadow-nav);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--navy);
    text-shadow: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    text-align: center;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    padding: 14px 36px;
    box-shadow: 0 4px 20px rgba(47, 73, 151, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 28px rgba(47, 73, 151, 0.5);
}

.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   HOME HERO
   ═══════════════════════════════════════════ */
.home-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
}

.home-hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.home-hero-text {
    max-width: 400px;
    text-align: left;
}

.home-hero-text h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    text-shadow: var(--shadow-hero);
    margin-bottom: 20px;
}

.home-hero-text > p {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 300;
    line-height: 1.5;
    text-shadow: var(--shadow-hero);
    margin-bottom: 8px;
}

.home-hero-small {
    font-size: clamp(12px, 1.3vw, 14px) !important;
    opacity: 0.8;
    margin-bottom: 28px !important;
}

.home-hero-text .btn {
    font-size: 14px;
    padding: 12px 32px;
}

/* ═══════════════════════════════════════════
   GENERIC HERO (sub-pages)
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-small { min-height: 50vh; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,44,110,0.55) 0%, rgba(21,44,110,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 120px 24px 80px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: var(--shadow-hero);
    margin-bottom: 16px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.5;
    text-shadow: var(--shadow-hero);
    margin-bottom: 32px;
    opacity: 0.92;
}

/* ═══════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════ */
.categories {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.categories h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.section-sub {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    transition: transform 0.25s;
}

.cat-card:hover { transform: translateY(-4px); }

.cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-label {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 16px;
    color: var(--white);
    text-shadow: var(--shadow-hero);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.cat-label strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cat-label span {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════
   EQUIPMENT
   ═══════════════════════════════════════════ */
.equipment {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    color: var(--white);
}

.equipment-inner {
    position: relative;
    z-index: 1;
}

.equipment-text {
    max-width: 420px;
}

.equipment h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    text-shadow: var(--shadow-hero);
}

.equipment .section-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-shadow: var(--shadow-nav);
    margin-bottom: 32px;
}

.check-list {
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li img {
    width: 40px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.check-list li span {
    font-size: 14px;
    font-weight: 400;
    text-shadow: var(--shadow-nav);
}

.equipment .btn { width: fit-content; }

/* ═══════════════════════════════════════════
   OFERTA GRID
   ═══════════════════════════════════════════ */
.oferta {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.oferta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,44,110,0.85) 0%, rgba(21,44,110,0.92) 100%);
}

.oferta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.oferta h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}

.oferta .section-sub {
    color: rgba(255,255,255,0.8);
    margin-bottom: 48px;
}

.oferta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.oferta-block {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.oferta-block:hover {
    background: rgba(255,255,255,0.14);
}

.oferta-block img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    object-fit: contain;
}

.oferta-block h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.oferta-block p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.82;
}

/* ═══════════════════════════════════════════
   WSPÓŁPRACA
   ═══════════════════════════════════════════ */
.wspolpraca-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.wspolpraca-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 120px 24px 60px;
}

.wspolpraca-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-shadow: var(--shadow-hero);
    margin-bottom: 12px;
}

.wspolpraca-hero p {
    font-size: 18px;
    font-weight: 300;
    text-shadow: var(--shadow-hero);
    opacity: 0.92;
}

.wspolpraca-main {
    padding: 64px 0;
    background: var(--gray-100);
}

.wspolpraca-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Form panel */
.wspolpraca-form-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(21,44,110,0.08);
}

.wspolpraca-form-panel h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.wspolpraca-form-panel > p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 28px;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: var(--gray-100);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a2e;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

.field-error {
    display: block;
    font-size: 12px;
    color: #d32f2f;
    margin-top: 4px;
}

/* Benefits */
.wspolpraca-benefits h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefits-list li img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.benefits-list strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.benefits-list p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.wspolpraca-img {
    border-radius: 16px;
    width: 100%;
}

.wspolpraca-contact {
    background: var(--navy);
    color: var(--white);
    padding: 24px 0;
    text-align: center;
    font-size: 15px;
}

.wspolpraca-contact a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════
   LANDING PAGE
   ═══════════════════════════════════════════ */
.landing-body {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.landing-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,44,110,0.5) 0%, rgba(21,44,110,0.75) 100%);
    z-index: 0;
}

.landing-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    padding: 28px 32px;
}

.landing-logo {
    height: 36px;
    width: auto;
}

.landing-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.landing-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    text-shadow: var(--shadow-hero);
    margin-bottom: 16px;
}

.landing-hero > p {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    text-shadow: var(--shadow-hero);
    opacity: 0.92;
    margin-bottom: 48px;
    max-width: 560px;
}

.landing-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 700px;
}

.perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.perk img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.perk span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-shadow: var(--shadow-nav);
}

.landing-cta {
    font-size: 17px;
    padding: 16px 48px;
}

/* Landing footer */
.landing-footer {
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.landing-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.landing-footer-logo {
    height: 28px;
    width: auto;
}

.landing-footer-links {
    display: flex;
    gap: 20px;
}

.landing-footer-links a {
    font-size: 13px;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.landing-footer-links a:hover { opacity: 1; }

.landing-footer-copy {
    font-size: 12px;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════
   LOGIN
   ═══════════════════════════════════════════ */
.login-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(21,44,110,0.08);
}

/* ═══════════════════════════════════════════
   PLACEHOLDER PAGES
   ═══════════════════════════════════════════ */
.placeholder-section {
    padding: 80px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: 18px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.main-footer {
    background: var(--navy);
    color: var(--white);
    padding: 48px 0 0;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
}

.footer-contact a {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-contact a:hover { opacity: 1; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 32px;
    padding: 16px 24px;
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════
   HERO SEARCH
   ═══════════════════════════════════════════ */
.hero-search {
    display: flex;
    gap: 0;
    margin-top: 24px;
    max-width: 460px;
}

.hero-search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
}

.hero-search-btn {
    border-radius: 0 50px 50px 0 !important;
    padding: 14px 28px !important;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
    padding: 64px 0;
    background: var(--gray-100);
}

.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    padding: 0 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.step p {
    font-size: 14px;
    color: var(--gray-600);
}

.step-divider {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   MAP PREVIEW
   ═══════════════════════════════════════════ */
.map-preview {
    padding: 80px 0;
    text-align: center;
}

.map-preview h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.home-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.map-cta {
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   BUSINESS CTA
   ═══════════════════════════════════════════ */
.business-cta {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.business-cta-inner {
    max-width: 680px;
}

.business-cta h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 8px;
}

.business-cta .section-sub {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.benefits-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.benefits-compact li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefits-compact li img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.benefits-compact li span {
    font-size: 15px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   BLOG TEASER + LISTING
   ═══════════════════════════════════════════ */
.blog-teaser {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.blog-teaser h2,
.blog-listing h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    margin-top: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue);
    background: rgba(47,73,151,0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Blog listing */
.blog-listing {
    padding: 60px 0 80px;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.blog-featured-body {
    padding: 32px;
}

.blog-featured-body h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.blog-featured-body p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

/* ═══════════════════════════════════════════
   DIRECTORY
   ═══════════════════════════════════════════ */
.directory {
    padding: 0 0 60px;
}

.directory-search {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: -28px auto 40px;
    position: relative;
    z-index: 2;
}

.directory-search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.directory-search-input:focus {
    outline: none;
    border-color: var(--blue);
}

.directory-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 500px;
}

.directory-list {
    overflow-y: auto;
    max-height: 600px;
    padding-right: 16px;
}

.point-card {
    display: block;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s;
}

.point-card:hover {
    background: var(--gray-100);
}

.point-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.point-location {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.point-bike-count {
    font-size: 13px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.point-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

.directory-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-600);
}

.directory-empty a {
    color: var(--blue);
    font-weight: 600;
}

.directory-map-wrap {
    position: relative;
}

.directory-map {
    height: 100%;
    min-height: 500px;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
}

/* ═══════════════════════════════════════════
   POINT PROFILE
   ═══════════════════════════════════════════ */
.point-info-bar {
    background: var(--gray-100);
    padding: 24px 0;
}

.info-bar-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-bar-item strong {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.info-bar-item span,
.info-bar-item a {
    font-size: 15px;
    color: var(--navy);
}

.info-bar-item a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.point-about {
    padding: 40px 0;
}

.point-about p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 720px;
}

.point-bikes-section {
    padding: 40px 0 60px;
}

.point-bikes-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bike-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.bike-card:hover {
    transform: translateY(-4px);
}

.bike-card-img {
    position: relative;
}

.bike-card-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.bike-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--blue);
    color: var(--white);
}

.bike-card-body {
    padding: 20px;
}

.bike-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.bike-size {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.bike-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.bike-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-600);
}

.bike-reserve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bike-reserve-btn:disabled:hover {
    transform: none;
}

.point-map-section {
    padding: 40px 0 60px;
    background: var(--gray-100);
}

.point-map-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.point-map {
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.point-contact {
    margin-top: 20px;
    font-size: 15px;
    color: var(--gray-600);
}

.point-contact a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════
   OFERTA EXPANDED (partnership offering)
   ═══════════════════════════════════════════ */
.oferta-expanded {
    padding: 60px 0;
}

.oferta-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
}

.oferta-item:last-child {
    border-bottom: none;
}

.oferta-item-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    object-fit: contain;
}

.oferta-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.oferta-item p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.oferta-bottom-cta {
    padding: 60px 0;
    background: var(--gray-100);
}

.oferta-bottom-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-section {
    padding: 60px 0;
}

.faq-inner {
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--blue);
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-bottom-cta {
    padding: 40px 0;
    background: var(--gray-100);
    font-size: 15px;
    color: var(--gray-600);
}

.faq-bottom-cta a {
    color: var(--blue);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-mission {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-img {
    border-radius: 20px;
    width: 100%;
}

.about-how {
    padding: 60px 0;
    background: var(--gray-100);
    text-align: center;
}

.about-how h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
}

.about-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-how-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.about-how-card img {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.about-how-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.about-how-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-values {
    padding: 60px 0;
    text-align: center;
}

.about-values h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-item {
    padding: 24px;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FORM FOOTER LINK
   ═══════════════════════════════════════════ */
.form-footer-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-600);
}

.form-footer-link a {
    color: var(--blue);
    font-weight: 600;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: flex; }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(21,44,110,0.96);
        padding: 20px 24px;
        gap: 16px;
    }

    .nav-btn.open {
        display: inline-block;
        position: absolute;
        top: calc(100% + 140px);
        left: 24px;
    }

    /* Home hero */
    .home-hero-inner { padding: 100px 20px 60px; }

    /* Hero search */
    .hero-search {
        flex-direction: column;
        gap: 12px;
    }

    .hero-search-input {
        border-radius: 50px;
    }

    .hero-search-btn {
        border-radius: 50px !important;
    }

    /* Hero */
    .hero-content { padding: 100px 20px 60px; }

    /* Steps */
    .steps-row {
        flex-direction: column;
        gap: 24px;
    }

    .step-divider {
        width: 2px;
        height: 24px;
    }

    /* Categories */
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Map */
    .home-map { height: 300px; }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Blog featured */
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-img img {
        min-height: 200px;
    }

    /* Directory */
    .directory-layout {
        grid-template-columns: 1fr;
    }

    .directory-list {
        max-height: none;
        padding-right: 0;
    }

    .directory-map-wrap {
        margin-top: 24px;
    }

    .directory-map {
        min-height: 350px;
        border-radius: 16px;
    }

    /* Bike grid */
    .bike-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Oferta grid */
    .oferta-grid { grid-template-columns: 1fr; }

    /* Oferta expanded */
    .oferta-item {
        flex-direction: column;
        gap: 16px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-how-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Współpraca */
    .wspolpraca-grid { grid-template-columns: 1fr; }

    /* Form row */
    .form-row { grid-template-columns: 1fr; }

    /* Landing perks */
    .landing-perks {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links { text-align: center; }

    .landing-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .landing-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr; }
    .landing-perks { grid-template-columns: 1fr; }
    .radio-group { flex-direction: column; }
    .info-bar-items { flex-direction: column; gap: 16px; }
}
