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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1e2a3a;
  background-color: #ffffff;
  line-height: 1.6;
  padding-bottom: 130px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(135deg, #0b5ed7, #1e90ff);
  color: #ffffff;
  padding: 20px 0 0;
}

.header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
}

.wave {
  transform: translateY(-4px);
  display: inline-block;
}

.header h1 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.header .tagline {
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-call {
  display: inline-block;
  background-color: #ff5a1f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.35);
  transition: background-color 0.2s ease;
}

.btn-call:hover {
  background-color: #e64a12;
}

.btn-call-secondary {
  background-color: #1e90ff;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.35);
}

.btn-call-secondary:hover {
  background-color: #0b5ed7;
}

.btn-header {
  margin-left: auto;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.nav {
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  background-color: #e8f1fe;
  padding: 48px 0;
  text-align: center;
}

.hero h2 {
  font-size: 1.6rem;
  color: #0b5ed7;
  margin-bottom: 12px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b5ed7;
}

.section {
  padding: 44px 0;
}

.section-alt {
  background-color: #eef4fd;
}

.section h2 {
  color: #0b5ed7;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.section p {
  max-width: 600px;
}

.sub-title {
  color: #0b5ed7;
  font-size: 1.15rem;
  margin: 28px 0 12px;
}

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #d9e4f1;
  border-left: 4px solid #1e90ff;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  color: #0b5ed7;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 0.95rem;
  color: #4a5a6e;
}

.price-card {
  background-color: #ffffff;
  border: 2px solid #1e90ff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.price-main {
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0b5ed7, #1e90ff);
  border: none;
}

.price-main p {
  color: #ffffff;
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.price-big {
  font-size: 2rem;
  font-weight: 700;
  color: #0b5ed7;
  line-height: 1.1;
}

.price-big small {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

.price-main .price-big {
  color: #ffffff;
}

.price-card p {
  margin-top: 6px;
  font-weight: 500;
}

.table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d9e4f1;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 520px;
}

.price-table th {
  background-color: #0b5ed7;
  color: #ffffff;
  text-align: left;
  padding: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-table td {
  padding: 10px 12px;
  border-top: 1px solid #e5edf7;
}

.price-table tbody tr:nth-child(even) {
  background-color: #f4f8fe;
}

.price-table td:nth-child(3),
.price-table td:nth-child(4),
.price-table th:nth-child(3),
.price-table th:nth-child(4) {
  white-space: nowrap;
}

.note-list {
  max-width: 600px;
  padding-left: 20px;
  margin-bottom: 12px;
}

.note-list li {
  margin-bottom: 6px;
}

.note {
  font-size: 0.92rem;
  color: #4a5a6e;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}

.info-item {
  background-color: #f4f8fe;
  border-left: 4px solid #1e90ff;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}

.info-item h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0b5ed7;
  margin-bottom: 4px;
}

.info-item p,
.info-item a {
  font-size: 1.02rem;
  color: #1e2a3a;
}

.info-item a {
  font-weight: 600;
  text-decoration: none;
}

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

.shop-photo-link {
  display: block;
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.shop-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #d9e4f1;
}

.info-item p.shop-photo-caption {
  font-size: 0.9rem;
  font-style: italic;
  color: #4a5a6e;
  margin-top: 6px;
}

.btn-directions {
  display: inline-block;
  margin-top: 12px;
}

.map-wrap {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d9e4f1;
  box-shadow: 0 2px 8px rgba(11, 94, 215, 0.12);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox:target {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  max-height: 100%;
  margin: 0 auto;
  text-align: center;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

.lightbox-content figcaption {
  color: #ffffff;
  margin-top: 10px;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 20px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  opacity: 0.9;
}

.lightbox-close:hover {
  opacity: 1;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid #d9e4f1;
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 10;
}

.btn-call-fixed {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 13px 16px;
  font-size: 0.98rem;
}

.footer {
  background-color: #0b5ed7;
  color: #ffffff;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

.footer p + p {
  margin-top: 4px;
  opacity: 0.9;
}

@media (min-width: 600px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}