:root {
  color-scheme: dark;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --bg: #07111f;
  --bg-soft: #0f2037;
  --accent: #6ec5ff;
  --accent-strong: #5b7cff;
  --text: #f4f7ff;
  --muted: #b9c4dc;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(110, 197, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-soft) 48%, #081425);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(5, 11, 23, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
  justify-self: start;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  justify-self: center;
  grid-column: 2;
  margin: 0 auto;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--text);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-weight: 600;
  white-space: nowrap;
  justify-self: end;
}

.phone-icon {
  font-size: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 56px 0 36px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent);
}

.hero h1,
.section-title h2,
.cta h2 {
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero-text,
.card p,
.cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #03101d;
  background: linear-gradient(90deg, var(--accent), #d1eaff);
  box-shadow: 0 8px 24px rgba(110, 197, 255, 0.25);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.hero-stats strong {
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.main-image,
.accent-image {
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  object-fit: cover;
}

.main-image {
  width: 100%;
  height: 420px;
}

.accent-image {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 180px;
  height: 180px;
  border: 4px solid rgba(255, 255, 255, 0.14);
}

.info-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 32px;
  margin: 10px 0 36px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.94), rgba(15, 32, 55, 0.86)),
    url('img/1.png') center/cover no-repeat;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.info-panel-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.info-panel-content p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d7f2ff);
  color: #04111f;
  font-size: 0.8rem;
}

.badge-icon-green {
  background: linear-gradient(135deg, #2ecc71, #7ee8a9);
  color: #ffffff;
}

.badge-icon-yellow {
  background: linear-gradient(135deg, #f4c542, #ffe08a);
  color: #5a4300;
}

.info-panel-list {
  display: grid;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 197, 255, 0.16);
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.info-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form-section {
  margin: 8px 0 40px;
}

.contact-form-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.contact-form-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 11, 23, 0.75);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #92a2bd;
}

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

.full-width {
  grid-column: 1 / -1;
}

.contact-form .btn {
  justify-self: start;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.feedback-section {
  padding: 10px 0 24px;
}

.feedback-title {
  display: grid;
  gap: 8px;
}

.feedback-summary {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feedback-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.feedback-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feedback-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #d8f0ff);
  color: #03111f;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feedback-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.feedback-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feedback-name-row strong {
  color: var(--text);
  font-size: 1rem;
}

.feedback-verified {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(110, 197, 255, 0.24);
  background: rgba(110, 197, 255, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feedback-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feedback-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.feedback-date {
  color: var(--muted);
  font-size: 0.84rem;
}

.feedback-card p {
  margin: 0;
  color: #f8fbff;
  line-height: 1.75;
  font-size: 0.98rem;
}

.feedback-source {
  margin-top: auto;
  color: #9ec8f3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery {
  padding: 24px 0 8px;
}

.section-title {
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  max-width: 700px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 14px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.card h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.showcase-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin: 26px 0 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.showcase-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}

.showcase-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.showcase-content p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-list {
  padding: 0;
  margin: 16px 0 20px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.showcase-list li::before {
  content: '✦';
  color: var(--accent);
}

.location-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin: 26px 0 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.location-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.location-content p {
  color: var(--muted);
  line-height: 1.7;
}

.location-details {
  display: grid;
  gap: 12px;
  margin: 18px 0 20px;
}

.location-details div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.location-details strong {
  color: var(--text);
}

.location-details span {
  color: var(--muted);
}

.location-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.cta {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(90deg, rgba(110, 197, 255, 0.15), rgba(91, 124, 255, 0.12));
  border: 1px solid var(--border);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  width: 100%;
  padding: 32px 24px;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.8;
}

.footer h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer .brand {
  margin-bottom: 8px;
}

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

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

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

  .info-panel {
    grid-template-columns: 1fr;
  }

  .feedback-grid,
  .card-grid,
  .showcase-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .showcase-section,
  .location-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
  }

  .header-contact {
    width: 100%;
    justify-content: center;
    justify-self: center;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    grid-column: auto;
  }

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

  .hero {
    padding-top: 32px;
  }

  .accent-image {
    display: none;
  }
}

