/* =================================
   GŁÓWNE ZMIENNE I RESET
   ================================= */
:root {
    --color-primary: #000000;
    --color-background: #0a0a0a;
    --color-surface: #111111;
    --color-accent: #D4AF37;
    --color-accent-rgb: 212, 175, 55; /* Wersja RGB do użycia w RGBA */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --font-family: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { 
    padding: 6rem 0;
    position: relative;
    overflow: hidden; /* Zapobiega wychodzeniu gradientów poza sekcję */
}

/* === EFEKT 'WOW' NR 1: Subtelne oświetlenie tła === */
section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle at 50% 0%, rgba(var(--color-accent-rgb), 0.05), transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.container { position: relative; z-index: 1; } /* Upewnia się, że treść jest nad tłem */

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; color: var(--color-accent); }
p { color: var(--color-text-secondary); margin-bottom: 1rem; }


/* =================================
   ULEPSZONE KOMPONENTY
   ================================= */
.btn {
    display: inline-block; padding: 0.85rem 2.25rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; text-align: center;
    transition: all 0.3s ease;
    cursor: pointer; border: 1px solid var(--color-accent);
}
.btn:hover { transform: translateY(-3px) scale(1.05); }

/* === EFEKT 'WOW' NR 2: Poświata na przycisku === */
.btn-primary { 
    background-color: var(--color-accent); color: var(--color-primary);
    box-shadow: 0 5px 20px -5px rgba(var(--color-accent-rgb), 0.5);
}
.btn-primary:hover {
    box-shadow: 0 8px 25px -3px rgba(var(--color-accent-rgb), 0.6);
}
.btn-ghost { background-color: transparent; color: var(--color-accent); }
.btn-ghost:hover { background-color: rgba(var(--color-accent-rgb), 0.1); }

.logo { font-size: 1.5rem; font-weight: 600; color: var(--color-text-primary); text-decoration: none; }
.logo-accent { color: var(--color-accent); }
.section-heading { text-align: center; max-width: 800px; margin: 0 auto 4rem auto; }

/* === EFEKT 'WOW' NR 3: Karty z głębią i poświatą === */
.card {
    background-color: var(--color-surface); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem; 
    overflow: hidden; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5); /* Dodany cień dla głębi */
}
.card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(var(--color-accent-rgb), 0.5);
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.4), 0 0 20px -5px rgba(var(--color-accent-rgb), 0.3); /* Cień + poświata */
}


/* =================================
   SEKCJE
   ================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--color-text-primary); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.phone-link { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-primary); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.phone-link:hover { color: var(--color-accent); }
.phone-link svg { stroke: var(--color-accent); }
.lang-switcher { display: flex; align-items: center; gap: 0.5rem; }
.lang-switcher button { background: none; border: none; color: var(--color-text-secondary); font-size: 1rem; font-weight: 600; cursor: pointer; transition: color 0.2s; }
.lang-switcher button.active { color: var(--color-accent); }
.lang-switcher span { color: var(--color-text-secondary); }
.hamburger { display: none; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--color-text-primary); margin: 5px 0; transition: all 0.3s ease-in-out; }

.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/hero-tuscany.png') no-repeat center center/cover; z-index: 1;
}
.hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0.9)); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; padding: 0 1rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem auto; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.service-card {
    padding: 2.5rem 1.5rem; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.service-icon { margin-bottom: 1.5rem; color: var(--color-accent); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; }

.fleet { background: var(--color-background); }
.fleet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fleet-image img { width: 100%; border-radius: 1rem; box-shadow: 0 15px 40px -15px rgba(0,0,0,0.7); }
.fleet-content h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--color-text-primary); }
.fleet-content ul { list-style: '✓'; list-style-position: inside; padding-left: 5px; margin: 1.5rem 0; }
.fleet-content li { margin-bottom: 0.5rem; color: var(--color-text-secondary); }

/* === POPRAWKA: Wyśrodkowanie przycisku V-Class === */
.fleet-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.about { background-color: var(--color-primary); }
.about-description { font-size: 1.1rem; line-height: 1.7; margin-top: 1.5rem; margin-bottom: 4rem; }
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.number-stat { font-size: clamp(3rem, 6vw, 4rem); font-weight: 800; color: var(--color-accent); line-height: 1; margin: 0; }
.number-label { font-size: 1rem; color: var(--color-text-secondary); margin-top: 0.5rem; font-weight: 500; }

.cta { text-align: center; background-color: var(--color-background); }
.cta .container { max-width: 700px; }
.cta p { font-size: 1.1rem; margin-bottom: 2rem; }

.footer { background-color: var(--color-surface); padding-top: 4rem; padding-bottom: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; }
.footer-col .logo { margin-bottom: 1rem; display: inline-block; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--color-text-primary); font-weight: 600; }
.footer-col p { font-size: 0.95rem; line-height: 1.8; color: var(--color-text-secondary); }
.footer-col p a { color: var(--color-text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-col p a:hover { color: var(--color-accent); }
.footer-bottom { text-align: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: var(--color-text-secondary); }


/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (max-width: 1200px) {
    .logo {
        font-size: 1.2rem;
    }
}
@media (max-width: 992px) {
    .fleet-layout { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
        background-color: #000; flex-direction: column; justify-content: center;
        align-items: center; gap: 3rem; transition: right 0.4s ease-in-out;
        font-size: 1.2rem;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .phone-link span { display: none; }
    .footer-grid { text-align: center; }
}