/*======================================
              RESET
======================================*/

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

html {
  scroll-behavior: smooth;
}

body.page-contact {
  font-family: var(--font-body);

  background: var(--gradient-contact-body);

  overflow-x: clip;
}

.page-contact .contact-page {
  min-height: 100vh;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Legacy aliases — defined in theme.css */

/* Legacy contact navbar (unused — pages use shared #site-header) */
header:not(.site-header) {
  position: absolute;

  top: 25px;

  left: 0;

  width: 100%;

  z-index: 999;
}

.navbar {
  width: 100%;

  max-width: var(--site-container-max-width);

  padding: 18px var(--site-container-inline-padding);

  margin: 0 auto;

  border-radius: 22px;

  background: var(--gradient-brand-horizontal);

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo img {
  width: 140px;
}

.navbar .nav-links {
  display: flex;

  gap: 45px;

  align-items: center;
}

.navbar .nav-links a {
  color: var(--color-white);

  font-size: 15px;

  font-weight: 500;

  position: relative;

  transition: 0.35s;
}

.navbar .nav-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--color-white);

  transition: 0.35s;
}

.navbar .nav-links a:hover::after {
  width: 100%;
}

.talk-btn {
  padding: 14px 34px;

  background: var(--color-white);

  color: var(--primary);

  font-weight: 600;

  border-radius: 50px;

  transition: 0.35s;
}

.talk-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;

  font-size: 28px;

  color: var(--color-white);

  cursor: pointer;
}

/*======================================
            CONTACT SECTION
======================================*/

.contact {
  padding-top: 80px;

  padding-bottom: 48px;
}

.contact-container {
  display: grid;

  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: 56px;

  align-items: self-start;

  border: none;

  border-bottom: none;

  box-shadow: none;

  outline: none;
}

.contact-container::before,
.contact-container::after,
.contact-left::before,
.contact-left::after,
.contact-right::before,
.contact-right::after {
  content: none !important;
  display: none !important;
  border: none !important;
  background: none !important;
}

.contact-left,
.contact-right {
  border: none;
  border-bottom: none;
  box-shadow: none;
  background: transparent;
}

/*======================================
            LEFT SIDE
======================================*/

.section-subtitle {
  display: inline-block;

  /* Related to home .tag (13px) — contact sits one step smaller */
  font-size: 12px;

  letter-spacing: 2.2px;

  font-weight: 600;

  color: var(--eyebrow-color);

  margin: 0;

  position: relative;

  padding-left: 36px;
}

.section-subtitle::before {
  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 26px;

  height: 2px;

  background: var(--eyebrow-color);
}

.contact-left,
.contact-left.active {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 18px;
}

.contact-heading {
  position: relative;
  width: 100%;
  padding-right: 0;
}

.contact-left h1 {
  font-family: var(--font-heading);
  /* Related to home hero h1 clamp(40–56) — contact a touch smaller */
  font-size: clamp(34px, 4vw, 48px);

  line-height: 1.18;

  font-weight: 700;

  color: var(--color-text-heading);

  max-width: none;

  margin: 0;
}

.contact-left h1 .title-line,
.contact-left h1 .title-accent {
  display: block;

  white-space: nowrap;
}

.contact-left h1 .title-accent {
  font-family: var(--font-heading);
  margin-top: 4px;
  background: var(--gradient-text-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}

.arrow {
  position: absolute;

  width: 124px;

  height: auto;

  right: 35px;

  top: 55%;

  transform: translateY(-50%);

  object-fit: contain;

  pointer-events: none;

  animation: arrowMove 3s ease-in-out infinite;
}

@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(18px);
  }
}

/*======================================
            CONTACT CARDS
======================================*/

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  width: 100%;
}

.contact-info-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font: inherit;

  background: var(--gradient-contact-card);

  border: 1px solid var(--color-brand-tint-18);

  border-radius: 35px;

  padding: 16px 22px 16px 16px;

  margin-top: 0;

  backdrop-filter: blur(10px);

  transition: 0.3s;

  cursor: pointer;

  box-shadow: 0 10px 28px var(--color-brand-tint-08);

  color: inherit;

  text-align: left;

  animation: none;
  z-index: auto;
  min-width: 0;
  max-width: none;
}

.contact-info-card:hover,
.contact-info-card.is-active,
.contact-info-card:focus-visible {
  transform: translateY(-4px);

  box-shadow: var(--shadow-contact-lift);

  border-color: var(--color-brand-tint-25);

  outline: none;
}

.icon {
  width: 58px;
  height: 58px;

  border-radius: 16px;

  background: var(--gradient-mobile-tab);

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

  color: var(--color-white);

  font-size: 22px;

  flex-shrink: 0;
}

.info {
  flex: 1;

  margin-left: 22px;
}

.info h3 {
  font-size: 18px;

  color: var(--color-primary);

  margin-bottom: 4px;

  font-weight: 600;
}

.info p {
  color: var(--color-text-heading);

  font-weight: 500;

  margin-bottom: 4px;

  font-size: 15px;

  line-height: 1.45;
}

.info small {
  color: var(--color-text-caption);

  font-size: 13px;
}

.arrow-icon {
  font-size: 18px;

  color: var(--color-accent-light);

  transition: 0.3s;

  flex-shrink: 0;

  margin-left: 10px;
}

.contact-info-card:hover .arrow-icon,
.contact-info-card.is-active .arrow-icon {
  transform: translateX(5px);
}

/* Right panel swap: form <-> map */
.contact-right {
  position: relative;
  min-height: 560px;
}

.contact-panel {
  width: 100%;
  height: 100%;
  animation: panelIn 0.35s ease;
}

.contact-panel[hidden] {
  display: none !important;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-map {
  height: 100%;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-brand-tint-25);
  box-shadow: var(--shadow-contact-soft);
  background: var(--color-white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

/*======================================
            CONTACT FORM
======================================*/

.contact-form {
  background: rgba(255, 255, 255, 0.55);

  border: 1px solid var(--color-brand-tint-25);

  backdrop-filter: blur(14px);

  border-radius: 28px;

  padding: 36px 34px 32px;

  box-shadow: var(--shadow-contact-soft);
}

.contact-form h2 {
  text-align: center;

  font-size: clamp(28px, 3vw, 36px);

  margin-bottom: 8px;

  color: var(--color-text-heading);

  font-weight: 6 00;
}

.contact-form > p {
  text-align: center;

  color: var(--color-text-muted);

  margin-bottom: 28px;

  font-size: 15px;
}

.two-input {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.input-box {
  position: relative;

  margin-bottom: 20px;
}

.input-box i {
  position: absolute;

  left: 20px;

  top: 50%;

  transform: translateY(-50%);

  color: var(--color-primary);

  font-size: 18px;
}

.input-box input {
  width: 100%;

  height: 62px;

  border-radius: 50px;

  border: 1px solid var(--color-brand-tint-25);

  outline: none;

  padding-left: 58px;

  font-size: 15px;

  background: var(--color-white-65);

  transition: 0.3s;
}

.input-box input:focus {
  border-color: var(--color-primary);

  box-shadow: 0 0 0 5px var(--color-brand-tint-10);
}

.textarea i {
  top: 28px;

  transform: none;
}

.textarea textarea {
  width: 100%;

  height: 150px;

  resize: none;

  border-radius: 22px;

  border: 1px solid var(--color-brand-tint-25);

  outline: none;

  padding: 22px 20px 20px 58px;

  font-size: 15px;

  font-family: var(--font-body);

  background: var(--color-white-65);

  transition: 0.3s;
}

.textarea textarea:focus {
  border-color: var(--color-primary);

  box-shadow: 0 0 0 5px var(--color-brand-tint-10);
}

.contact-form button {
  display: flex;
  width: min(100%, 280px);
  min-width: var(--btn-min-width);
  margin: 24px auto 14px;
  border: none;
  background: var(--gradient-button);
  color: var(--color-white);
  cursor: pointer;
  box-shadow: var(--shadow-contact-btn);
}

.contact-form button:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-contact-btn-hover);
}

.secure {
  display: block;

  text-align: center;

  color: var(--color-text-client-role);

  font-size: 13px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
}

.contact-form-status.is-success {
  color: #15803d;
}

.contact-form-status.is-error {
  color: #b91c1c;
}

/*=========================================
            STATISTICS
=========================================*/

.contact-stats {
  padding: 40px 0 90px;
}

.stats-wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  background: rgba(255, 255, 255, 0.35);

  border-radius: 28px;

  padding: 10px;

  box-shadow: 0 25px 60px var(--color-brand-tint-08);
}

.stat-box {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px;

  border-radius: 22px;

  transition: 0.35s;
}

.stat-box:hover {
  transform: translateY(-8px);

  background: var(--color-contact-surface-hover);
}

.stat-icon {
  width: 68px;

  height: 68px;

  border-radius: 18px;

  background: var(--gradient-mobile-tab);

  color: var(--color-white);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 26px;

  transition: 0.35s;
}

.stat-box:hover .stat-icon {
  transform: rotate(-8deg) scale(1.08);
}

.stat-box h2 {
  font-size: 34px;

  font-weight: 700;

  color: var(--color-text-heading);
}

.stat-box p {
  color: var(--color-text-caption);

  font-size: 15px;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 1100px) {
  .contact-wrapper {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left h1 {
    margin: auto;
  }

  .contact-arrow {
    display: none;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .menu-btn {
    display: block;
  }

  .talk-btn {
    display: none;
  }

  .contact-section {
    padding-top: 120px;
  }

  .contact-left h1 {
    font-size: 42px;
  }

  .contact-form {
    padding: 28px;
  }

  .contact-form h2 {
    font-size: 30px;
  }

  .send-btn {
    width: 100%;
  }

  .stats-wrapper {
    padding: 25px;
  }

  .stat-box {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 var(--site-container-inline-padding);
  }

  .contact-left h1 {
    font-size: 34px;

    line-height: 1.3;
  }

  .contact-form {
    padding: 22px;
  }

  .input-box input {
    height: 56px;
  }

  .textarea textarea {
    height: 130px;
  }

  .stat-icon {
    width: 58px;

    height: 58px;

    font-size: 22px;
  }

  .stat-box h2 {
    font-size: 28px;
  }
}

/* Contact page footer (uses shared footer styles from style.css) */
.page-contact .contact-footer {
  position: relative;
  z-index: 1;
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 48px 0 calc(36px + env(safe-area-inset-bottom, 0px));
  margin-top: 0;
}

.page-contact .contact-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
}

.page-contact .contact-footer .footer-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.page-contact .contact-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.page-contact .contact-footer .social-links a {
  color: var(--color-footer-link);
  font-size: 14px;
  transition: 0.3s;
}

.page-contact .contact-footer .social-links a:hover {
  color: var(--color-white);
}

.page-contact .contact-footer hr {
  border: none;
  height: 1px;
  background: var(--color-footer-divider);
  margin: 0 0 22px;
}

.page-contact .contact-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.page-contact .contact-footer .footer-bottom p,
.page-contact .contact-footer .footer-bottom a {
  color: var(--color-footer-muted);
  font-size: 14px;
  margin: 0;
}

.page-contact .contact-footer .footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.page-contact .contact-footer .footer-bottom a:hover {
  color: var(--color-white);
}

/*======================================
        RESPONSIVE
======================================*/

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

  .contact-left {
    text-align: left;
  }

  .contact-left h1 {
    margin: 0;
  }

  .section-subtitle {
    margin-left: 0;
  }
}

/* Mobile contact UI — matches uploaded design */
@media (max-width: 768px) {
  body.page-contact {
    background: var(--gradient-contact-body-mobile);
  }

  /* Kill scroll-reveal hide on mobile so content is never invisible */
  .page-contact .contact-left,
  .page-contact .contact-form,
  .page-contact .contact-map,
  .page-contact .contact-stats-grid {
    opacity: 1 !important;
    transform: none !important;
  }

  .page-contact .contact > .container,
  .page-contact .contact-page > .contact > .container {
    width: var(--mobile-hero-rail, min(92%, 420px)) !important;
    max-width: var(--mobile-hero-rail, min(92%, 420px)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-inline: auto;
  }

  /*
      Home overlays the header (negative margin) and uses padding-top: stack + 48px.
      Contact keeps the header in-flow (~stack tall), so only the same 48px air after it.
    */
  .contact {
    padding-top: 48px;
    padding-bottom: 16px;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    border: none !important;
    box-shadow: none !important;
  }

  .contact-left,
  .contact-left.active,
  .contact-right {
    width: 100%;
    position: relative;
    min-height: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .contact-left,
  .contact-left.active {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .section-subtitle {
    display: block;
    /* Home mobile tag = 12px; contact eyebrow one step smaller */
    font-size: 11px;
    letter-spacing: 2.2px;
    font-weight: 600;
    color: var(--eyebrow-color);
    margin: 0;
    padding-left: 0;
  }

  .section-subtitle::before {
    display: none;
  }

  .contact-heading {
    padding-right: 78px;
    width: 100%;
    overflow: visible;
  }

  .contact-left h1 {
    /* Home mobile h1 = 28px; contact slightly smaller, heavier weight */
    font-size: 26px;
    line-height: 1.22;
    font-weight: 800;
    max-width: none;
    width: auto;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .contact-left h1 .title-line,
  .contact-left h1 .title-accent {
    display: block;
    white-space: nowrap;
  }

  .contact-left h1 .title-accent {
    margin-top: 2px;
    background: var(--gradient-text-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .arrow {
    display: block !important;
    position: absolute;
    width: 70px;
    height: auto;
    right: -2px;
    top: 50%;
    transform: translateY(-45%);
    opacity: 1;
    animation: none;
    pointer-events: none;
    z-index: 2;
    object-fit: contain;
  }

  .contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    width: 100%;
  }

  .contact-info-card {
    position: relative !important;
    display: flex !important;
    align-items: center;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 14px 16px 14px 12px;
    border-radius: 35px;
    background: var(--color-contact-surface);
    border: 1px solid var(--color-brand-tint-18);
    box-shadow:
      inset 0 1px 0 var(--color-white-65),
      0 6px 16px var(--color-brand-tint-08);
    animation: none !important;
    z-index: auto !important;
  }

  .contact-info-card:hover,
  .contact-info-card.is-active,
  .contact-info-card:focus-visible {
    transform: none;
    border-color: var(--color-brand-tint-25);
    box-shadow:
      inset 0 1px 0 var(--color-white-65),
      0 8px 18px var(--color-brand-tint-08);
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--gradient-contact-stat-icon);
  }

  .info {
    margin-left: 12px;
    min-width: 0;
    flex: 1;
    text-align: left;
  }

  .info h3 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--color-primary);
    font-weight: 600;
  }

  .info p {
    font-size: 12px;
    margin-bottom: 2px;
    word-break: break-word;
    color: var(--color-text-quote);
    font-weight: 500;
  }

  .info small {
    font-size: 11px;
    color: var(--color-text-client-role);
  }

  .arrow-icon {
    display: none;
  }

  .contact-panel {
    animation: none;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
    height: 320px;
    border-radius: 24px;
  }

  .contact-form {
    padding: 22px 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--color-brand-tint-20);
    box-shadow: var(--shadow-contact-soft);
  }

  .contact-form h2 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .contact-form > p {
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--color-text-client-role);
  }

  .two-input {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .input-box {
    margin-bottom: 12px;
  }

  .input-box i {
    left: 14px;
    font-size: 14px;
  }

  .input-box input {
    height: 48px;
    padding-left: 40px;
    font-size: 12px;
    border-radius: 16px;
    background: var(--color-white);
  }

  .textarea i {
    top: 16px;
    left: 14px;
    font-size: 14px;
  }

  .textarea textarea {
    height: 112px;
    border-radius: 18px;
    padding: 14px 14px 14px 40px;
    font-size: 12px;
    background: var(--color-white);
  }

  .contact-form button[type="submit"] {
    width: 100%;
    min-width: 0;
    margin: 14px auto 10px;
    box-shadow: var(--shadow-contact-btn);
  }

  .contact-form button:hover {
    transform: none;
  }

  .secure {
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-text-client-role);
  }

  /* Stats strip — 4 columns like design, isolated from home .stat-box */
  .page-contact .contact-stats {
    padding: 8px 0 24px;
  }

  .page-contact .contact-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 18px 4px 16px !important;
    border-radius: 22px !important;
    background: var(--color-bg-hero-3) !important;
    border: 1px solid var(--color-brand-tint-20) !important;
    box-shadow: 0 8px 22px var(--color-brand-tint-08) !important;
  }

  .page-contact .contact-stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 4px 2px !important;
    margin: 0 !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    float: none !important;
  }
}

.page-contact .contact-stat:not(:last-child)::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  right: 0;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: var(--color-brand-tint-25);
}

.page-contact .contact-stat-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  font-size: 13px !important;
  background: var(--gradient-contact-stat-icon) !important;
  color: var(--color-white) !important;
}

.page-contact .contact-stat-text strong {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--color-text-heading) !important;
  line-height: 1.1 !important;
}

.page-contact .contact-stat-text span {
  font-size: 9px !important;
  line-height: 1.25 !important;
  color: var(--color-text-client-role) !important;
  max-width: 9ch;
  display: block;
}

.page-contact .contact-footer {
  padding: 72px 0 calc(100px + env(safe-area-inset-bottom, 0px));
  border-top: none;
}

.page-contact .contact-footer .footer-top,
.page-contact .contact-footer .footer-bottom {
  align-items: flex-start;
  text-align: left;
  gap: 14px;
}

.page-contact .contact-footer .social-links {
  justify-content: flex-start;
  gap: 12px 16px;
}

.page-contact .contact-footer .footer-bottom p,
.page-contact .contact-footer .footer-bottom a {
  font-size: 12px;
}

@media (max-width: 480px) {
  /* Non-hero containers: full width + site padding.
       Hero keeps --mobile-hero-rail (reinforced below). */
  .page-contact .container {
    width: 100%;
    padding: 0 var(--site-container-inline-padding);
  }

  .page-contact .contact > .container,
  .page-contact .contact-page > .container {
    width: var(--mobile-hero-rail, min(92%, 420px)) !important;
    max-width: var(--mobile-hero-rail, min(92%, 420px)) !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .contact-left,
  .contact-left.active {
    gap: 12px !important;
  }

  .contact-heading {
    padding-right: 90px;
    margin-bottom: 18px;
  }

  .contact-left h1 {
    font-size: 24px;
    max-width: none;
  }

  .contact-left h1 .title-line,
  .contact-left h1 .title-accent {
    white-space: nowrap;
  }

  .arrow {
    width: 95px;
    top: 50%;
    right: -3px;
    transform: translateY(-42%);
  }

  .contact-info-cards {
    gap: 10px;
  }

  .info h3 {
    font-size: 14px;
  }

  .info p {
    font-size: 11px;
  }

  .info small {
    font-size: 10px;
  }

  .two-input {
    gap: 8px;
  }

  .input-box input {
    height: 46px;
    font-size: 12px;
  }

  .input-box i {
    left: 12px;
    font-size: 13px;
  }

  .input-box input {
    padding-left: 36px;
  }

  .page-contact .contact-stat-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }

  .page-contact .contact-stat-text strong {
    font-size: 14px !important;
  }

  .page-contact .contact-stat-text span {
    font-size: 8px !important;
  }
}

/*=========================
MENU MOBILE
=========================*/

.nav-links.show {
  display: flex;

  position: absolute;

  top: 90px;

  left: 5%;

  width: 90%;

  background: var(--color-primary-alt);

  border-radius: 20px;

  padding: 30px;

  flex-direction: column;

  text-align: center;

  gap: 20px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);

  animation: menuShow 0.4s ease;
}

@keyframes menuShow {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================
STICKY NAVBAR
=========================*/

header.sticky:not(.site-header) {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  padding: 15px 0;

  backdrop-filter: blur(12px);

  animation: sticky 0.4s;

  z-index: 9999;
}

@keyframes sticky {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/*=========================
SCROLL REVEAL
=========================*/

.contact-left,
.contact-form,
.contact-map,
.contact-stats-grid {
  opacity: 0;

  transform: translateY(40px);

  transition: all 0.8s ease;
}

.contact-left.active,
.contact-form.active,
.contact-map.active,
.contact-stats-grid.active {
  opacity: 1;

  transform: translateY(0);
}

/* Keep contact cards visible in normal document flow */
.page-contact .contact-info-card {
  opacity: 1;
  transform: none;
}

/*=========================
BUTTON RIPPLE
=========================*/

.contact-form button {
  position: relative;

  overflow: hidden;
}

.ripple {
  position: absolute;

  border-radius: 50%;

  background: var(--color-white-45);

  transform: scale(0);

  animation: ripple 0.6s linear;

  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);

    opacity: 0;
  }
}
