/* =============================================================
   RollingFizz — Contact Page Stylesheet
   File    : rfz-assets/css/rfz-contact.css
   Depends : rfz-style.css, rfz-theme-citrus.css (loaded first)
   ============================================================= */

html, body { height: 100%; }

/* ── Layout ── */
.contact-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT PANEL ── */
.contact-left {
  background:
    linear-gradient(to right, #0d2818 30%, rgba(13,40,24,0.55) 70%, rgba(13,40,24,0.2) 100%),
    url('../media/web_core/rollingfizz-mocktail-machine-contact_bg.png') right 15% / auto 82% no-repeat,
    linear-gradient(160deg, #0d2818 0%, #1b6b3c 100%);
  padding: 120px 56px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.cl-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; position: relative; z-index: 2; }
.cl-logo-img { width: 40px; height: 40px; object-fit: contain; }
.cl-logo-text { font-family: var(--font-disp); font-size: 22px; font-weight: 800; line-height: 1; }
.cl-logo-rolling { color: #fff; }
.cl-logo-fizz { color: var(--clr-gold); }

.cl-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; color: var(--clr-gold);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.cl-label::before { content: ''; width: 18px; height: 2px; background: var(--clr-gold); flex-shrink: 0; }

.cl-heading {
  font-family: var(--font-disp);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.cl-heading em { color: var(--clr-gold); font-style: italic; }

.cl-desc {
  font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8;
  max-width: 380px; margin-bottom: 40px; position: relative; z-index: 2;
}

/* Info items */
.cl-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; position: relative; z-index: 2; }
.cl-info-item { display: flex; align-items: flex-start; gap: 14px; }
.cl-info-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-top: 1px;
}
.cl-info-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 3px; }
.cl-info-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.cl-info-val a { color: inherit; text-decoration: none; }
.cl-info-val a:hover { color: var(--clr-gold); text-decoration: underline; }

/* Social / connect row */
.cl-connect { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 2; margin-top: 20px; }
.cl-connect-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  text-decoration: none; cursor: pointer; transition: all .2s; font-family: var(--font-body);
}
.cl-connect-btn:hover { background: rgba(212,160,0,.15); border-color: rgba(212,160,0,.4); color: #fff; }
.cl-connect-icon { font-size: 14px; }

/* ── RIGHT PANEL ── */
.contact-right {
  background: #fff;
  padding: 120px 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cr-heading {
  font-family: var(--font-disp);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800; color: var(--dark); line-height: 1.2;
  margin-bottom: 8px;
}
.cr-sub { font-size: 14px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }

/* Form */
.cform { display: flex; flex-direction: column; gap: 18px; max-width: 480px; }
.cfield { display: flex; flex-direction: column; gap: 6px; }
.cfield label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.cfield input,
.cfield select,
.cfield textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.cfield input:focus,
.cfield select:focus,
.cfield textarea:focus {
  border-color: var(--clr-forest);
  box-shadow: 0 0 0 3px rgba(27,107,60,.1);
}
.cfield textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.cfield select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.cform-submit {
  background: var(--clr-forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.cform-submit:hover { background: #145e32; transform: translateY(-1px); }
.cform-submit:active { transform: translateY(0); }
.cform-submit svg { width: 16px; height: 16px; }

.cform-note { font-size: 11px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.cform-note a { color: var(--clr-forest); text-decoration: none; }

/* Success state */
.cform-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.cform-success.show { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cform-success-icon { font-size: 3rem; }
.cform-success h3 { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: var(--dark); }
.cform-success p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 340px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-left { padding: 100px 28px 48px; }
  .contact-right { padding: 48px 28px 60px; }
  .cr-heading { font-size: 26px; }
}
@media (max-width: 480px) {
  .cform-row { grid-template-columns: 1fr; }
  .cl-connect { flex-direction: column; }
  .cl-connect-btn { justify-content: center; }
}
