* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(ellipse at 20% 0%, #0f1f38 0%, #06161a 45%, #08141c 100%);
  color: #f2f2f2;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header-inner,
.nav-inner,
.content,
.footer-inner {
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
}

.top-header {
  background: rgba(11, 42, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.brand-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-center {
  font-size: 18px;
  font-weight: 500;
}

.nav-row {
  background: rgba(11, 42, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(19, 54, 54, 0.9);
  color: #f2f2f2;
  text-decoration: none;
  transition: 0.2s;
  font-size: 14px;
}

.pill:hover {
  background: rgba(26, 74, 74, 0.95);
}

.pill.active {
  background: #b45309;
}

.social-top {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.social-label {
  font-size: 13px;
  color: #ddd;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
}

.social-icon {
  width: 22px;
  height: 22px;
  fill: #f2f2f2;
  transition: 0.2s;
}

.social-icon:hover {
  fill: #f97316;
  transform: scale(1.1);
}

.content {
  padding: 18px 0 30px;
}

.center {
  text-align: center;
}

h1 {
  margin: 10px 0 18px;
  font-size: 28px;
}

h2 {
  margin: 10px 0;
  font-size: 20px;
}

.card {
  background: rgba(11, 42, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  margin: 14px 0;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 83, 9, 0.6);
  box-shadow: 0 8px 24px rgba(15, 31, 56, 0.4);
}

.text-block {
  line-height: 1.5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.gallery-intro {
  margin: 0 0 18px;
  text-align: center;
}

.gallery-intro p {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.work-card {
  background: rgba(11, 42, 42, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: #b45309;
}

.work-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.work-title {
  padding: 10px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.price-card {
  text-align: left;
}

.price-card p {
  margin: 6px 0;
  text-align: left;
}

.slider {
  position: relative;
  height: 420px;
  margin: 18px 0 28px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(11, 42, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #b45309;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: 0.2s;
}

.slider-btn:hover {
  background: #f97316;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

.blog-intro {
  text-align: center;
  margin-bottom: 24px;
  font-size: 16px;
  color: #ccc;
}

.blog-section {
  margin: 28px 0;
}

.blog-section h2 {
  color: #f97316;
  margin-bottom: 14px;
  font-size: 22px;
}

.blog-section h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  color: #fff;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.benefits-list li {
  padding: 6px 0;
  line-height: 1.5;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.steps-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  line-height: 1.5;
}

.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b45309;
}

.steps-list strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.meta-tag {
  display: inline-block;
  background: rgba(180, 83, 9, 0.2);
  color: #f97316;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form input,
.form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(19, 54, 54, 0.8);
  backdrop-filter: blur(4px);
  color: #f2f2f2;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: 0.2s;
}

.form input:focus,
.form textarea:focus {
  border-color: #b45309;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

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

.form button {
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  background: #b45309;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  align-self: flex-start;
}

.form button:hover {
  background: #f97316;
  transform: translateY(-1px);
}

.footer {
  margin-top: auto;
  background: rgba(11, 42, 42, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  font-size: 16px;
  font-weight: 500;
}

.copyright {
  font-size: 13px;
  color: #aaa;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.muted {
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form button {
    width: 100%;
    text-align: center;
  }

  .slider {
    height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-btn.left {
    left: 6px;
  }

  .slider-btn.right {
    right: 6px;
  }

  .work-card img {
    height: 200px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }
}

.subtitle {
  color: #f97316;
  font-weight: 500;
  margin: -6px 0 20px;
  font-size: 18px;
}
