@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: optional;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: optional;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bg: #0a0a0a;
  --card: #0f1724;
  --accent: #facc15;
  --muted: #9ca3af;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 12px;
  --max-w: 1100px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: #e6eef8;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 8px;
}
.brand h1 {
  margin: 0;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.4px;
}
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-address {
  margin-top: 6px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 220px;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffd700;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.phone-link:hover {
  color: #ffffff;
  transform: scale(1.03);
}

.phone-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
  transition: 0.2s;
  max-width: 260px;
}

.phone-wrapper:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

.phone-prefix {
  font-weight: 600;
  margin-right: 4px;
  white-space: nowrap;
  color: #222;
  user-select: none;
}

#phone {
  border: none;
  outline: none;
  font-size: 16px;
  flex: 1;
  color: #222;
  font-family: inherit;
}

#phone::placeholder {
  color: #999;
}

#phone:invalid {
  color: #ef4444;
}

.messenger-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.messenger-label {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.messengers {
  display: flex;
  gap: 8px;
}

.messenger {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.messenger img {
  width: 18px;
  height: 18px;
}

.telegram {
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.4);
}
.telegram:hover {
  background: rgba(0, 136, 204, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
}

.viber {
  background: rgba(123, 64, 190, 0.15);
  border: 1px solid rgba(123, 64, 190, 0.4);
}
.viber:hover {
  background: rgba(123, 64, 190, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(123, 64, 190, 0.5);
}

@media (max-width: 980px) {
  .contact-block {
    align-items: center;
  }
  .messenger-label {
    text-align: center;
  }
}

nav {
  display: flex;
  gap: 12px;
}
nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
nav a:hover {
  color: var(--accent);
  background: var(--glass);
}

.hero {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
  padding: 40px 8%;
  flex-wrap: nowrap;
  min-height: 300px;
}

.hero-left {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-right {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-right-top {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  flex: 1 1 0;
  max-height: none;
}

.hero-right-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hero-right-top img:hover {
  transform: scale(1.02);
}

.hero-right-bottom {
  background: var(--accent);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #000;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;

  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
}

.hero-right-bottom {
  background: #333333;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
}

.hero-right-bottom:hover {
  background-color: #555555;
  box-shadow: 0 8px 20px rgba(85, 85, 85, 0.7);
}

.btn-primary {
  background-color: #ffb300;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 16px;
  display: inline-block;
  border: none;
}

.btn-primary:hover {
  background-color: #ffca28;
  box-shadow: 0 4px 12px rgba(255, 202, 40, 0.6);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero-right,
  .hero-left {
    max-width: 100%;
  }
  .hero-right-top,
  .hero-right-bottom {
    max-height: none;
  }
  .hero-card {
    height: auto;
  }
}

.section {
  margin-top: 36px;
  margin-bottom: 36px;
}
.section h3 {
  margin: 0 0 12px 0;
  color: var(--accent);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}
.service img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
}
.service h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.booking {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 16px;
  border-radius: 12px;
}
label {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 14px;
}
input[type=text], textarea, select, input[type=datetime-local] {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.04);
  color: inherit;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input[type="date"]:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

select {
  appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e6eef8;
  font-size: 15px;
  padding: 10px 40px 10px 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23facc15' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

select:hover {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.25);
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.4);
}

option {
  background-color: #0f1724;
  color: #e6eef8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.06);
}

#reviews {
  text-align: center;
  padding: 60px 20px;
  background-color: #0a0a0a;
  color: #fff;
}

#reviews h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 0.5px;
}

.rating-box {
  display: inline-block;
  background-color: #111;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  max-width: 420px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.rating-stars {
  font-size: 1.8rem;
  color: #ffb800;
  margin-bottom: 10px;
}

.rating-text {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
}

.rating-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.rating-link:hover {
  background-color: #005ecc;
}

.site-footer {
  background: #0d1117;
  color: var(--muted);
  padding: 20px 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  clear: both;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.footer-info {
  flex: 1;
  min-width: 220px;
  word-break: keep-all;
}

.footer-info h4 {
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-info p,
.footer-info a {
  font-size: 0.85rem;
  margin: 2px 0;
  color: #bbb;
}

.footer-info a {
  text-decoration: underline;
}

.footer-map {
  flex: 1;
  min-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.footer-map iframe {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,165,0,0.15);
  border: none;
}

.map-description {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  box-sizing: border-box;
  width: 100%;
}

.footer-legal a {
  color: var(--accent);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-map iframe {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .footer-info p,
  .footer-info a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    font-size: 10px;
    padding: 4px 8px;
    line-height: 1.2;
  }

  .footer-map iframe {
    height: 100px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

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

  .footer-map {
    margin: 0 auto;
  }

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

.phone-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

.phone-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.phone-prefix {
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
  user-select: none;
  white-space: nowrap;
}

#phone {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #e6eef8;
  font-size: 15px;
  font-family: inherit;
  letter-spacing: 0.5px;
}

#phone::placeholder {
  color: #888;
}

#phone:invalid {
  border: none;
  color: #ef4444;
}

input[type="tel"]:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

input[type="tel"]:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}

input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e6eef8;
  font-size: 15px;
  transition: all 0.3s ease;
}

input[type="date"]:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

#hiddenServices {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
}

#hiddenServices.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
}

.seo-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-top: 10px;
}

.policy-content h2,
.policy-content h3 {
  color: #FFD200;
  text-align: center;
}

.prices-section {
  padding: 60px 20px;
  background-color: var(--bg);
  color: #fff;
  text-align: center;
}

.prices-section h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffa500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-category {
  margin-bottom: 50px;
}

.price-category h2 {
  color: #ff8c00;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.price-category h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 3px;
  background-color: #ffa500;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.price-category h2:hover {
  transform: translateY(-3px);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.price-category h2:hover::after {
  width: 100%;
}

.price-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 700px;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.15);
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.service-name {
  color: #ffb84d;
  text-align: left;
  font-weight: 500;
}

.service-price {
  text-align: right;
  color: #fff;
  font-weight: 600;
}

.price-table tr:hover td {
  background-color: #1a1a1a;
  transition: 0.3s ease;
}

.price-table tr:hover .service-name {
  color: #ffa500;
}

@media (max-width: 600px) {
  .price-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .price-category h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-block {
    align-items: center;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 20px;
  }

  .brand {
    justify-content: center;
  }

  .brand h1 {
    font-size: 20px;
  }

  nav {
    gap: 10px;
  }

  .contact-block {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    flex-direction: column;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-right-top img {
    border-radius: 12px;
  }

  @media (max-width: 1024px) {
    .services-grid {
      justify-content: center;
    }
  }

  .about-card, .service {
    text-align: center;
  }

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

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand h1 {
    font-size: 18px;
  }

  header {
    padding: 12px;
  }

  nav a {
    display: inline-block;
    padding: 6px 10px;
    font-size: 14px;
  }

  .hero {
    padding: 16px;
  }

  .hero-card h2 {
    font-size: 20px;
  }

  .hero-card p {
    font-size: 15px;
  }

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

  .service img {
    width: 70px;
    height: 70px;
  }

.footer-map {
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
  text-align: center;
}

.footer-map iframe {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.15);
}

.map-description {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 400px) {
  .brand h1 {
    font-size: 16px;
  }

  .brand-address {
    font-size: 13px;
  }

  .hero-card h2 {
    font-size: 18px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  .services-grid {
    gap: 12px;
  }

  .service img {
    width: 60px;
    height: 60px;
  }

  .footer-content p {
    font-size: 13px;
  }
}