/* ============================================================
   PCIT SERVICE — Main Stylesheet
   Clone of pcit.dk design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg:       #0a0a0a;
  --bg2:      #111111;
  --bg3:      #1a1a1a;
  --border:   #2a2a2a;
  --red:      #e63946;
  --red-dark: #c1121f;
  --white:    #ffffff;
  --text:     #cccccc;
  --muted:    #666666;
  --green:    #4caf50;
  --yellow:   #ffc107;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(0,0,0,.4);
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── TOP BAR ─────────────────────────────────── */
.topbar-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-strip .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar-strip a { color: var(--text); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-strip a:hover { color: var(--red); }
.topbar-strip .right { display: flex; gap: 20px; }

/* ── HEADER / NAV ────────────────────────────── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 32px; height: 68px;
}
.site-logo img { height: 44px; width: auto; }
.site-logo { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--text);
  border-radius: var(--radius); transition: all var(--transition);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--white); }
.main-nav > li > a .arrow {
  font-size: 10px; transition: transform var(--transition); opacity: .6;
}
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

/* MEGA DROPDOWN */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; min-width: 600px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  transform: translateX(-50%) translateY(-8px);
}
.main-nav > li:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px;
}
.mega-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 14px 12px; border-radius: var(--radius); gap: 8px;
  transition: background var(--transition); color: var(--text);
}
.mega-item:hover { background: var(--bg3); color: var(--white); }
.mega-item img { width: 40px; height: 40px; object-fit: contain; }
.mega-item span { font-size: 12px; font-weight: 600; line-height: 1.3; }

/* Simple dropdown */
.simple-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 200px; box-shadow: var(--shadow); padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateY(-8px);
}
.main-nav > li:hover .simple-dropdown {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.simple-dropdown a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: var(--text); transition: all var(--transition);
}
.simple-dropdown a:hover { background: var(--bg3); color: var(--white); padding-left: 20px; }

/* Nav right side */
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-search { display: flex; align-items: center; gap: 8px; }
.nav-search input {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 7px 14px; color: var(--white); font-size: 13px; width: 180px;
  transition: all var(--transition); outline: none;
}
.nav-search input:focus { border-color: var(--red); width: 220px; }

/* Mobile burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 68px; background: var(--bg);
  z-index: 199; overflow-y: auto; padding: 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 16px; font-weight: 500;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .section-title { color: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 16px 0 6px; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  min-height: 85vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(230,57,70,.12) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .03;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.3);
  color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero p { font-size: 18px; color: var(--text); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img { position: relative; }
.hero-img img { border-radius: var(--radius-lg); width: 100%; box-shadow: 0 24px 80px rgba(230,57,70,.2); }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--red); color: #fff; border-radius: var(--radius);
  padding: 14px 20px; font-family: var(--font-head); font-weight: 700;
  box-shadow: var(--shadow);
}
.hero-badge .num { font-size: 32px; font-weight: 900; line-height: 1; }
.hero-badge .sub { font-size: 12px; opacity: .85; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 600;
  font-size: 15px; transition: all var(--transition); border: none; white-space: nowrap;
  cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(230,57,70,.35); }
.btn-outline {
  background: transparent; color: var(--white); border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); background: rgba(230,57,70,.06); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ── TRUST STRIP ─────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 24px 0;
}
.trust-strip .inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 8px;
}
.trust-icon {
  width: 44px; height: 44px; background: rgba(230,57,70,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.trust-title { font-weight: 700; color: var(--white); font-size: 14px; line-height: 1.3; }
.trust-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── SECTION ─────────────────────────────────── */
.section { padding: 72px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── CATEGORY GRID ──────────────────────────── */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cat-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 16px; text-align: center; text-decoration: none; color: var(--text);
  transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cat-card:hover {
  border-color: var(--red); background: var(--bg3); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230,57,70,.15); color: var(--white);
}
.cat-card img { width: 56px; height: 56px; object-fit: contain; transition: transform var(--transition); }
.cat-card:hover img { transform: scale(1.1); }
.cat-card .cat-name { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.3; }
.cat-card .cat-count { font-size: 11px; color: var(--muted); }

/* ── TICKET TRACKER ──────────────────────────── */
.tracker-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tracker-box {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.tracker-input-row {
  display: flex; gap: 10px; margin-top: 24px;
}
.tracker-input-row input {
  flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; color: var(--white); font-size: 16px; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
}
.tracker-input-row input:focus { border-color: var(--red); }
.tracker-input-row input::placeholder { color: var(--muted); }

/* ── ABOUT SPLIT ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; }
.about-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.about-point p { font-size: 15px; color: var(--text); line-height: 1.6; }

/* ── REVIEWS ─────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: #ffc107; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--white); font-size: 14px; }
.review-date { font-size: 12px; color: var(--muted); }

/* ── BRANCHES ────────────────────────────────── */
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.branch-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: border-color var(--transition);
}
.branch-card:hover { border-color: var(--red); }
.branch-card .branch-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.branch-info { display: flex; flex-direction: column; gap: 8px; }
.branch-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.branch-info-row .icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.branch-hours { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(230,57,70,.06) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
}
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 24px auto 0; }
.newsletter-form input {
  flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 13px 18px; color: var(--white); font-size: 15px; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--red); }

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-brand .logo img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all var(--transition); color: var(--muted);
}
.social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(230,57,70,.08); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.footer-contact-row .icon { font-size: 16px; flex-shrink: 0; }
.footer-contact-row a { color: var(--muted); }
.footer-contact-row a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px;
  max-width: 1200px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--red); }

/* ── PRISER PAGE ─────────────────────────────── */
.model-header {
  background: var(--bg2); border-bottom: 1px solid var(--border); padding: 40px 0;
}
.price-filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.price-filter-bar select, .price-filter-bar input {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 9px 14px; color: var(--white); font-size: 14px; outline: none;
  transition: border-color var(--transition);
}
.price-filter-bar select:focus, .price-filter-bar input:focus { border-color: var(--red); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  background: var(--bg2); color: var(--muted); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.price-table tr:hover td { background: var(--bg2); }
.price { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: 16px; }
.warranty-badge {
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 10px;
}
.warranty-2y { background: rgba(76,175,80,.12); color: #4caf50; }
.warranty-1y { background: rgba(255,193,7,.12); color: #ffc107; }
.warranty-0  { background: rgba(102,102,102,.12); color: #666; }

/* ── FORM STYLES ──────────────────────────────── */
.form-control {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; color: var(--white);
  font-size: 15px; font-family: var(--font-body); outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--red); }
.form-control::placeholder { color: var(--muted); }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ALERTS ──────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(76,175,80,.12); border: 1px solid rgba(76,175,80,.3); color: #4caf50; }
.alert-error   { background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.3); color: var(--red); }
.alert-info    { background: rgba(33,150,243,.12); border: 1px solid rgba(33,150,243,.3); color: #2196f3; }

/* ── STATUS BADGE ────────────────────────────── */
.status-badge {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 12px; text-transform: uppercase; letter-spacing: .3px;
}

/* ── SCROLL TO TOP ────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 44px; height: 44px; background: var(--red); color: #fff; border: none;
  border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer; opacity: 0; transition: opacity .3s;
  text-decoration: none;
}
.scroll-top.visible { opacity: 1; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .branches-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-strip .inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .tracker-input-row { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-2 { animation: fadeUp .6s .1s ease both; }
.fade-up-3 { animation: fadeUp .6s .2s ease both; }

/* ── UTILITY ─────────────────────────────────── */
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.font-head  { font-family: var(--font-head); }
.fw-900     { font-weight: 900; }
