.elementor-1284 .elementor-element.elementor-element-953b34a{--display:flex;}/* Start custom CSS for container, class: .elementor-element-953b34a */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --alps-blue:   #0c1b34;
  --alps-red:    #7a0202;
  --alps-yellow: #f19325;
  --alps-gray:   #534d4f;
  --alps-white:  #ffffff;

  /* glass tokens */
  --glass-bg:      rgba(255, 255, 255, 0.06);
  --glass-border:  rgba(255, 255, 255, 0.12);
  --glass-hover:   rgba(255, 255, 255, 0.1);
  --text-primary:  rgba(255, 255, 255, 0.95);
  --text-muted:    rgba(255, 255, 255, 0.45);
  --text-label:    rgba(255, 255, 255, 0.55);
}

/* ── Wrapper ──────────────────────────────────────────────────── */

.alps-contact-wrapper {
  display: flex;
  width: 100%;
  min-height: 620px;
  /* Updated to Source Sans 3 */
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 16px;
  overflow: hidden;
  position: relative;

  /* deep dark background with subtle blue-red gradient */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122, 2, 2, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(12, 27, 52, 0.6) 0%, transparent 55%),
    #0a0f1e;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── Left Panel ───────────────────────────────────────────────── */

.alps-left {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.8rem 2.8rem 2.8rem;
  overflow: hidden;

  /* soft divider */
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Yeti ─────────────────────────────────────────────────────── */

.alps-yeti {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 300px;
  pointer-events: none;
  z-index: 1;
  animation: alps-bob 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(122, 2, 2, 0.3));
}

.alps-yeti img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes alps-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(-10px); }
}

/* ── Left bottom text ─────────────────────────────────────────── */

.alps-left-bottom {
  position: relative;
  z-index: 2;
}

/* small pill label */
.alps-pill {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alps-yellow);
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
  font-family: 'Source Sans 3', sans-serif;
}

.alps-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.alps-tagline em {
  color: var(--alps-yellow);
  font-style: normal;
}

.alps-tagline-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* ── Socials ──────────────────────────────────────────────────── */

.alps-socials {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.alps-socials li a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color 0.2s;
}

.alps-socials li a:hover { color: var(--alps-yellow); }

.alps-socials svg {
  width: 13px; height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Right Panel ──────────────────────────────────────────────── */

.alps-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 2.8rem;
}

/* ── Heading ──────────────────────────────────────────────────── */

.alps-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0 0 0.4rem;
}

.alps-heading span { color: var(--alps-yellow); }

.alps-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* ── Glass Fields ─────────────────────────────────────────────── */

.alps-form-group { margin-bottom: 1rem; }

.alps-form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 0.4rem;
  font-family: 'Source Sans 3', sans-serif;
}

.alps-form-group input,
.alps-form-group textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  color: var(--text-primary);
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.alps-form-group input::placeholder,
.alps-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.alps-form-group input:hover,
.alps-form-group textarea:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.alps-form-group input:focus,
.alps-form-group textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--alps-yellow);
  box-shadow: 0 0 0 3px rgba(241, 147, 37, 0.12);
}

.alps-form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

/* ── Privacy ──────────────────────────────────────────────────── */

.alps-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0 1.3rem;
}

.alps-privacy input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 2px;
  accent-color: var(--alps-yellow);
  flex-shrink: 0;
  cursor: pointer;
}

.alps-privacy-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.alps-privacy-label a {
  color: var(--alps-yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Required & Validation ────────────────────────────────────── */

.alps-required {
  color: var(--alps-yellow);
  margin-left: 2px;
}

.alps-error {
  display: none;
  font-size: 0.72rem;
  color: #ff6b6b;
  margin-top: 0.3rem;
}

.alps-error-privacy {
  display: none;
  font-size: 0.72rem;
  color: #ff6b6b;
  margin-bottom: 0.8rem;
  margin-top: -0.4rem;
}

.alps-form-group.alps-invalid .alps-error {
  display: block;
}

.alps-form-group.alps-invalid input,
.alps-form-group.alps-invalid textarea {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

/* ── reCAPTCHA placeholder ────────────────────────────────────────────────── */

.alps-recaptcha-placeholder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.alps-recaptcha-placeholder svg {
  flex-shrink: 0;
  opacity: 0.4;
}

/* Wraps the real .g-recaptcha widget */
.alps-recaptcha {
  margin: 0.5rem 0 1rem;
}

.alps-error-captcha {
  display: none;
  font-size: 0.72rem;
  color: #ff6b6b;
  margin-top: 0.3rem;
}

/* ── Submit Button ────────────────────────────────────────────── */

.alps-btn {
  width: 100%;
  padding: 0.88rem 1.5rem;
  background: var(--alps-red);
  color: var(--alps-white);
  border: none;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
}

.alps-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9a0303, #6a0101);
  opacity: 0;
  transition: opacity 0.25s;
}

.alps-btn:hover::before { opacity: 1; }
.alps-btn:hover { transform: translateY(-1px); }
.alps-btn:active { transform: translateY(0); }

.alps-btn-text { position: relative; z-index: 1; }

/* ── Trusted strip ────────────────────────────────────────────── */

.alps-trusted {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.alps-trusted p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.65rem;
}

.alps-trusted-logos {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.alps-trusted-logos span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.alps-trusted-logos span:hover { color: var(--alps-yellow); }

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .alps-contact-wrapper {
    flex-direction: column;
    border-radius: 10px;
  }

  .alps-left {
    flex: none;
    min-height: 320px;
    padding: 2rem 1.8rem 2.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .alps-yeti { width: 58%; max-width: 190px; }

  .alps-tagline { font-size: 1.5rem; }

  .alps-right { padding: 2rem 1.5rem; }

  .alps-heading { font-size: 1.75rem; }
}/* End custom CSS */