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

body {
  background: #050505;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  transform: scale(1.35);
}

.menu-btn {
  position: absolute;
  left: 24px;
  top: 34px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -500px;
  width: 500px;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 200;
  transition: left 0.3s ease;
}

.side-menu.open {
  left: 0;
}

.close-btn {
  position: absolute;
  right: 24px;
  top: 20px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 80px 24px 24px;
}

.side-menu li {
  margin-bottom: 18px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: block;
  padding: 12px;
  border-radius: 10px;
}

.side-menu a:hover {
  background: #8a4af3;
}

.contact-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(138, 74, 243, 0.3), transparent 35%),
    linear-gradient(135deg, #050505, #111);
  padding: 145px 24px 85px;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto 28px;
  color: #aaa;
  font-size: 14px;
}

.breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 8px;
  color: #777;
}

.contact-hero {
  max-width: 1050px;
  margin: 0 auto 42px;
  text-align: center;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d6d6d6;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 900;
}

.contact-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.contact-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
}

.contact-form,
.contact-info-card,
.seo-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.contact-form h2,
.contact-info-card h2,
.seo-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-form p,
.seo-content p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

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

label {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  outline: none;
}

select option {
  color: #000;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #8a4af3;
  box-shadow: 0 0 0 3px rgba(138,74,243,0.22);
}

.submit-btn {
  width: 100%;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  background: #8a4af3;
  color: #fff;
}

.form-note {
  margin-top: 15px;
  margin-bottom: 0 !important;
  text-align: center;
}

.info-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.info-item:first-of-type {
  border-top: 0;
}

.info-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.info-item a {
  color: #d7c3ff;
  text-decoration: none;
  word-break: break-word;
}

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

.seo-content {
  max-width: 1320px;
  margin: 28px auto 0;
}

.seo-content h2 {
  margin-top: 20px;
}

.seo-content h2:first-child {
  margin-top: 0;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 22px 16px;
  font-size: 14px;
}

@media (max-width: 950px) {
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 105px;
  }

  .logo img {
    width: 155px;
    height: 90px;
  }

  .menu-btn {
    top: 32px;
    left: 18px;
    font-size: 34px;
  }

  .side-menu {
    width: 100%;
  }

  .contact-page {
    padding: 130px 16px 70px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-form,
  .contact-info-card,
  .seo-content {
    padding: 22px;
  }
}


.header-warning {
  position: absolute;
  right: 24px;
  top: 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(220,38,38,0.22),
      rgba(255,60,60,0.12)
    );

  border: 1px solid rgba(255,70,70,0.45);

  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.4px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 25px rgba(220,38,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: 0.25s ease;

  z-index: 1001;
}

.header-warning:hover {
  background:
    linear-gradient(
      135deg,
      #dc2626,
      #ff3b3b
    );

  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(220,38,38,0.35);
}

@media (max-width: 620px) {

  .header-warning {

    position: absolute;

    left: 300px;
    top: 40px;

    padding: 7px 12px;

    font-size: 7.5px;
    font-weight: 800;

    border-radius: 999px;

    white-space: nowrap;

  }

}