/* ============================================================
   service-style.css — Wspólne style dla podstron usług AB-Group
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --bg-dark: #0a0e17;
    --bg-card: #141b2d;
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --accent-gold: #c9a84c;
    --accent-orange: #e37e33;
    --accent-blue: #3b82f6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(10,14,23,0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    color: var(--accent-gold); letter-spacing: 1px;
    text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-contact-icon {
    color: var(--text-muted); font-size: 1.2rem;
    text-decoration: none; transition: color 0.3s, transform 0.2s;
}
.nav-contact-icon:hover { color: var(--accent-gold); transform: scale(1.15); }

.lang-switch { display: flex; gap: 0.5rem; }
.lang-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem; border-radius: 4px;
    cursor: pointer; font-size: 0.85rem; transition: all 0.3s;
}
.lang-btn.active, .lang-btn:hover {
    border-color: var(--accent-gold); color: var(--accent-gold);
}

/* --- Service Hero --- */
.service-hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #050810 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.hero-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}

.hero-text { }

.back-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.85rem;
    text-decoration: none; margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.back-btn:hover { color: var(--accent-gold); }
.back-btn i { font-size: 0.8rem; }

.service-badge {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--accent-gold);
    padding: 0.35rem 1rem; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem; line-height: 1.2;
    color: var(--text-main); margin-bottom: 1rem;
}

.hero-text h1 span { color: var(--accent-gold); }

.hero-price {
    font-size: 1.4rem; font-weight: 600;
    color: var(--accent-orange); margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-muted); font-size: 1.1rem;
    line-height: 1.7; margin-bottom: 2rem;
}

.hero-img {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero-img img { width: 100%; height: auto; display: block; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-orange), #c2571a);
    color: white; padding: 1rem 2rem; border-radius: 8px;
    text-decoration: none; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.3s;
    font-family: var(--font-body); font-size: 1rem;
}
.btn:hover { box-shadow: 0 5px 20px rgba(227,126,51,0.4); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent;
    color: var(--accent-gold); padding: 1rem 2rem; border-radius: 8px;
    text-decoration: none; font-weight: 600;
    border: 1px solid var(--accent-gold); cursor: pointer; transition: all 0.3s;
    font-family: var(--font-body); font-size: 1rem;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* --- Features / Benefits Grid --- */
.features-section {
    padding: 5rem 2rem;
    max-width: 1200px; margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem; color: var(--accent-gold);
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem;
}

.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }

.feature-card .fi { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-card h4 {
    font-size: 1rem; font-weight: 600;
    color: var(--text-main); margin-bottom: 0.5rem;
}
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* --- Contact Form --- */
.contact-section {
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-inner {
    max-width: 800px; margin: 0 auto;
    text-align: center;
}

.contact-inner h2 {
    font-family: var(--font-heading);
    font-size: 2rem; color: var(--accent-gold); margin-bottom: 0.5rem;
}
.contact-inner p { color: var(--text-muted); margin-bottom: 2.5rem; }

.contact-form {
    text-align: left;
    background: rgba(10,14,23,0.5);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; margin-bottom: 0.5rem;
    color: var(--text-muted); font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.9rem 1rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main); border-radius: 8px;
    font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--accent-blue);
}
.form-group select option { background: var(--bg-card); }

/* --- Footer --- */
footer {
    background: #05080f; padding: 3rem 2rem 2rem;
}
.footer-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 2rem; margin-bottom: 2rem;
}
.footer-col h3 {
    font-family: var(--font-heading); color: var(--accent-gold); margin-bottom: 1rem;
}
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 2; }
.footer-col a { color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
    text-align: center; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted); font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.8rem; }
    .contact-form { padding: 1.5rem; }
}
