:root {
  color-scheme: dark;
  --bg: #07121d;
  --panel: rgba(7, 18, 33, 0.78);
  --panel-strong: rgba(8, 21, 39, 0.92);
  --text: #f7fbff;
  --muted: #aebfd9;
  --accent: #4f8cff;
  --accent-strong: #1d5edb;
  --accent-soft: rgba(79, 140, 255, 0.16);
  --accent-gold: #ffd37a;
  --surface: #ffffff;
  --surface-muted: #f4f7fd;
  --surface-strong: #eaf2ff;
  --border: rgba(17, 35, 61, 0.12);
  --shadow: 0 30px 80px rgba(5, 20, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07121d 0%, #0e1d32 100%);
}

body {
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 24px;
}

.home-hero {
  background: linear-gradient(125deg, rgba(4, 12, 24, 0.9), rgba(7, 23, 43, 0.8)),
    url('../img/index.jpg') center / cover no-repeat;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 25%, rgba(79, 140, 255, 0.24), transparent 16%),
    radial-gradient(circle at 82% 22%, rgba(255, 211, 122, 0.20), transparent 12%),
    radial-gradient(circle at 60% 80%, rgba(94, 219, 255, 0.14), transparent 22%);
  pointer-events: none;
  opacity: 0.95;
  animation: heroGlow 16s ease-in-out infinite alternate;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  gap: 20px;
  height: 84px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.light-bg .navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 32, 60, 0.08);
  border-bottom: 1px solid rgba(15, 32, 60, 0.08);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 144px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.91rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a.active {
  color: var(--accent);
}

.dropdown > .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  opacity: 0.92;
}

.dropdown > .dropdown-toggle::after {
  content: '▾';
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-radius: 16px;
  background: rgba(15, 23, 40, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu,
.dropdown.open > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(114, 164, 255, 0.22);
  color: #e8f5ff;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.82;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

  .menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--text);
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .menu-toggle span + span {
    margin-top: 6px;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 15, 38, 0.72);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 8;
  }

  .drawer-backdrop.visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }


.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  filter: blur(2px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.animate-on-scroll[data-anim="fade-right"] {
  transform: translateX(28px) scale(0.98);
}

.animate-on-scroll[data-anim="fade-left"] {
  transform: translateX(-28px) scale(0.98);
}

.animate-on-scroll[data-anim="zoom"] {
  transform: translateY(24px) scale(0.88);
}

.animate-on-scroll[data-anim="fade-up"] {
  transform: translateY(32px) scale(0.98);
}

.animate-on-scroll[data-anim="fade-down"] {
  transform: translateY(-32px) scale(0.98);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  filter: blur(0);
}

@keyframes heroGlow {
  0% {
    opacity: 0.75;
    transform: scale(0.98) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: scale(1.02) translateY(-8px);
  }
  100% {
    opacity: 0.78;
    transform: scale(0.99) translateY(0px);
  }
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: grid;
  gap: 12px;
  z-index: 9999;
}

.toast {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  min-width: 260px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 32, 60, 0.12);
  color: #fff;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #1c64d1, #0f4e94);
}

.toast.error {
  background: #d32f2f;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #1c64d1, #0f4e94);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 16px;
  display: grid;
  gap: 20px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-content h1 .highlight-animate {
  display: inline-block;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(59, 130, 246, 0.5));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
  padding-right: 8px;
}

.hero-content p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 18px 24px;
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    gap: 10px;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 84%);
    max-width: 100%;
    margin: 0;
    padding: 96px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    box-shadow: -18px 0 50px rgba(15, 32, 60, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    z-index: 9;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    color: #10243e;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .nav-links a.active {
    color: #1c64d1;
  }

  .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    min-width: 0;
    margin: 0;
    padding-left: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu a {
    padding: 10px 0;
    color: #475569;
  }

  .dropdown > .dropdown-toggle::after {
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 9vw, 4.1rem);
  }
}

@media (max-width: 620px) {
  .navbar {
    padding: 14px 16px;
    height: auto;
  }

  .brand img {
    width: 112px;
    height: 56px;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
    padding: 92px 20px 20px;
  }

  .social-icons {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }

  .hero-content {
    padding: 0 14px;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 9vw, 3.3rem);
  }

  .page-title h1 {
    font-size: clamp(2.3rem, 7vw, 3.1rem);
  }

  .contact-grid,
  .about-hero,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-page,
  .contact-page {
    padding: 100px 0 60px;
  }

  .about-section,
  .contact-panel,
  .feature-card,
  .contact-card,
  .about-hero {
    width: 100%;
  }

  .contact-panel,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }
}
/* /////////////////////////////////////// */
        /* Contact Page Styles */
/* /////////////////////////////////////// */
.contact-page {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: 140px 0 80px;
  margin: 0 auto;
}

.contact-panel {
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(17, 35, 61, 0.08);
  backdrop-filter: blur(18px);
  padding: 46px;
}

.page-title {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-title .eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1c64d1;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.02;
  color: #10243e;
}

.page-title p {
  margin: 18px auto 0;
  max-width: 560px;
  color: #4b5b70;
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 28px;
}

.contact-card {
  background: #f7f9fc;
  border: 1px solid rgba(17, 35, 61, 0.08);
  border-radius: 28px;
  padding: 34px;
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #1c64d1;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #4b5b70;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 35, 61, 0.12);
  border-radius: 18px;
  background: #f6f8fb;
  color: #10243e;
  padding: 16px 18px;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1c64d1;
  background: #ffffff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1c64d1, #0f4e94);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(17, 35, 61, 0.12);
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-list div {
  display: grid;
  gap: 6px;
}

.contact-info-list span {
  display: block;
  color: #5e7a7b;
  font-size: 0.92rem;
}

.contact-info-list a,
.contact-info-list address {
  color: #11313d;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-meta {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-meta strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #11313d;
}

.contact-meta p {
  margin: 0;
  color: #5e7a7b;
}

/* /////////////////////////////////////// */
        /* About Page Styles */
/* /////////////////////////////////////// */
.light-bg {
  background: linear-gradient(135deg, #f5f8fd 0%, #eef4fc 55%, #f9fbff 100%);
  color: #10243e;
}

.light-bg .navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(17, 35, 61, 0.08);
}

.light-bg .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(17, 35, 61, 0.12);
  border-bottom: 1px solid rgba(17, 35, 61, 0.08);
}

.light-bg .nav-links a {
  color: #10243e;
}

.light-bg .nav-links a:hover {
  opacity: 0.8;
}

.light-bg .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  box-shadow: 0 28px 60px rgba(17, 35, 61, 0.08);
}

.light-bg .dropdown-menu a {
  color: #10243e;
}

.light-bg .social-icons a {
  color: #10243e;
  opacity: 0.75;
}

.light-bg .social-icons a:hover {
  opacity: 1;
}

.about-page {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: 140px 0 80px;
  margin: 0 auto;
}

.about-section {
  padding: 0 10px;
}

.page-title {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.page-title .eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1c64d1;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 1.05;
  max-width: 780px;
  margin: 0 auto 10px;
  color: #10243e;
}

.page-title h1 + p {
  margin-top: 18px;
  color: #4b5b70;
  font-size: 1rem;
  line-height: 1.9;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  margin-top: 40px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(17, 35, 61, 0.08);
  box-shadow: 0 28px 70px rgba(17, 35, 61, 0.10);
}

.about-copy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(29, 91, 191, 0.12);
  color: #1d4f95;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  line-height: 1.05;
  color: #10243e;
}

.about-copy p {
  margin: 0 0 18px;
  color: #4b5b70;
  line-height: 1.85;
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f5f9ff;
  border: 1px solid rgba(28, 100, 209, 0.12);
  color: #1d4f95;
}

.about-highlight i {
  font-size: 1rem;
}

.about-highlight span {
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(17, 35, 61, 0.06);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #10243e;
}

.feature-card p {
  margin: 0;
  color: #4b5b70;
  line-height: 1.8;
}

.about-copy .btn-primary {
  margin-top: 12px;
  background: linear-gradient(135deg, #1c64d1, #0f4e94);
}

.about-visual {
  display: grid;
  place-items: center;
}

.visual-frame {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 35, 61, 0.12);
}

.visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 20, 41, 0.82);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-metric {
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 35, 61, 0.06);
  padding: 24px;
}

.about-metric strong {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #1c64d1;
}

.about-metric h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #10243e;
}

.about-metric p {
  margin: 0;
  color: #4b5b70;
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 35, 61, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(17, 35, 61, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-card-content {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.gallery-card-content .eyebrow {
  margin: 0;
  display: inline-flex;
  color: #1c64d1;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-card-content h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #10243e;
}

.gallery-card-content p {
  margin: 0;
  color: #4b5b70;
  line-height: 1.8;
}

.gallery-card-content footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #66738d;
  font-size: 0.95rem;
}

.testimonial-summary {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  background: rgba(28, 100, 209, 0.06);
  border: 1px solid rgba(28, 100, 209, 0.12);
  border-radius: 32px;
  padding: 34px;
}

.testimonial-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  color: #10243e;
}

.testimonial-copy p {
  margin: 0;
  color: #4b5b70;
  line-height: 1.8;
  max-width: 560px;
}

.testimonial-metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-metrics div {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(17, 35, 61, 0.08);
}

.testimonial-metrics strong {
  display: block;
  font-size: 2rem;
  color: #10243e;
  margin-bottom: 6px;
}

.testimonial-metrics span {
  color: #5f718f;
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  display: grid;
  gap: 24px;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  box-shadow: 0 30px 70px rgba(17, 35, 61, 0.08);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 36px 85px rgba(17, 35, 61, 0.12);
}

.testimonial-panel {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(28, 100, 209, 0.1);
  color: #1c64d1;
}

.testimonial-panel i {
  font-size: 1.5rem;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #273849;
}

.testimonial-author {
  display: grid;
  gap: 4px;
  color: #405676;
}

.testimonial-author strong {
  font-size: 1rem;
  color: #10243e;
}

.testimonial-author span {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .gallery-grid,
  .testimonial-grid,
  .testimonial-summary,
  .feature-grid,
  .about-metrics {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: linear-gradient(135deg, #07121d 0%, #10243d 55%, #0f1f3a 100%);
  color: #dce7f7;
  padding: 24px 28px 18px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79, 140, 255, 0.20), transparent 28%);
  pointer-events: none;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 48px;
  height: auto;
  object-fit: contain;
}

.footer-brand span {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-brand p {
  margin: 0;
  color: #b8c8e2;
  line-height: 1.6;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-cta {
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(5, 14, 26, 0.16);
}

.footer-cta h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-cta p {
  margin: 0 0 10px;
  color: #c8d8ee;
  line-height: 1.6;
  font-size: 0.92rem;
}

.footer-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.footer-links h4 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #f5fbff;
}

.footer-links a {
  display: block;
  margin-bottom: 6px;
  color: #c5d5ef;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9bddf;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: #c5d5ef;
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 24px 18px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .about-page {
    padding: 100px 0 60px;
  }

  .about-section {
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .contact-panel {
    padding: 32px;
  }

  .about-page {
    padding: 100px 0 60px;
  }

  .about-panel {
    padding: 24px;
    border-radius: 24px;
  }
}

.terms-page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 140px 0 80px;
}

.terms-hero {
  margin-bottom: 32px;
}

.terms-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(28, 100, 209, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(28, 100, 209, 0.12);
}

.terms-intro p {
  margin: 0;
  max-width: 720px;
  color: #4b5b70;
  line-height: 1.75;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #10243e;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.terms-card {
  background: #ffffff;
  border: 1px solid rgba(17, 35, 61, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 48px rgba(17, 35, 61, 0.06);
}

.terms-card h3 {
  margin: 0 0 12px;
  color: #10243e;
  font-size: 1.15rem;
}

.terms-card p,
.terms-card li {
  color: #4b5b70;
  line-height: 1.8;
}

.terms-card ul {
  margin: 0;
  padding-left: 18px;
}

.terms-card .terms-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(28, 100, 209, 0.10);
  color: #1c64d1;
  font-size: 1.1rem;
}

.terms-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 22px;
  background: #0f1f3a;
  color: #eef4ff;
}

.terms-note h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.terms-note p {
  margin: 0;
  line-height: 1.8;
  color: #c7d7f0;
}

@media (max-width: 900px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .terms-page {
    padding: 100px 0 60px;
  }

  .terms-intro,
  .terms-card,
  .terms-note {
    padding: 18px;
  }
}
