/* ═══════════════════════════════════════════════════════════════
   wroclawelektryk24.pl — Production Stylesheet
   Design: Industrial-Electric · Dark/Amber
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --amber-glow: #fbbf24;
    --navy: #0c1220;
    --navy-2: #141e30;
    --navy-3: #1c2a42;
    --slate: #2a3a52;
    --steel: #8899aa;
    --silver: #c8d4e0;
    --white: #f0f4f8;
    --pure: #ffffff;
    --green: #22c55e;
    --red: #ef4444;
    --blue: #3b82f6;
    --ff-head: 'Bebas Neue', 'Arial Black', sans-serif;
    --ff-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --r: 10px;
    --r-lg: 16px;
    --t: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--navy); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); line-height: 1.1; letter-spacing: .02em; font-weight: 400; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Container ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--r); font-family: var(--ff-body);
    font-weight: 700; font-size: .95rem; border: 2px solid transparent;
    cursor: pointer; transition: var(--t); text-decoration: none !important;
    letter-spacing: .01em;
}
.btn-primary {
    background: var(--amber); color: var(--navy); border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.35); }
.btn-dark {
    background: var(--navy); color: var(--pure); border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-2); }
.btn-outline {
    background: transparent; color: var(--navy); border-color: var(--slate);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-light {
    background: transparent; color: var(--pure); border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { opacity: .85; }

/* ── Header ────────────────────────────────── */
.header { position: sticky; top: 0; z-index: 1000; }
.header-top {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    padding: 6px 0;
}
.header-top .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 4px;
}
.header-top a { color: var(--amber-glow); font-weight: 600; }
.header-top a:hover { color: var(--pure); }
.top-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(34,197,94,.15); color: var(--green);
    padding: 2px 10px; border-radius: 100px; font-weight: 600; font-size: .78rem;
}

.header-main {
    background: var(--pure);
    border-bottom: 2px solid var(--amber);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-main .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none !important;
}
.logo-bolt {
    width: 44px; height: 44px; background: var(--amber);
    border-radius: var(--r); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--navy); flex-shrink: 0;
}
.logo-text {
    font-family: var(--ff-head); font-size: 1.55rem;
    color: var(--navy); line-height: 1;
}
.logo-text span { color: var(--amber); }
.logo-sub { font-size: .72rem; color: var(--steel); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    padding: 8px 14px; font-size: .9rem; font-weight: 600;
    color: var(--navy); border-radius: var(--r);
    text-decoration: none !important;
}
.nav a:hover { color: var(--amber); background: rgba(245,158,11,.06); }
.nav a.active { color: var(--amber); }
.nav .btn { margin-left: 8px; padding: 10px 20px; }

.nav-toggle {
    display: none; background: none; border: none;
    width: 40px; height: 40px; cursor: pointer; color: var(--navy);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ── Hero ──────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
    color: var(--pure);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--amber), var(--amber-glow), var(--amber));
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
    padding: 6px 16px; border-radius: 100px;
    font-size: .82rem; font-weight: 600; color: var(--amber-glow);
    margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--amber); }
.hero-desc {
    font-size: 1.15rem; color: rgba(255,255,255,.65);
    margin-bottom: 32px; max-width: 520px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stat { text-align: center; }
.hero-stat-num {
    font-family: var(--ff-head); font-size: 2.5rem;
    color: var(--amber); line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* Hero urgent form */
.hero-form {
    background: var(--navy-3);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg); padding: 28px;
}
.hero-form-title {
    font-family: var(--ff-head); font-size: 1.4rem;
    color: var(--amber); margin-bottom: 4px;
    display: flex; align-items: center; gap: 8px;
}
.hero-form-sub { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.hero-form input, .hero-form select, .hero-form textarea {
    width: 100%; padding: 11px 14px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--r);
    color: var(--pure); font-family: var(--ff-body); font-size: .9rem;
    margin-bottom: 10px; transition: var(--t);
}
.hero-form input::placeholder, .hero-form textarea::placeholder { color: rgba(255,255,255,.3); }
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
    outline: none; border-color: var(--amber);
    background: rgba(245,158,11,.06);
}
.hero-form select option { background: var(--navy-2); color: var(--pure); }
.hero-form .rodo-label {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: .75rem; color: rgba(255,255,255,.4);
    margin-bottom: 14px; line-height: 1.4;
}
.hero-form .rodo-label input { width: auto; margin: 0; margin-top: 2px; accent-color: var(--amber); }
.hero-form .rodo-label a { color: var(--amber-glow); text-decoration: underline; }

/* ── Section ───────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--pure); }
.section-gray { background: #e8edf4; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { margin-bottom: 12px; color: var(--navy); }
.section-dark .section-head h2 { color: var(--pure); }
.section-head h2 span { color: var(--amber); }
.section-sub { font-size: 1.05rem; color: var(--steel); max-width: 600px; margin: 0 auto; }
.section-dark .section-sub { color: rgba(255,255,255,.5); }

/* ── Advantages ────────────────────────────── */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.adv-card {
    background: var(--pure); border-radius: var(--r-lg); padding: 28px 22px;
    text-align: center; border: 1px solid #dce3ed;
    transition: var(--t);
}
.adv-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.adv-icon {
    width: 56px; height: 56px; margin: 0 auto 14px;
    background: rgba(245,158,11,.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.adv-card h4 { font-family: var(--ff-body); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.adv-card p { font-size: .82rem; color: var(--steel); line-height: 1.5; }

/* ── Service Cards ─────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.svc-card {
    background: var(--pure); border-radius: var(--r-lg);
    padding: 30px 24px; border: 1px solid #dce3ed;
    display: flex; flex-direction: column;
    transition: var(--t); position: relative; overflow: hidden;
}
.svc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--amber); transform: scaleX(0); transition: var(--t); transform-origin: left;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.svc-icon {
    width: 52px; height: 52px; background: var(--navy);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--amber); margin-bottom: 16px;
}
.svc-card h3 { font-family: var(--ff-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: .88rem; color: var(--steel); flex: 1; margin-bottom: 16px; }
.svc-price {
    display: inline-block; background: rgba(245,158,11,.08);
    color: var(--amber-dark); font-weight: 700; font-size: .85rem;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.svc-link {
    color: var(--amber-dark); font-weight: 700; font-size: .88rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.svc-link:hover { color: var(--amber); gap: 10px; }

/* ── CTA Banner ────────────────────────────── */
.cta-banner {
    background: var(--amber);
    padding: 50px 0;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '⚡'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    font-size: 12rem; opacity: .1;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; position: relative; z-index: 2;
}
.cta-inner h2 { color: var(--navy); margin-bottom: 6px; }
.cta-inner p { color: rgba(12,18,32,.6); font-size: 1.05rem; }
.cta-inner .btn-dark:hover { background: var(--navy-3); }

/* ── Prices Table ──────────────────────────── */
.price-table {
    width: 100%; border-collapse: collapse;
    background: var(--pure); border-radius: var(--r-lg);
    overflow: hidden; border: 1px solid #dce3ed;
}
.price-table th {
    background: var(--navy); color: var(--pure);
    padding: 14px 20px; text-align: left;
    font-family: var(--ff-head); font-size: 1rem;
    letter-spacing: .03em;
}
.price-table td {
    padding: 14px 20px; border-bottom: 1px solid #e8edf4;
    font-size: .92rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(245,158,11,.03); }
.price-table .price-val {
    font-weight: 700; color: var(--amber-dark); white-space: nowrap;
}
.price-table .price-free { color: var(--green); font-weight: 700; }

/* ── Districts ─────────────────────────────── */
.districts-wrap {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
}
.district-tag {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: 8px 18px; border-radius: 100px;
    font-size: .85rem; color: rgba(255,255,255,.7);
    transition: var(--t);
}
.district-tag:hover { border-color: var(--amber); color: var(--amber); }

/* ── Reviews ───────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card {
    background: var(--pure); border-radius: var(--r-lg);
    padding: 28px; border: 1px solid #dce3ed;
    transition: var(--t);
}
.review-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,.06); }
.review-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .92rem; color: #4a5568; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; font-size: .88rem; }
.review-meta { font-size: .78rem; color: var(--steel); }

/* ── Portfolio ─────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.port-card {
    background: var(--pure); border-radius: var(--r-lg);
    overflow: hidden; border: 1px solid #dce3ed;
    transition: var(--t);
}
.port-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.port-img {
    height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-3));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: var(--amber); position: relative; overflow: hidden;
}
.port-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,18,32,.6), transparent);
}
.port-body { padding: 22px; }
.port-body h3 { font-family: var(--ff-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.port-body p { font-size: .85rem; color: var(--steel); margin-bottom: 12px; }
.port-tag {
    display: inline-block; background: rgba(245,158,11,.08);
    color: var(--amber-dark); font-size: .75rem; font-weight: 600;
    padding: 3px 10px; border-radius: 100px;
}

/* ── FAQ Accordion ─────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--pure); border: 1px solid #dce3ed;
    border-radius: var(--r); margin-bottom: 10px;
    overflow: hidden;
}
.faq-q {
    padding: 18px 24px; font-weight: 700; font-size: .95rem;
    cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 12px; transition: var(--t);
    user-select: none;
}
.faq-q:hover { color: var(--amber); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--amber); flex-shrink: 0; transition: var(--t); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 24px 18px; font-size: .9rem; color: var(--steel); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Contact / Forms ───────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.form-input {
    width: 100%; padding: 12px 16px;
    border: 1px solid #dce3ed; border-radius: var(--r);
    font-family: var(--ff-body); font-size: .92rem;
    transition: var(--t); background: var(--pure);
}
.form-input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.1); }
textarea.form-input { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rodo-check {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: .78rem; color: var(--steel); margin-bottom: 16px;
}
.rodo-check input { margin-top: 3px; accent-color: var(--amber); }
.rodo-check a { color: var(--amber-dark); text-decoration: underline; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
    width: 48px; height: 48px; background: rgba(245,158,11,.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.ci-item h4 { font-family: var(--ff-body); font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.ci-item p { font-size: .88rem; color: var(--steel); }
.ci-item a { color: var(--amber-dark); font-weight: 600; }
.ci-item a:hover { color: var(--amber); }

.map-frame {
    width: 100%; height: 300px; border-radius: var(--r-lg);
    border: 1px solid #dce3ed; overflow: hidden; margin-top: 20px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── Page Hero (inner pages) ───────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--pure);
    padding: 50px 0;
    position: relative;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: var(--amber);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero h1 span { color: var(--amber); }
.page-hero p { color: rgba(255,255,255,.5); font-size: 1.05rem; }

/* ── Breadcrumbs ───────────────────────────── */
.breadcrumbs {
    background: #e8edf4; padding: 12px 0;
    font-size: .82rem; color: var(--steel);
}
.breadcrumbs a { color: var(--steel); }
.breadcrumbs a:hover { color: var(--amber); }
.breadcrumbs strong { color: var(--navy); }
.breadcrumbs span { margin: 0 6px; }

/* ── Service Single ────────────────────────── */
.svc-single { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.svc-content h2 { margin-bottom: 16px; font-family: var(--ff-body); font-size: 1.3rem; font-weight: 700; letter-spacing: 0; }
.svc-content p { margin-bottom: 16px; color: #4a5568; }
.svc-sidebar {
    background: var(--pure); border: 1px solid #dce3ed;
    border-radius: var(--r-lg); padding: 28px;
    position: sticky; top: 100px;
}
.svc-sidebar h3 {
    font-family: var(--ff-head); font-size: 1.3rem;
    color: var(--amber); margin-bottom: 4px;
}

/* ── Portfolio Single ──────────────────────── */
.project-detail { max-width: 800px; }
.project-detail h2 { font-family: var(--ff-body); font-weight: 700; font-size: 1.2rem; margin: 24px 0 12px; letter-spacing: 0; }
.project-detail p { color: #4a5568; margin-bottom: 14px; }
.project-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.project-meta span { font-size: .88rem; color: var(--steel); }
.project-meta strong { color: var(--navy); }

/* ── Blog ──────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--pure); border: 1px solid #dce3ed;
    border-radius: var(--r-lg); overflow: hidden; transition: var(--t);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,.08); }
.blog-card-img {
    height: 180px; background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--amber);
}
.blog-card-body { padding: 22px; }
.blog-card-body h3 { font-family: var(--ff-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.blog-card-body p { font-size: .85rem; color: var(--steel); margin-bottom: 10px; }
.blog-card-date { font-size: .78rem; color: var(--steel); }

/* ── Footer ────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 {
    font-family: var(--ff-body); font-weight: 700;
    color: var(--pure); margin-bottom: 16px; font-size: .95rem;
}
.footer-about p { font-size: .88rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex; justify-content: space-between;
    font-size: .82rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--amber); }

/* ── Floating CTA ──────────────────────────── */
.floating-cta {
    position: fixed; bottom: 24px; right: 24px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 900;
}
.floating-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transition: var(--t); animation: pulse-float 2s ease-in-out infinite;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn-phone { background: var(--amber); color: var(--navy); }
.floating-btn-whatsapp { background: #25d366; color: #fff; }

@keyframes pulse-float {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.2); }
    50% { box-shadow: 0 4px 30px rgba(245,158,11,.4); }
}

/* ── Cookie Banner ─────────────────────────── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--navy); color: rgba(255,255,255,.7);
    padding: 16px 0; z-index: 950;
    border-top: 1px solid rgba(255,255,255,.1);
    display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { font-size: .85rem; flex: 1; }
.cookie-banner a { color: var(--amber-glow); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 8px; }

/* ── Utilities & Misc ──────────────────────── */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-errors {
    background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
    border-radius: var(--r); padding: 14px 18px; margin-bottom: 20px;
    font-size: .88rem; color: var(--red);
}
.form-errors ul { padding-left: 18px; }

/* ── Thank You ─────────────────────────────── */
.thankyou-wrap {
    text-align: center; padding: 80px 20px; max-width: 600px; margin: 0 auto;
}
.thankyou-wrap .icon { font-size: 4rem; margin-bottom: 20px; }
.thankyou-wrap h1 { font-size: 2.2rem; margin-bottom: 12px; }
.ticket-number {
    display: inline-block; background: rgba(245,158,11,.1);
    color: var(--amber-dark); font-family: monospace;
    font-size: 1.3rem; font-weight: 700;
    padding: 10px 24px; border-radius: var(--r);
    border: 1px solid rgba(245,158,11,.2); margin: 16px 0;
}

/* ── 404 ───────────────────────────────────── */
.not-found {
    text-align: center; padding: 100px 20px;
}
.not-found h1 { font-size: 8rem; color: var(--amber); line-height: 1; }
.not-found p { font-size: 1.1rem; color: var(--steel); margin: 12px 0 30px; }

/* ── Animations ────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form { max-width: 480px; }
    .svc-single { grid-template-columns: 1fr; }
    .svc-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; position: fixed; inset: 0; background: var(--pure);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 12px; z-index: 999; }
    .nav.open { display: flex; }
    .nav a { font-size: 1.2rem; padding: 12px 20px; }
    .nav .btn { margin: 12px 0 0; }
    .nav-toggle { display: block; }

    .hero { padding: 50px 0 60px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .cta-inner { flex-direction: column; text-align: center; }
    .section { padding: 50px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .adv-grid { grid-template-columns: 1fr 1fr; }
    .floating-cta { bottom: 16px; right: 16px; }
    .floating-btn { width: 48px; height: 48px; font-size: 1.2rem; }

    .header-top { font-size: .75rem; }
    .header-top .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .adv-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
}
