/* ============================================================
   Sitku-Lux Bt. — Global Stylesheet
   Local Trust-First Automotive Workshop
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  margin-bottom: 1rem;
  color: #333333;
}

p:last-child { margin-bottom: 0; }

/* ---- Color Variables ---- */
:root {
  --red:        #c0392b;
  --red-dark:   #a93226;
  --red-light:  #e74c3c;
  --graphite:   #2c2c2c;
  --dark:       #111111;
  --mid:        #555555;
  --light-gray: #f4f4f4;
  --border:     #e0e0e0;
  --white:      #ffffff;
}

/* ---- Utility ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--gray {
  background: var(--light-gray);
}

.section--dark {
  background: var(--graphite);
  color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #ffffff;
}

.text-center { text-align: center; }

.lead {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header .lead {
  margin-top: 0.75rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--graphite);
}

/* ---- Header ---- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo span {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.4rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--graphite);
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  background: #fdf2f2;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 0.55rem 1.25rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---- Hero ---- */
.hero {
  background: var(--light-gray);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.hero-text h1 {
  margin-bottom: 1rem;
}

.hero-text .lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 0.5rem;
}

.hero-image-placeholder {
  background: #dde0e3;
  border-radius: 4px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
}

.hero-image-placeholder p {
  font-size: 0.8rem;
  color: #777;
  font-style: italic;
  margin: 0;
}

/* Contact Card */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.contact-card-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-card-item:last-child {
  margin-bottom: 0;
}

.contact-card-icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.contact-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mid);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.contact-card-value a {
  color: var(--red);
  text-decoration: none;
}

.contact-card-value a:hover {
  text-decoration: underline;
}

.contact-card .btn {
  width: 100%;
  margin-top: 1.25rem;
  font-size: 1rem;
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--graphite);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--red);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8e8e8;
  white-space: nowrap;
}

.trust-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  border-color: #c8c8c8;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--red);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--mid);
  margin: 0;
}

/* ---- Why Us ---- */
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--dark);
  font-weight: 500;
}

.why-us-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  background: #dde0e3;
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.gallery-item p {
  font-size: 0.78rem;
  color: #666;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--red);
  padding: 3.5rem 0;
  text-align: center;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.final-cta-actions .btn-white {
  background: #ffffff;
  color: var(--red);
  border-color: #ffffff;
  font-weight: 700;
}

.final-cta-actions .btn-white:hover {
  background: #f0f0f0;
}

.final-cta-email {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.final-cta-email a {
  color: #ffffff;
  text-decoration: underline;
}

/* ---- Footer ---- */
.site-footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.footer-brand .logo {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #aaaaaa;
  margin: 0;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.85rem;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #aaaaaa;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.footer-contact-item a {
  color: #e0e0e0;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #777777;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--graphite);
  padding: 3rem 0 2.5rem;
  border-bottom: 3px solid var(--red);
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  color: #cccccc;
  max-width: 640px;
  margin: 0;
}

/* ---- Services Detail Page ---- */
.service-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.service-section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0;
}

.service-section p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.7;
}

/* ---- Kárügyintézés Page ---- */
.kar-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.kar-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--dark);
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 3px;
}

.kar-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.kar-section:last-of-type {
  border-bottom: none;
}

.info-box {
  background: #fdf2f2;
  border: 1px solid #f5c6c6;
  border-left: 4px solid var(--red);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a1a1a;
}

/* ---- Kapcsolat Page ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #fdf2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 0.2rem;
}

.contact-info-text span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-info-text a {
  color: var(--red);
}

.contact-info-text a:hover {
  text-decoration: underline;
}

.contact-note {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 600;
}

.map-placeholder {
  background: #dde0e3;
  border-radius: 4px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  margin-top: 1.5rem;
}

.map-placeholder p {
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

/* ---- Contact Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-microcopy {
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
  margin-top: 0.25rem;
}

/* ---- Sticky Mobile Call Bar ---- */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  padding: 0.85rem 1.5rem;
  text-align: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.sticky-call-bar a {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--mid);
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 480px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding: 2.5rem 0; }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    gap: 0.5rem;
  }

  .trust-item {
    white-space: normal;
  }

  .sticky-call-bar {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
    max-width: 360px;
  }
}

/* ---- Hamburger open state ---- */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
