:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --navy-light: #1a3058;
  --cyan: #00b4d8;
  --cyan-soft: #48cae4;
  --gold: #c9a84c;
  --text: #e8edf5;
  --muted: #8fa3be;
  --card: rgba(18, 34, 64, 0.72);
  --border: rgba(72, 202, 228, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
}

.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 180, 216, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(201, 168, 76, 0.08), transparent 55%),
    linear-gradient(180deg, #0d1f3c 0%, var(--navy) 45%, #08111f 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page {
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 2rem;
  text-align: center;
}

.logo-wrap {
  margin: 1.5rem auto 2rem;
  animation: fadeUp 0.8s ease both;
}

.logo-wrap img,
.logo-wrap svg {
  width: min(420px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 180, 216, 0.18));
}

.site-name {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: fadeUp 0.8s 0.15s ease both;
}

.tagline {
  margin: 0 auto 2rem;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #e8d49a;
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeUp 0.8s 0.25s ease both;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  animation: fadeUp 0.8s 0.3s ease both;
}

.card {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.card i {
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-panel {
  margin: 0 auto 2rem;
  padding: 1.75rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  animation: fadeUp 0.8s 0.35s ease both;
}

.contact-panel h2 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  text-align: center;
}

.contact-panel .sub {
  margin: 0 0 1.35rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-panel label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan-soft);
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(8, 17, 31, 0.65);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.contact-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 10px;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0077b6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--cyan-soft);
  border: 1px solid var(--border);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.quick-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.quick-links a:hover {
  color: var(--cyan-soft);
}

.powered {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.8s 0.45s ease both;
}

.powered a {
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.powered a:hover {
  opacity: 1;
}

.powered img,
.powered svg {
  width: min(200px, 60vw);
  height: auto;
}

.footer-note {
  margin: 1rem 0 0;
  color: #5f7390;
  font-size: 0.8rem;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  display: none;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  text-align: center;
}

.form-feedback.show {
  display: block;
}

.form-feedback.success {
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: #9ee8ff;
}

.form-feedback.error {
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.35);
  color: #ffb4b4;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 600px) {
  .page {
    padding-top: 2rem;
  }

  .contact-panel {
    padding: 1.25rem;
  }
}
