/* CSS RESET & VARS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0284C7;
    --primary-dark: #0369A1;
    --accent-red: #DC2626;
    --accent-red-hover: #B91C1C;
    --dark: #0F172A;
    --gray-bg: #F8FAFC;
    --text: #334155;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --radius: 12px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background-color: #FFFFFF;
    line-height: 1.6;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.brand-name {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
    text-decoration: none;
}

.brand-name .dot {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: default; /* Zmieniono kursor na default dla przyciskow bez akcji */
}

/* Wyjatek dla mapy - tam chcemy kursor pointer */
a.map-link-btn {
    cursor: pointer;
}

.btn-phone-header {
    background-color: var(--accent-red);
    color: #FFFFFF;
    font-size: 0.9rem;
}

.btn-phone-header:hover {
    background-color: var(--accent-red-hover);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.badge-red {
    background-color: var(--accent-red);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-sub {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-call-main {
    background-color: var(--accent-red);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-call-main:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.5rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-text small {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.phone-text strong {
    font-size: 1.3rem;
}

/* SEO SECTION */
.seo-box {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.seo-box h2 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.seo-box p {
    color: var(--text);
    margin-bottom: 15px;
}

.seo-box p:last-child {
    margin-bottom: 0;
}

/* SECTIONS */
.section {
    padding: 50px 0;
}

.bg-light {
    background-color: var(--gray-bg);
}

.section-title {
    font-size: 1.8rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 8px;
    font-weight: 800;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* FLEET */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    background-color: #CBD5E1;
}

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

.tag-no-license {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-red);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.price-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.price-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.p-label {
    color: var(--text-muted);
}

.p-val {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* CONTACT & MAP */
.contact-box {
    background: var(--gray-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.info-item .icon {
    font-size: 1.5rem;
}

.phone-link {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-red);
    text-decoration: none;
    cursor: default; /* Brak raczki po najechaniu na numer */
}

.map-link-btn {
    display: inline-block;
    margin-top: 8px;
    background: var(--primary);
    color: #FFF;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.map-link-btn:hover {
    background: var(--primary-dark);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: #94A3B8;
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
}

/* STICKY MOBILE */
.mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-red);
    padding: 12px;
    text-align: center;
    z-index: 1000;
}

@media (min-width: 768px) {
    .mobile-sticky-btn { display: none; }
}

.btn-sticky {
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    cursor: default;
}
