:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --muted2: #94a3b8;
  --white: #fff;
  --blue-950: #0b1c3a;
  --blue-900: #0f2a5f;
  --blue-800: #173a78;
  --blue-700: #1d4ed8;
  --blue-600: #1e3279;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --emerald: #10b981;
  --shadow-sm: 0 8px 24px rgba(2, 6, 23, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.18);
  --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.22);
  --radius-xl: 16px;
  --radius-2xl: 18px;
  --radius-3xl: 26px;
  --radius-4xl: 40px;
  --container: 1200px;
  --nav-h: 76px;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Lexend";
  src: url("font/Lexend-Medium.ttf");
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend" !important;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .container {
    width: calc(100% - 28px);
  }
}

/* form */
.registration-form-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.registration-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 460px) {
  .registration-form-box {
    max-width: unset;
    width: 100%;
  }
  .registration-form {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #1e3279;
  color: #fff;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.18);
}

.btn-primary:hover {
  background: var(--blue-800);
}

.btn-hero {
  border-radius: 18px;
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 900;
  text-transform: capitalize;
}

.btn-hero.primary {
  background: var(--blue-600);
  color: #e3a21f;
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.25);
}

.btn-hero.primary:hover {
  background: var(--blue-700);
}

.btn-hero.outline {
  background: #e3a21f;
  color: #1e3279;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-hero.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.muted {
  color: var(--muted);
}

.muted2 {
  color: var(--muted2);
}

.kicker {
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 12px 0;
}

.h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 22px 0;
}

/* NAV */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand .main {
  font-size: 22px;
}

.brand .sub {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue-600);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.8);
}

.nav-links a {
  padding: 10px 8px;
  border-radius: 12px;
}

.nav-links a:hover {
  color: var(--blue-600);
  background: rgba(37, 99, 235, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.1);
  background: rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.burger:active {
  transform: scale(0.98);
}

.burger svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .nav-right .btn-primary {
    display: none;
  }
}

/* MOBILE DRAWER */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  pointer-events: none;
}

.mnav.is-open {
  display: block;
  pointer-events: auto;
}

.mnav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mnav.is-open .mnav-overlay {
  opacity: 1;
}

.mnav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 86vw);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(2, 6, 23, 0.1);
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.25);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.mnav.is-open .mnav-panel {
  transform: translateX(0);
}

.mnav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px 16px;
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}

.mnav-title {
  font-weight: 1000;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.9);
}

.mnav-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mnav-links {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mnav-links a {
  padding: 14px 14px;
  border-radius: 16px;
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.92);
  transition: background 0.15s ease, color 0.15s ease;
}

.mnav-links a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-600);
}

.mnav-cta {
  margin-top: auto;
  padding: 14px 16px 18px 16px;
  border-top: 1px solid rgba(2, 6, 23, 0.08);
}

.mnav-cta .btn {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  letter-spacing: 0.12em;
}

body.no-scroll {
  overflow: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
  width: min(980px, 100%);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-600);
  position: relative;
  flex: 0 0 auto;
}

.dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.45);
  animation: ping 1.3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.2);
    opacity: 0.7;
  }

  70% {
    transform: scale(1);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-pill span {
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.hero h1 {
  background: linear-gradient(
    180deg,
    #ffefb0 0%,
    #f2cd6a 22%,
    #dca52b 45%,
    #e5a31e 50%,
    #e7a51d 55%,
    #f2cd6a 78%,
    #ffefb0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 2px 0 rgba(120, 85, 20, 0.6))
    drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  margin: 0 0 18px 0;
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 5vw, 78px);
}

.brand img {
  max-height: 70px;
}

.hero p {
  margin: 0 auto 28px auto;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.7;
  width: min(780px, 100%);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* OVERVIEW */
.overview {
  background: #fff;
}

.overview .grid-2 .h2 {
  text-transform: uppercase;
  color: #1e3279;
  text-shadow: 1px 1px 3px rgb(227 162 31);
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 1100px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  display: grid;
  place-items: center;
  color: var(--blue-600);
  flex: 0 0 auto;
  margin-top: 2px;
}

.check svg {
  width: 14px;
  height: 14px;
}

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

.stat {
  border-radius: var(--radius-3xl);
  padding: 25px 20px;
}

.stat .big {
  font-size: 42px;
  font-weight: 1000;
  margin: 0 0 6px 0;
}

.stat small {
  display: block;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.s1 {
  background: #eff6ff;
  color: var(--blue-900);
}

.s2 {
  background: #1e3279;
  color: #fff;
}

.s2 small {
  color: #e3a21f;
  opacity: 1;
}

.s3 {
  background: #f1f5f9;
  color: var(--blue-900);
}

.s4 {
  background: #e3a21f;
  color: #1e3279;
}

.s4 small {
  color: #1e3279;
  opacity: 1;
}

/* LOCATION */
.center-head {
  text-align: center;
  margin-bottom: 44px;
}

.center-head h2 {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: #1e3279;
  text-shadow: 1px 1px 3px rgb(227 162 31);
}

.center-head p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.8;
}

.map-card {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 520px;
  background: #000;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.map-points {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.point {
  border-radius: 18px;
  padding: 16px;
  border-left: 4px solid #e3a21f;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}

.point h4 {
  margin: 0 0 6px 0;
  color: var(--blue-900);
  font-weight: 600;
}

.point p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100, 116, 139, 0.95);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .map-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-card {
    height: 460px;
    border-radius: 34px;
  }
}

/* SUBDIVISIONS */
.sub-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.sub-head h3 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.02em;
}

.sub-head p {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

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

.card-img {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  height: 390px;
  box-shadow: var(--shadow-sm);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.card-img:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.25),
    transparent
  );
  opacity: 0.92;
}

.card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
}

.card-text h4 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: #e3a21f;
}

.card-text p {
  margin: 0;
  color: rgba(226, 232, 240, 0.86);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* AMENITIES */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.amen {
  background: #fff;
  border-radius: var(--radius-3xl);
  padding: 26px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.amen:hover {
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.1);
  transform: translateY(-2px);
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px auto;
}

.icon svg {
  width: 32px;
  height: 32px;
}

.icon.blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-600);
}

.icon.red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.icon.orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.icon.emerald {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.amen h4 {
  margin: 0 0 8px 0;
}

.amen p {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .amen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* NEWS */
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.news-head h2 {
  margin: 0 0 8px 0;
  font-size: clamp(26px, 3.2vw, 44px);
  color: #1e3279;
  text-shadow: 1px 1px 3px rgb(227 162 31);
}

.news-head p {
  margin: 0;
  color: var(--muted);
}

.news-head a {
  color: var(--blue-600);
  font-weight: 1000;
}

.news-head a:hover {
  text-decoration: underline;
}

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

.post {
  cursor: pointer;
}

.post .thumb {
  position: relative;
  height: 280px;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.post:hover .thumb img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.post h4 {
  margin: 0 0 10px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.post:hover h4 {
  color: var(--blue-600);
}

.post p {
  margin: 0 0 10px 0;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post time {
  display: block;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* FLOATING CTA */
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease, filter 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.fab:hover {
  transform: scale(1.06);
}

.fab:active {
  transform: scale(0.97);
}

.fab.phone {
  width: 56px;
  height: 56px;
  background: var(--blue-600);
}

.fab.zalo {
  background: var(--emerald);
  padding: 14px 16px;
  gap: 10px;
  font-weight: 1000;
  font-size: 13px;
  border-radius: 999px;
}

.fab svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 420px) {
  .floating {
    right: 12px;
    bottom: 12px;
  }

  .fab.zalo {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #fff;
  padding: 72px 0 32px 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

.foot-brand {
  font-size: 22px;
  font-weight: 1000;
  margin: 0 0 14px 0;
  background: linear-gradient(
    180deg,
    #ffefb0 0%,
    #f2cd6a 22%,
    #dca52b 45%,
    #e5a31e 50%,
    #e7a51d 55%,
    #f2cd6a 78%,
    #ffefb0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 2px 0 rgba(120, 85, 20, 0.6))
    drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.28));
}

footer p {
  color: rgba(148, 163, 184, 0.95);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

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

.social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.15s ease;
  font-weight: 1000;
}

.social a:hover {
  transform: translateY(-1px);
}

.social a.fb:hover {
  background: #2563eb;
}

.social a.yt:hover {
  background: #ef4444;
}

.social a.zl:hover {
  background: #38bdf8;
}

footer h5 {
  margin: 0 0 14px 0;
  font-size: 18px;
  font-weight: 1000;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li i {
  background: linear-gradient(
    180deg,
    #ffefb0 0%,
    #f2cd6a 22%,
    #dca52b 45%,
    #e5a31e 50%,
    #e7a51d 55%,
    #f2cd6a 78%,
    #ffefb0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 2px 0 rgba(120, 85, 20, 0.6))
    drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.28));
}

footer ul a:hover {
  color: #fff;
}

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

.form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  outline: none;
}

.form input:focus {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form button {
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 1000;
  background: var(--blue-600);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.form button:hover {
  background: var(--blue-700);
}

.form button:active {
  transform: scale(0.99);
}

.copyright {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  text-align: center;
  color: rgba(148, 163, 184, 0.85);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* Nice anchor scroll */
html {
  scroll-behavior: smooth;
}

/* Offset for fixed header when jumping anchors */
section {
  scroll-margin-top: calc(var(--nav-h) + 14px);
}
