/* =========================
   ZMIENNE KOLORÓW
   ========================= */
:root {
    --bg-main: #050816;          /* tło strony */
    --bg-navbar: #050816;        /* TAKI SAM kolor jak bg-main */
    --bg-hero: #020617;          /* tło hero (mocny granat) */
    --bg-card: #0f172a;          /* ciemne „kafle” pod sekcje, później użyjesz */

    --accent: #2563eb;           /* niebieski */
    --accent-soft: #60a5fa;      /* jaśniejszy niebieski */
    --text-main: #e5e7eb;        /* jasny szary tekst */
    --text-muted: #9ca3af;       /* przygaszony szary */
    --border-subtle: #1f2933;    /* delikatna ramka */
}

/* =========================
   GLOBAL
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
}

a {
    color: inherit;
}

/* =========================
   NAVBAR DESKTOP
   ========================= */
.navbar-desktop {
    width: 100%;
    padding: 14px 0;
    background: var(--bg-navbar);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.98rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease, transform 0.15s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-soft);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-soft);
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========================= HERO ========================= */
.hero {
    width: 100%;
    padding: 90px 0 110px;
    background: radial-gradient(circle at top left, #1e293b 0, var(--bg-hero) 50%, #020617 100%);
}

.hero .container {
    max-width: 1100px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-tagline {
    font-size: 0.95rem;
    color: var(--accent-soft);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* przycisk – granatowo-niebieski */
.hero-btn {
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    filter: brightness(1.05);
}

/* prawa część hero – miejsce na logo/grafikę */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
w
.hero-image-placeholder {
    width: 500px;
    height: 500px;
    border-radius: 24px;
    border: 1px dashed var(--border-subtle);
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.25), rgba(15, 23, 42, 0.4));
}

/* ====================================
   SEKCJA USŁUG
   ==================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-hero);
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

/* BOXY USŁUG */
.service-box {
    padding: 30px 20px;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06); /* delikatna obwódka */
    transition: 0.25s ease;
}

/* ikona usługi */
.service-icon i {
    font-size: 3.2rem;
    color: var(--accent-soft);
    margin-bottom: 20px;
}

/* tytuł usługi */
.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* opis usługi */
.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* TEKST „Kliknij, aby dowiedzieć się więcej” – DOMYŚLNIE UKRYTY */
.services-more {
    font-size: 0.9rem;
    color: var(--accent-soft);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* HOVER NA BOXIE – obwódka + tło + POKAŻ TEKST */
.service-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.22);
}

.service-box:hover .services-more {
    opacity: 1;
    transform: translateY(0);
}

/* CTA POD USŁUGAMI */
.services-cta {
    margin-top: 50px;
    padding: 40px 0;
}

.services-cta-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 16px;
}

/* Przycisk -> styl jak hero, ale trochę mniejszy */
.services-cta-btn {
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease;
}

.services-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* ========================= FAQ / Q&A ========================= */
.faq-section {
    padding: 90px 0;
    background: var(--bg-main);
}

.faq-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fff;
}

/* Dark mode dla akordeonu Bootstrapa */
.faq-accordion .accordion-item {
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: #020617;
    color: var(--text-main);
    font-weight: 500;
    padding: 14px 18px;
}

.faq-accordion .accordion-button::after {
    filter: invert(1) opacity(0.6);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #020617;
    color: var(--accent-soft);
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background-color: #020617;
    color: var(--text-muted);
    padding: 16px 18px 18px;
    font-size: 0.96rem;
    line-height: 1.6;
}

/* =========================
   WHY US (DLACZEGO MY)
   ========================= */
.whyus-section {
    padding: 100px 0;
    background: var(--bg-main);
    text-align: center;
}

.whyus-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

/* Używamy Bootstrapa .row + Twoje odstępy */
.whyus-row {
    row-gap: 24px;
}

.whyus-box {
    padding: 40px 25px;
    border-radius: 20px;
    background: var(--bg-hero);
    border: 1px solid var(--border-subtle);
    transition: 0.25s ease;
}

.whyus-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
}

.whyus-icon i {
    font-size: 3rem;
    color: var(--accent-soft);
    margin-bottom: 18px;
}

.whyus-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.whyus-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================
   CTA DO KONTAKTU
   ========================= */
.contact-intro-section {
    padding: 90px 0;
    background: var(--bg-hero);
}

.contact-intro-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.contact-intro-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.contact-intro-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-intro-text.small-text {
    font-size: 0.95rem;
    margin-bottom: 26px;
}

.contact-intro-btn {
    padding: 12px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
}

.contact-intro-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: var(--bg-navbar);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-soft);
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-right {
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-soft);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================
   BACK TO TOP BUTTON
   ========================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.back-to-top i {
    font-size: 22px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    filter: brightness(1.15);
    transform: translateY(-3px);
}
/* =========================================
   FOOTER – NEUTRALNY GLOBALNY STYL
   ========================================= */

.footer {
    background-color: #050816;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEWA KOLUMNA */
.footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 12px 0 18px;
    line-height: 1.5;
}

/* DANE KONTAKTOWE */
.footer-contact {
    margin-top: 10px;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-contact-list a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-contact-list a:hover {
    text-decoration: underline;
}

/* PRAWA KOLUMNA */
.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* DÓŁ STOPKI */
.footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #1e293b;
}

/* RWD – neutralne, nie ingeruje w resztę strony */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-logo img {
        height: 28px;
    }
}
.hero-image-box {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    object-fit: cover;
}
