:root {
  --accent: #ff8a00;
  --bg: #f3f5f7;
  --dark: #1f2937;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #edf0f3 100%);
  color: var(--dark);
}

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, #ff8a00, #ffb347);
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.3);
}

.phone-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #4b5563;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background-color: var(--accent);
}

.section-title {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card,
.content-card,
.service-card {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.hero-card {
  padding: 1.2rem 1.2rem 2.2rem;
}

.slide-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.95);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.service-card {
  padding: 1.3rem 1.1rem;
  text-align: center;
}

.service-icon {
  font-size: 2rem;
  color: var(--accent);
}

.btn-warning {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-warning:hover {
  background-color: #f07f00;
  border-color: #f07f00;
}

.content-card {
  padding: 1.25rem;
}

.map-frame,
#dg-widget {
  display: block;
  width: 100% !important;
  min-width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
}

#dg-widget {
  background: var(--bg);
}

.footer {
  background: #111827;
  color: #e5e7eb;
}

.review-card {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 1rem;
}

.review-stars {
  color: #ff8a00;
  letter-spacing: 1px;
  font-size: 1.05rem;
}

.worktime-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.95rem;
}

.worktime-row + .worktime-row {
  margin-top: 8px;
}

.worktime-day {
  font-weight: 500;
}

.worktime-hours {
  font-weight: 700;
  color: #111827;
}

.worktime-break {
  margin: 6px 2px 8px;
  color: #6b7280;
  font-size: 0.85rem;
}

.worktime-row.is-day-off {
  background: #fff1f2;
}

.worktime-row.is-day-off .worktime-hours {
  color: #be123c;
}

.seo-panel p {
  margin-bottom: 0.85rem;
  color: #4b5563;
  line-height: 1.65;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-card {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.faq-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.93rem;
  line-height: 1.55;
}

.faq-note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
