/* ===========================
   BRIAK LÁSZLÓ – Antracit + Piros
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --black:    #111111;
  --dark:     #1A1A1A;
  --anthracit:#2D2D2D;
  --red:      #E63946;
  --red-dark: #C1121F;
  --light:    #F4F4F4;
  --white:    #FFFFFF;
  --text:     #222222;
  --muted:    #666666;
  --border:   #E0E0E0;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text); background:var(--white); line-height:1.65; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }

/* ===== UTILITIES ===== */
.container { max-width:1200px; margin:0 auto; padding:0 1.25rem; }
.accent { color:var(--red); }
.section-title { font-family:var(--font-head); font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; line-height:1.1; text-transform:uppercase; letter-spacing:.02em; }
.section-sub { color:var(--muted); margin-top:.5rem; font-size:1.05rem; }
.btn { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-head); font-weight:700; font-size:1.1rem; letter-spacing:.05em; text-transform:uppercase; padding:.75rem 1.75rem; border-radius:var(--radius); cursor:pointer; border:none; transition:all .2s; }
.btn-red { background:var(--red); color:var(--white); }
.btn-red:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(230,57,70,.4); }
.btn-outline { background:transparent; color:var(--white); border:2px solid var(--white); }
.btn-outline:hover { background:var(--white); color:var(--anthracit); }
.btn-lg { font-size:1.25rem; padding:1rem 2.25rem; }
.btn-full { width:100%; justify-content:center; }

/* ===== TOPBAR ===== */
.topbar { background:var(--red); color:var(--white); font-size:.85rem; font-weight:600; padding:.4rem 0; }
.topbar-inner { display:flex; justify-content:space-between; align-items:center; }
.topbar-phone { font-family:var(--font-head); font-size:1.1rem; letter-spacing:.05em; color:var(--white); }
.topbar-phone:hover { text-decoration:underline; }

/* ===== NAVBAR ===== */
.navbar { background:var(--black); position:sticky; top:0; z-index:999; box-shadow:0 2px 16px rgba(0,0,0,.4); transition:all .3s; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding:.75rem 1.25rem; }
.logo { display:flex; flex-direction:column; }
.logo-name { font-family:var(--font-head); font-size:1.6rem; font-weight:900; text-transform:uppercase; letter-spacing:.05em; color:var(--white); line-height:1; }
.logo-accent { color:var(--red); }
.logo-sub { font-size:.65rem; color:var(--muted); letter-spacing:.15em; text-transform:uppercase; }
.nav-menu { list-style:none; display:flex; align-items:center; gap:.25rem; }
.nav-menu > li > a { color:var(--white); font-weight:600; font-size:.9rem; padding:.5rem .8rem; border-radius:var(--radius); transition:all .2s; text-transform:uppercase; letter-spacing:.04em; }
.nav-menu > li > a:hover { background:rgba(255,255,255,.1); color:var(--red); }
.nav-cta { background:var(--red) !important; color:var(--white) !important; border-radius:var(--radius) !important; }
.nav-cta:hover { background:var(--red-dark) !important; }
.has-drop { position:relative; }
.dropdown { display:none; position:absolute; top:100%; left:0; background:var(--dark); min-width:240px; border-radius:var(--radius); box-shadow:var(--shadow-lg); list-style:none; padding:.5rem 0; z-index:1000; }
.has-drop:hover .dropdown { display:block; }
.dropdown li a { display:block; padding:.6rem 1.2rem; color:var(--white); font-size:.9rem; transition:background .15s; }
.dropdown li a:hover { background:var(--red); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.5rem; }
.nav-toggle span { width:24px; height:2px; background:var(--white); border-radius:2px; transition:.3s; }

/* ===== HERO ===== */
.hero { background:var(--anthracit); min-height:90vh; display:grid; place-items:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(230,57,70,.15) 0%,transparent 60%); }
.hero-pattern { position:absolute; inset:0; opacity:.04; background-image:repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%); background-size:20px 20px; }
.hero-content { position:relative; text-align:center; color:var(--white); padding:4rem 1.25rem; max-width:900px; }
.hero-badge { display:inline-block; background:var(--red); color:var(--white); font-family:var(--font-head); font-size:.85rem; font-weight:700; padding:.3rem 1rem; border-radius:30px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1.5rem; }
.hero h1 { font-family:var(--font-head); font-size:clamp(2.5rem,7vw,5rem); font-weight:900; text-transform:uppercase; line-height:1.0; letter-spacing:.02em; margin-bottom:1rem; }
.hero h1 span { color:var(--red); display:block; }
.hero-sub { font-size:1.15rem; color:rgba(255,255,255,.75); margin-bottom:2.5rem; max-width:600px; margin-left:auto; margin-right:auto; }
.hero-ctas { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:3rem; }
.hero-stats { display:flex; gap:2.5rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.1); }
.hero-stat { text-align:center; }
.hero-stat-num { font-family:var(--font-head); font-size:2.5rem; font-weight:900; color:var(--red); line-height:1; }
.hero-stat-lbl { font-size:.8rem; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.08em; margin-top:.25rem; }

/* ===== SERVICES ===== */
.services-section { padding:5rem 0; background:var(--light); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; margin-top:3rem; }
.service-card { background:var(--white); border-radius:var(--radius); padding:2rem 1.75rem; box-shadow:var(--shadow); transition:all .25s; border-bottom:3px solid transparent; position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--red); transform:scaleX(0); transition:transform .3s; transform-origin:left; }
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { font-size:2.5rem; margin-bottom:1rem; }
.service-card h3 { font-family:var(--font-head); font-size:1.4rem; font-weight:800; text-transform:uppercase; margin-bottom:.5rem; }
.service-card p { color:var(--muted); font-size:.95rem; margin-bottom:1.25rem; }
.service-link { color:var(--red); font-weight:700; font-size:.9rem; text-transform:uppercase; letter-spacing:.05em; }
.service-link:hover { text-decoration:underline; }

/* ===== ABOUT ===== */
.about-section { padding:5rem 0; background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; margin-top:3rem; }
.about-img { position:relative; }
.about-img img { border-radius:var(--radius); box-shadow:var(--shadow-lg); }
.about-img-badge { position:absolute; bottom:-1.5rem; right:-1.5rem; background:var(--red); color:var(--white); border-radius:var(--radius); padding:1rem 1.5rem; text-align:center; font-family:var(--font-head); }
.about-img-badge strong { font-size:2rem; font-weight:900; display:block; line-height:1; }
.about-text h2 { margin-bottom:1rem; }
.about-text p { color:var(--muted); margin-bottom:1rem; }
.about-list { list-style:none; margin-top:1.5rem; }
.about-list li { padding:.5rem 0; border-bottom:1px solid var(--border); font-weight:500; }
.about-list li::before { content:'✔ '; color:var(--red); font-weight:700; }

/* ===== BRANDS ===== */
.brands-section { background:var(--dark); padding:3rem 0; overflow:hidden; }
.brands-title { text-align:center; color:rgba(255,255,255,.4); font-size:.75rem; text-transform:uppercase; letter-spacing:.2em; margin-bottom:1.5rem; }
.brands-track { display:flex; gap:2rem; animation:scroll-brands 25s linear infinite; width:max-content; }
.brands-track:hover { animation-play-state:paused; }
.brand-item { background:rgba(255,255,255,.07); color:var(--white); font-family:var(--font-head); font-size:1.1rem; font-weight:700; padding:.6rem 1.5rem; border-radius:4px; letter-spacing:.08em; white-space:nowrap; border:1px solid rgba(255,255,255,.1); }
@keyframes scroll-brands { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== USP ===== */
.usp-section { padding:5rem 0; background:var(--anthracit); color:var(--white); }
.usp-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:2rem; margin-top:3rem; }
.usp-card { text-align:center; padding:2rem 1rem; }
.usp-icon { font-size:3rem; margin-bottom:1rem; }
.usp-card h3 { font-family:var(--font-head); font-size:1.3rem; font-weight:800; text-transform:uppercase; color:var(--red); margin-bottom:.5rem; }
.usp-card p { color:rgba(255,255,255,.7); font-size:.95rem; }

/* ===== REVIEWS ===== */
.reviews-section { padding:5rem 0; background:var(--light); }
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem; margin-top:3rem; }
.review-card { background:var(--white); border-radius:var(--radius); padding:1.75rem; box-shadow:var(--shadow); }
.review-stars { color:#FFB703; font-size:1.1rem; margin-bottom:.75rem; }
.review-text { color:var(--text); font-style:italic; margin-bottom:1rem; }
.review-author { font-weight:700; font-size:.9rem; color:var(--muted); }

/* ===== DISTRICTS ===== */
.districts-section { padding:5rem 0; }
.districts-intro { text-align:center; max-width:700px; margin:0 auto 3rem; }
.districts-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:1rem; }
.district-card { background:var(--light); border-radius:var(--radius); padding:1rem 1.25rem; transition:all .2s; border:1px solid var(--border); }
.district-card:hover { background:var(--red); color:var(--white); transform:translateY(-3px); border-color:var(--red); }
.district-card h3 { font-family:var(--font-head); font-size:1rem; font-weight:800; text-transform:uppercase; }
.district-card p { font-size:.8rem; opacity:.7; margin-top:.2rem; }

/* ===== EMERGENCY ===== */
.emergency-bar { background:var(--red); color:var(--white); padding:3rem 0; text-align:center; }
.emergency-bar h2 { font-family:var(--font-head); font-size:clamp(1.8rem,4vw,3rem); font-weight:900; text-transform:uppercase; margin-bottom:.5rem; }
.emergency-bar a { font-family:var(--font-head); font-size:clamp(1.5rem,4vw,2.5rem); font-weight:900; color:var(--white); letter-spacing:.05em; display:block; margin-top:.75rem; }
.emergency-bar a:hover { text-decoration:underline; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background:var(--dark); padding:.75rem 0; }
.breadcrumb-inner { display:flex; gap:.5rem; align-items:center; font-size:.85rem; color:rgba(255,255,255,.5); }
.breadcrumb-inner a { color:rgba(255,255,255,.6); }
.breadcrumb-inner a:hover { color:var(--red); }
.breadcrumb-inner span.sep { color:rgba(255,255,255,.2); }
.breadcrumb-inner span.current { color:var(--white); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero { background:var(--anthracit); color:var(--white); padding:4rem 0 3rem; }
.page-hero h1 { font-family:var(--font-head); font-size:clamp(2rem,5vw,3.5rem); font-weight:900; text-transform:uppercase; }
.page-hero p { color:rgba(255,255,255,.7); margin-top:.75rem; font-size:1.05rem; }
.page-hero .cta-row { display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap; }

/* ===== CONTENT ===== */
.content-section { padding:4rem 0; }
.content-grid { display:grid; grid-template-columns:2fr 1fr; gap:3rem; }
.content-body h2 { font-family:var(--font-head); font-size:1.8rem; font-weight:800; text-transform:uppercase; margin:2rem 0 .75rem; color:var(--anthracit); }
.content-body h2:first-child { margin-top:0; }
.content-body h3 { font-family:var(--font-head); font-size:1.3rem; font-weight:700; color:var(--red); margin:1.5rem 0 .5rem; }
.content-body p { color:var(--muted); margin-bottom:1rem; }
.content-body ul { padding-left:1.25rem; color:var(--muted); margin-bottom:1rem; }
.content-body ul li { margin-bottom:.4rem; }
.sidebar { position:sticky; top:100px; }
.sidebar-box { background:var(--light); border-radius:var(--radius); padding:1.75rem; margin-bottom:1.5rem; border-left:4px solid var(--red); }
.sidebar-box h4 { font-family:var(--font-head); font-size:1.1rem; font-weight:800; text-transform:uppercase; margin-bottom:1rem; }
.sidebar-phone { font-family:var(--font-head); font-size:1.5rem; font-weight:900; color:var(--red); display:block; margin-top:.5rem; }

/* ===== FAQ ===== */
.faq-section { padding:4rem 0; background:var(--light); }
.faq-list { margin-top:2.5rem; max-width:800px; }
.faq-item { background:var(--white); border-radius:var(--radius); margin-bottom:1rem; box-shadow:0 2px 8px rgba(0,0,0,.06); overflow:hidden; }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:1.25rem 1.5rem; cursor:pointer; font-weight:600; font-size:1rem; }
.faq-q::after { content:'▼'; color:var(--red); font-size:.75rem; transition:transform .3s; }
.faq-item.open .faq-q::after { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-a-inner { padding:0 1.5rem 1.25rem; color:var(--muted); }
.faq-item.open .faq-a { max-height:500px; }

/* ===== FORM ===== */
.form-section { padding:5rem 0; background:var(--anthracit); }
.form-wrapper { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.form-left { color:var(--white); }
.form-left .section-title { color:var(--white); }
.form-left p { color:rgba(255,255,255,.75); margin:.75rem 0 1.5rem; }
.form-benefits { list-style:none; }
.form-benefits li { padding:.4rem 0; color:rgba(255,255,255,.85); font-size:.95rem; }
.form-box { background:var(--white); border-radius:var(--radius); padding:2rem; box-shadow:var(--shadow-lg); }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-weight:600; font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:.4rem; color:var(--anthracit); }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:.75rem 1rem; border:2px solid var(--border); border-radius:var(--radius); font-family:var(--font-body); font-size:1rem; color:var(--text); background:var(--white); transition:border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--red); }
.form-check label { display:flex; align-items:center; gap:.75rem; font-size:.9rem; font-weight:400; text-transform:none; letter-spacing:0; color:var(--muted); }
.form-check input { width:auto; }
.form-success { text-align:center; padding:3rem 2rem; }
.success-icon { font-size:4rem; margin-bottom:1rem; }
.form-success h3 { font-family:var(--font-head); font-size:2rem; font-weight:900; color:var(--anthracit); }

/* ===== FOOTER ===== */
.footer { background:var(--black); color:var(--white); padding:4rem 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; }
.footer-logo { font-family:var(--font-head); font-size:1.8rem; font-weight:900; text-transform:uppercase; margin-bottom:1rem; }
.footer-logo span { color:var(--red); }
.footer-col p { color:rgba(255,255,255,.5); font-size:.9rem; line-height:1.7; }
.footer-col p a { color:rgba(255,255,255,.6); transition:color .2s; }
.footer-col p a:hover { color:var(--red); }
.footer-col h4 { font-family:var(--font-head); font-weight:800; font-size:1rem; text-transform:uppercase; letter-spacing:.1em; color:var(--red); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.4rem; }
.footer-col ul li a { color:rgba(255,255,255,.5); font-size:.9rem; transition:color .2s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-brands { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1rem; }
.brand-badge { background:rgba(255,255,255,.07); font-size:.7rem; padding:.2rem .6rem; border-radius:3px; color:rgba(255,255,255,.5); border:1px solid rgba(255,255,255,.1); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); margin-top:3rem; padding:1.25rem 0; }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { color:rgba(255,255,255,.3); font-size:.85rem; }
.footer-bottom a { color:rgba(255,255,255,.4); }
.footer-bottom a:hover { color:var(--red); }

/* ===== FLOAT PHONE ===== */
.float-phone { position:fixed; bottom:1.5rem; right:1.5rem; z-index:9999; background:var(--red); color:var(--white); border-radius:50px; display:flex; align-items:center; gap:.5rem; padding:.9rem 1.5rem; box-shadow:0 6px 24px rgba(230,57,70,.5); animation:pulse-phone 2s infinite; font-family:var(--font-head); font-weight:700; font-size:1rem; text-transform:uppercase; letter-spacing:.05em; }
.float-phone:hover { background:var(--red-dark); animation:none; transform:scale(1.05); }
.float-icon { font-size:1.2rem; }
@keyframes pulse-phone { 0%,100%{box-shadow:0 6px 24px rgba(230,57,70,.5)} 50%{box-shadow:0 6px 36px rgba(230,57,70,.8)} }

/* ===== DISTRICT PAGE ===== */
.district-hero { background:linear-gradient(135deg,var(--anthracit) 60%,var(--dark)); color:var(--white); padding:4rem 0; }
.district-services-list { list-style:none; display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:1rem; margin-top:1.5rem; }
.district-services-list li { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:1rem 1.25rem; }
.district-services-list li strong { color:var(--red); display:block; font-family:var(--font-head); font-size:1.1rem; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .about-grid { grid-template-columns:1fr; }
  .about-img { display:none; }
  .content-grid { grid-template-columns:1fr; }
  .sidebar { position:static; }
}
@media(max-width:768px) {
  .nav-menu { display:none; flex-direction:column; position:fixed; top:0; left:0; right:0; bottom:0; background:var(--black); padding:5rem 2rem 2rem; gap:0; overflow-y:auto; }
  .nav-menu.open { display:flex; }
  .nav-menu > li > a { font-size:1.4rem; padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.07); }
  .dropdown { position:static; display:none; box-shadow:none; padding-left:1rem; }
  .has-drop.open .dropdown { display:block; }
  .nav-toggle { display:flex; position:relative; z-index:1001; }
  .hero-stats { gap:1.5rem; }
  .form-wrapper { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .topbar-inner { flex-direction:column; gap:.25rem; text-align:center; }
  .float-text { display:none; }
  .float-phone { border-radius:50%; padding:1rem; width:56px; height:56px; justify-content:center; }
  .footer-bottom-inner { flex-direction:column; gap:.5rem; text-align:center; }
}
