.cta-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.85rem 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.2s ease, background 0.2s ease;
}

.cta-wrap--primary {
  background-image: linear-gradient(135deg, rgba(20, 184, 166, 0.92), rgba(59, 130, 246, 0.92));
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(14, 116, 144, 0.35);
}

.cta-wrap--primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 28px 55px rgba(59, 130, 246, 0.38);
}

.cta-wrap--outline {
  background: rgba(15, 23, 42, 0.45);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.cta-wrap--outline:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(56, 189, 248, 0.7);
  color: #38bdf8;
  transform: translateY(-2px);
}
body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
}


.btn-pulse {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #14b8a6, #3b82f6);
  color: #f8fafc;
  box-shadow: 0 16px 32px rgba(20, 184, 166, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 70%);
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-pulse:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 40px rgba(59, 130, 246, 0.32);
}

.btn-pulse:hover::after {
  transform: scale(1.1);
  opacity: 1;
}

.hero-gradient {
  position: relative;
  background-image: linear-gradient(135deg, rgba(8, 47, 73, 0.65), rgba(20, 184, 166, 0.35)), url("../../images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-shadow {
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
}

.site-header {
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-inner {
  min-height: clamp(4.25rem, 8.5vw, 6rem);
  padding-block: 0.6rem;
}

.nav-blur {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 50px rgba(148, 163, 184, 0.24);
  position: relative;
}

.nav-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(circle at 72% 18%, rgba(59, 130, 246, 0.12), transparent 64%),
    radial-gradient(circle at 90% 80%, rgba(94, 234, 212, 0.12), transparent 72%);
  pointer-events: none;
  opacity: 0.6;
}

.site-logo {
  height: clamp(5.25rem, 10vw, 7.25rem);
  width: auto;
  opacity: 0.85;
  filter: drop-shadow(0 10px 25px rgba(15, 23, 42, 0.35));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header:hover .site-logo {
  opacity: 0.92;
  transform: translateY(-2px) scale(1.01);
}

.brand-name {
  color: #0f172a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-blur button,
.nav-blur svg {
  color: #0f172a;
  stroke: currentColor;
}

.primary-nav a {
  color: #0f172a;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: color 0.25s ease;
}

.primary-nav a:hover {
  color: #0ea5e9;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0%;
  height: 1.5px;
  background: linear-gradient(90deg, #38bdf8, #14b8a6);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-blur nav a:hover::after,
.nav-blur nav a.text-primary::after {
  width: 100%;
}

[data-nav-menu] {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

[data-nav-menu] a {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: #0f172a;
}

[data-nav-menu] a:hover {
  color: #0ea5e9;
}

@media (max-width: 1023px) {
  .site-header {
    position: relative;
  }

  .primary-nav {
    display: none;
  }

  [data-nav-menu] {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    box-shadow: 0 28px 52px rgba(15, 23, 42, 0.28);
  }

  [data-nav-menu] a {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  }

  [data-nav-menu] a:last-child {
    border-bottom: none;
  }
}

.hero-copy {
  color: #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-copy .badge {
  background: rgba(20, 184, 166, 0.3);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-copy h1 {
  color: #f8fafc;
  text-shadow: 0 14px 30px rgba(8, 47, 73, 0.35);
}

.hero-copy p {
  color: rgba(226, 232, 240, 0.9);
}

.hero-copy .secondary-link {
  border-color: rgba(248, 250, 252, 0.6);
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.3);
  transition: backdrop-filter 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-copy .secondary-link:hover {
  border-color: rgba(56, 189, 248, 0.6);
  color: #38bdf8;
  backdrop-filter: blur(12px);
}

.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  isolation: isolate;
}

.gallery-card img {
  transition: transform 0.6s ease;
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-card:hover::after {
  opacity: 1;
}

.site-footer {
  background: linear-gradient(135deg, #050b1a 0%, #0b1e30 55%, #0f172a 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 -18px 36px rgba(8, 15, 36, 0.45);
}

.site-footer h4 {
  color: #e2e8f0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(241, 245, 249, 0.86);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #38bdf8;
}

.site-footer .border-t {
  border-color: rgba(148, 163, 184, 0.25) !important;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.social-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.45);
  color: #38bdf8;
}

.contact-socials .social-link {
  background: rgba(226, 249, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.25);
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.contact-socials .social-link:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.45);
  color: #0ea5e9;
}

.footer-powered {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.8);
}

.footer-powered a {
  color: #38bdf8;
  font-weight: 600;
}

.footer-powered a:hover {
  color: #60a5fa;
}
