/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #222;
  --gray: #888;
  --light-gray: #f5f5f5;
  --white: #fff;
  --text: #1a1a1a;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--orange-dark); }
.btn-lg { font-size: 1.05rem; padding: 14px 28px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid #2a2a2a;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-icon { color: var(--orange); font-size: 1.3rem; }
.logo-inc { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  border-top: 1px solid #2a2a2a;
}
.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.btn-mobile-cta {
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  width: 100%;
}
.hero-content {
  max-width: 600px;
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--orange);
  padding: 0;
  box-shadow: 0 8px 40px rgba(255, 107, 0, 0.25);
}
.badge {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange-dark);
  border: 1px solid rgba(255,107,0,0.5);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.accent { color: var(--orange); }
.hero-sub {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid #999;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: transparent; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  padding-top: 32px;
}
.stat span {
  display: block;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
}
.stat small { color: #666; font-size: 0.82rem; }

/* ===== SECTION BASE ===== */
.section { padding: 88px 0; }
.section-dark {
  background: var(--dark2);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-dark .section-header p { color: #aaa; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  color: #555;
  font-size: 0.9rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--orange); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { color: #999; font-size: 0.92rem; line-height: 1.65; }

/* ===== REVIEWS ===== */
.reviews { background: var(--light-gray); }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 360px;
  margin: 0 auto 48px;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.google-g { flex-shrink: 0; }
.reviews-summary-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-score {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.reviews-stars { color: #fbbc05; font-size: 1.15rem; letter-spacing: 2px; }
.reviews-count { color: #666; font-size: 0.85rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.review-date { color: #999; font-size: 0.8rem; }
.review-stars { color: #fbbc05; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: #555; font-size: 0.92rem; line-height: 1.65; }
.reviews-cta { text-align: center; margin-top: 44px; }

/* ===== CUSTOMER QR CODES ===== */
.qr-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,107,0,0.16), transparent 27%),
    linear-gradient(145deg, #111 0%, #181818 58%, #101010 100%);
}
.qr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.qr-section .container { position: relative; z-index: 1; }
.qr-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}
.qr-intro-copy { max-width: 720px; }
.qr-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.qr-intro h2 {
  max-width: 580px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.qr-intro p { color: #aaa; font-size: 1rem; line-height: 1.75; }
.qr-print-button { flex-shrink: 0; }
.qr-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.qr-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  background: #f3f0e9;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  color: var(--text);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qr-card:hover { transform: translateY(-5px); box-shadow: 0 32px 80px rgba(0,0,0,0.38); }
.qr-card-featured {
  background: var(--orange);
  transform: rotate(-1.25deg);
}
.qr-card-featured:hover { transform: rotate(-1.25deg) translateY(-5px); }
.qr-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  margin-bottom: 14px;
}
.qr-number { color: #777; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; }
.qr-card-featured .qr-number { color: rgba(26,26,26,0.63); }
.qr-priority,
.qr-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  background: rgba(255,255,255,0.7);
  border-radius: 99px;
  color: #555;
  font-size: 0.66rem;
  font-weight: 700;
}
.qr-priority { background: #1a1a1a; color: #fff; }
.qr-status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.qr-status-instagram::before { background: #c62978; }
.qr-image-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
}
.qr-image-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }
.qr-card-copy { padding: 22px 4px 18px; }
.qr-label {
  display: block;
  margin-bottom: 6px;
  color: #777;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.qr-card-featured .qr-label { color: rgba(26,26,26,0.64); }
.qr-card-copy h3 { margin-bottom: 8px; font-size: 1.25rem; letter-spacing: -0.025em; }
.qr-card-featured .qr-card-copy h3 { font-size: 1.45rem; }
.qr-card-copy p { color: #666; font-size: 0.86rem; line-height: 1.55; }
.qr-card-featured .qr-card-copy p { color: rgba(26,26,26,0.75); }
.qr-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 15px 4px 3px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.qr-open-link,
.qr-download-link {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}
.qr-open-link { color: #666; }
.qr-download-link { display: inline-flex; align-items: center; gap: 6px; }
.qr-open-link:hover,
.qr-download-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.qr-tip {
  max-width: 730px;
  margin: 30px auto 0;
  color: #888;
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}
.qr-tip strong { color: #bbb; }
.smart-qr-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  background: #f3f0e9;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}
.smart-qr-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 44px;
  background: var(--orange);
}
.smart-qr-badge {
  margin-bottom: 15px;
  padding: 6px 11px;
  color: #fff;
  background: #1a1a1a;
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.smart-qr-frame {
  width: min(100%, 340px);
  aspect-ratio: 1;
  padding: 22px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.smart-qr-frame img { display: block; width: 100%; height: 100%; }
.smart-qr-visual p { margin-top: 16px; color: rgba(26,26,26,0.75); font-size: 0.77rem; font-weight: 700; }
.smart-qr-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 70px); }
.smart-qr-content h3 { max-width: 570px; margin: 8px 0 17px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1; letter-spacing: -0.045em; }
.smart-qr-description { max-width: 580px; color: #666; font-size: 0.92rem; line-height: 1.7; }
.smart-qr-options { display: grid; gap: 0; margin: 30px 0; border-top: 1px solid #d8d2c7; }
.smart-qr-options div { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid #d8d2c7; }
.smart-qr-options span { color: var(--orange); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; }
.smart-qr-options strong { font-size: 0.88rem; }
.smart-qr-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.qr-download-light { color: var(--text); }
.smart-qr-preview { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: 22px; color: #777; font-size: 0.78rem; font-weight: 700; text-decoration: none; }
.smart-qr-preview:hover { color: var(--orange); }

/* ===== MAP ===== */
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-cta { text-align: center; margin-top: 20px; }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid #ccc;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: #242424;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--orange); }
.contact-card-icon { font-size: 2.4rem; line-height: 1; }
.contact-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.contact-card p { color: #999; font-size: 0.92rem; line-height: 1.6; }
.contact-card-insta:hover { border-color: #e1306c; }
.btn-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-size: 0.88rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 48px 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.footer-tagline { color: #777; font-size: 0.88rem; margin-bottom: 12px; }
.footer-phone {
  display: inline-block;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-phone:hover { color: var(--orange-dark); }
.footer-social { margin: 14px 0; }
.footer-insta-link {
  display: inline-flex;
  align-items: center;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-insta-link:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    text-align: center;
  }
  .hero-logo-wrap { order: -1; }
  .hero-logo { width: 240px; height: 240px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }

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

  .qr-intro { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .qr-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .smart-qr-panel { grid-template-columns: 1fr; }
  .smart-qr-visual { min-height: auto; padding: 34px 24px; }
  .smart-qr-frame { max-width: 310px; }
  .smart-qr-content { padding: 38px 26px; }
  .qr-card-featured,
  .qr-card-featured:hover { transform: none; }

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

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-card { padding: 28px 20px; }
  .qr-print-button { width: 100%; justify-content: center; }
  .qr-card { padding: 14px; }
}

@media print {
  body * { visibility: hidden; }
  #qr-codes,
  #qr-codes * { visibility: visible; }
  #qr-codes {
    position: absolute;
    inset: 0;
    padding: 18px 0;
    background: #fff !important;
  }
  .qr-section::before,
  .qr-print-button,
  .qr-tip,
  .qr-open-link { display: none !important; }
  .qr-intro { display: block; margin-bottom: 18px; }
  .qr-kicker { color: #555; }
  .qr-intro h2 { color: #111; font-size: 2rem; }
  .qr-intro p { color: #555; font-size: 0.82rem; }
  .qr-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .qr-card,
  .qr-card-featured {
    padding: 10px;
    border: 1px solid #bbb;
    background: #fff;
    box-shadow: none;
    transform: none;
    break-inside: avoid;
  }
  .qr-card-topline { margin-bottom: 7px; }
  .qr-priority { background: #222; }
  .qr-image-frame { padding: 10px; }
  .qr-card-copy { padding: 10px 2px 8px; }
  .qr-card-copy h3,
  .qr-card-featured .qr-card-copy h3 { font-size: 1rem; }
  .qr-card-copy p { font-size: 0.68rem; }
  .qr-actions { display: none; }
}
