/* ============================================================
   TOURIXA CONTACT PAGE — Premium Design System
   ============================================================ */
 
:root {
  --color-primary:        #0A2540;
  --color-primary-hover:  #0D3260;
  --color-secondary:      #D4A96A;
  --color-accent:         #F4622A;
  --color-accent-hover:   #D94E1A;
  --color-accent-glow:    rgba(244,98,42,0.35);
  --color-bg:             #070E1B;
  --color-surface:        #0D1A2E;
  --color-surface-2:      #122040;
  --color-border:         rgba(255,255,255,0.08);
  --color-border-strong:  rgba(255,255,255,0.16);
  --color-text-primary:   #EEF2F8;
  --color-text-secondary: #8FA4C0;
  --color-text-muted:     #4A607A;
  --color-text-inverse:   #070E1B;
  --gradient-hero:        linear-gradient(160deg, #060D1A 0%, #0A1F3A 45%, #070E1B 100%);
  --gradient-sunset:      linear-gradient(135deg, #F4622A 0%, #D4A96A 50%, #FFD89B 100%);
  --shadow-glow:          0 0 50px rgba(255,122,69,0.40);
  --shadow-lg:            0 8px 40px rgba(0,0,0,0.60);
  --shadow-xl:            0 16px 60px rgba(0,0,0,0.70);
  --ease-smooth:          cubic-bezier(0.19,1,0.22,1);
  --ease-bounce:          cubic-bezier(0.34,1.56,0.64,1);
  --font-display:         'Manrope', 'Poppins', system-ui, sans-serif;
  --font-heading:         'Poppins', system-ui, sans-serif;
  --font-body:            'Inter', system-ui, sans-serif;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
 
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
 
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
 
/* ── HERO SECTION ── */
.contact-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 120px 24px 80px;
}
 
.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(244,98,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(212,169,106,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(10,37,64,0.8) 0%, transparent 60%);
}
 
.contact-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
 
.contact-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
 
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(244,98,42,0.5);
  animation: hero-particle-float var(--d) ease-in-out infinite var(--dl);
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  opacity: 0;
}
 
@keyframes hero-particle-float {
  0%   { transform: translate(0, 0); opacity: 0; }
  15%  { opacity: 0.6; }
  85%  { opacity: 0.3; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}
 
.contact-hero__content { position: relative; z-index: 2; max-width: 720px; }
 
.contact-hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  animation: fade-up 0.8s var(--ease-smooth) 0.2s both;
}
 
.contact-hero__overline::before,
.contact-hero__overline::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--color-accent);
  border-radius: 2px;
}
 
.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  animation: fade-up 0.8s var(--ease-smooth) 0.35s both;
}
 
.contact-hero__title span {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.contact-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  animation: fade-up 0.8s var(--ease-smooth) 0.5s both;
}
 
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 36px;
  animation: fade-up 0.8s var(--ease-smooth) 0.65s both;
}
 
.hero-stat {
  text-align: center;
}
 
.hero-stat__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
 
.hero-stat__label {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
 
.hero-divider { width: 1px; height: 36px; background: var(--color-border-strong); }
 
/* ── BREADCRUMB ── */
.breadcrumb {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
 
.breadcrumb-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--color-text-muted);
}
 
.breadcrumb a { color: var(--color-text-secondary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--color-accent); }
 
/* ── MAIN CONTACT SECTION ── */
.contact-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
 
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: start;
}
 
/* ── FORM PANEL ── */
.form-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 52px;
  position: relative;
  overflow: hidden;
}
 
.form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer-line 3s linear infinite;
}
 
@keyframes shimmer-line {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}
 
.form-panel::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,98,42,0.04) 0%, transparent 70%);
  pointer-events: none;
}
 
.form-header { margin-bottom: 40px; }
 
.form-header__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
 
.form-header__title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
 
.form-header__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
 
/* ── FORM FIELDS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
 
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
 
.form-group--full { grid-column: 1 / -1; }
 
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.form-label .required {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
 
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-primary);
  outline: none;
  appearance: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
 
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }
 
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  background: rgba(244,98,42,0.04);
  box-shadow: 0 0 0 4px rgba(244,98,42,0.12);
}
 
.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
  border-color: var(--color-border-strong);
  background: rgba(255,255,255,0.06);
}
 
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #ef4444;
  background: rgba(239,68,68,0.06);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.12);
}
 
.form-select {
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238FA4C0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
 
.form-select option { background: #0D1A2E; color: #EEF2F8; }
 
.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
 
.form-error-msg {
  display: none;
  font-size: 11.5px;
  color: #f87171;
  margin-top: 6px;
  align-items: center;
  gap: 5px;
}
 
.form-error-msg.is-visible { display: flex; animation: shake 0.3s ease; }
 
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%  { transform: translateX(-6px); }
  75%  { transform: translateX(6px); }
}
 
/* ── INPUT GROUP with Icon ── */
.input-with-icon { position: relative; }
.input-with-icon .form-input { padding-left: 46px; }
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.input-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
 
/* ── TRAVELERS PICKER ── */
.travelers-picker {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
 
.travelers-picker:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(244,98,42,0.12);
}
 
.travelers-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--color-text-secondary);
  font-size: 20px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
 
.travelers-btn:hover { background: rgba(244,98,42,0.15); color: var(--color-accent); }
 
.travelers-count {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  padding: 14px 10px;
  border: none;
  background: none;
  outline: none;
  cursor: default;
  user-select: none;
}
 
.travelers-label {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  display: block;
}
 
/* ── SUBMIT BUTTON ── */
.btn-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
 
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease-smooth);
}
 
.btn-submit:hover::before { transform: translateX(100%) skewX(-15deg); }
 
.btn-submit:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 12px 40px rgba(244,98,42,0.45);
  transform: translateY(-2px);
}
 
.btn-submit:active { transform: translateY(0); }
 
.btn-submit.is-loading {
  pointer-events: none;
  background: rgba(244,98,42,0.7);
}
 
.btn-submit.is-loading .btn-text { opacity: 0; }
 
.btn-submit.is-loading::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
 
@keyframes spin { to { transform: rotate(360deg); } }
 
.btn-submit.is-success {
  background: #22c55e;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(34,197,94,0.4);
}
 
.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; }
 
/* ── SUCCESS STATE ── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  animation: fade-up 0.6s var(--ease-smooth) both;
}
 
.form-success.is-visible { display: flex; }
.contact-form.is-submitted { display: none; }
 
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: success-pop 0.5s var(--ease-bounce) 0.2s both;
}
 
@keyframes success-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
 
.success-icon svg {
  width: 36px; height: 36px;
  stroke: #22c55e;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
 
.success-msg {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}
 
.success-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 28px;
}
 
.success-id-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
 
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
 
.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.3s;
}
 
.btn-reset:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(244,98,42,0.06);
}
 
/* ── SIDEBAR ── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
 
/* ── CONTACT INFO CARD ── */
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
 
.info-card:hover {
  border-color: rgba(244,98,42,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
 
.info-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,106,0.05) 0%, transparent 70%);
  pointer-events: none;
}
 
.info-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
 
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(244,98,42,0.12);
  border: 1px solid rgba(244,98,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.info-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
 
.info-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}
 
.info-card__subtitle {
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin-top: 2px;
}
 
.info-items { display: flex; flex-direction: column; gap: 20px; }
 
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
}
 
.info-item:hover {
  background: rgba(244,98,42,0.04);
  border-color: rgba(244,98,42,0.15);
  transform: translateX(4px);
}
 
.info-item__dot {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
 
.info-item:hover .info-item__dot {
  background: rgba(244,98,42,0.12);
  border-color: rgba(244,98,42,0.25);
}
 
.info-item__dot svg {
  width: 15px; height: 15px;
  stroke: var(--color-text-secondary);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: stroke 0.3s;
}
 
.info-item:hover .info-item__dot svg { stroke: var(--color-accent); }
 
.info-item__body { flex: 1; min-width: 0; }
 
.info-item__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
 
.info-item__value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.5;
}
 
.info-item__arrow {
  color: var(--color-text-muted);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  align-self: center;
}
 
.info-item:hover .info-item__arrow { opacity: 1; transform: translateX(3px); }
 
/* ── HOURS CARD ── */
.hours-card {
  background: linear-gradient(135deg, rgba(10,37,64,0.9) 0%, rgba(13,26,46,0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
 
.hours-card::before {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,98,42,0.06) 0%, transparent 70%);
}
 
.hours-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
 
.hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}
 
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
 
.hours-status {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}
 
.hours-list { display: flex; flex-direction: column; gap: 10px; }
 
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
 
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--color-text-secondary); }
.hours-time { font-weight: 500; color: var(--color-text-primary); }
.hours-time.closed { color: var(--color-text-muted); }
 
/* ── WHATSAPP CTA CARD ── */
.whatsapp-card {
  background: linear-gradient(135deg, #054b30 0%, #06200d 100%);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
 
.whatsapp-card:hover {
  border-color: rgba(37,211,102,0.35);
  box-shadow: 0 20px 60px rgba(37,211,102,0.15);
  transform: translateY(-3px);
}
 
.whatsapp-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
}
 
.whatsapp-inner { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
 
.whatsapp-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
 
.whatsapp-card:hover .whatsapp-icon-wrap {
  background: rgba(37,211,102,0.25);
  transform: scale(1.05) rotate(-5deg);
}
 
.whatsapp-icon { width: 28px; height: 28px; fill: #25d366; }
 
.whatsapp-body { flex: 1; }
 
.whatsapp-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37,211,102,0.7);
  margin-bottom: 4px;
}
 
.whatsapp-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
 
.whatsapp-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}
 
.whatsapp-arrow { color: rgba(37,211,102,0.6); transition: transform 0.3s; }
.whatsapp-card:hover .whatsapp-arrow { transform: translateX(5px); }
 
/* ── MAP SECTION ── */
.map-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
 
.map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}
 
.map-header__left {}
 
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-accent);
  border-radius: 2px;
}
 
.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
 
.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
 
.btn-map-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(244,98,42,0.06);
  transform: translateY(-2px);
}
 
.btn-map-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }
 
.map-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}
 
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1) saturate(0.7);
  display: block;
}
 
.map-overlay-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(7,14,27,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
}
 
.map-overlay-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
 
.map-overlay-card__addr {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}
 
.map-pin-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.map-pin-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(244,98,42,0.6);
  animation: pulse-accent 2s ease-in-out infinite;
}
 
@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,98,42,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(244,98,42,0); }
}
 
.map-pin-text { font-size: 12px; color: var(--color-accent); font-weight: 500; }
 
/* ── FLOATING WHATSAPP ── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
 
.float-whatsapp__tooltip {
  background: rgba(7,14,27,0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-smooth);
  pointer-events: none;
}
 
.float-whatsapp:hover .float-whatsapp__tooltip {
  opacity: 1;
  transform: translateY(0);
}
 
.float-whatsapp__btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  border: none;
  position: relative;
  text-decoration: none;
}
 
.float-whatsapp__btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-pulse 2.5s ease-out infinite;
}
 
.float-whatsapp__btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.15);
  animation: wa-pulse 2.5s ease-out 0.6s infinite;
}
 
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
 
.float-whatsapp__btn:hover {
  background: #20bb5b;
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
 
.float-whatsapp__icon { width: 28px; height: 28px; fill: #fff; }
 
/* ── LIVE CHAT ── */
.float-chat {
  position: fixed;
  bottom: 28px;
  right: 104px;
  z-index: 9000;
}
 
.float-chat__btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(244,98,42,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-bounce);
  position: relative;
}
 
.float-chat__btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(244,98,42,0.55);
  background: var(--color-accent-hover);
}
 
.float-chat__btn svg {
  width: 24px; height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.chat-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
 
/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 104px;
  width: 340px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  overflow: hidden;
  z-index: 9001;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-bounce);
}
 
.chat-widget.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
 
.chat-widget__header {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D2B50 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
 
.chat-avatar {
  position: relative;
  flex-shrink: 0;
}
 
.chat-avatar img, .chat-avatar-placeholder {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  object-fit: cover;
}
 
.chat-avatar-placeholder {
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
 
.chat-avatar-status {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--color-primary);
}
 
.chat-agent-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
 
.chat-agent-role {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
 
.chat-close {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
 
.chat-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.chat-close svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
 
.chat-messages {
  height: 220px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}
 
.chat-message { display: flex; gap: 10px; max-width: 90%; }
.chat-message--agent { align-self: flex-start; }
.chat-message--user  { align-self: flex-end; flex-direction: row-reverse; }
 
.chat-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  align-self: flex-end;
}
 
.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 220px;
}
 
.chat-message--agent .chat-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 4px;
  color: var(--color-text-primary);
}
 
.chat-message--user .chat-bubble {
  background: var(--color-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
 
.chat-time {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: 4px;
  text-align: right;
}
 
.chat-message--agent .chat-time { text-align: left; }
 
.chat-typing {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 90%;
  align-self: flex-start;
}
 
.chat-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
 
.chat-typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typing-bounce 1.4s ease-in-out infinite;
}
 
.chat-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dot:nth-child(3) { animation-delay: 0.4s; }
 
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
 
.chat-input-row {
  padding: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.02);
}
 
.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 0.2s;
}
 
.chat-input::placeholder { color: var(--color-text-muted); }
.chat-input:focus { border-color: rgba(244,98,42,0.4); }
 
.chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-bounce);
}
 
.chat-send:hover { background: var(--color-accent-hover); transform: scale(1.08); }
.chat-send svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; }
 
/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
 
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
 
/* ── SIMPLE NAV (demo) ── */
.demo-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,14,27,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
 
.demo-nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
 
.demo-nav__logo span { color: var(--color-accent); }
 
.demo-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
 
.demo-nav__link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
 
.demo-nav__link:hover { color: #fff; }
 
.demo-nav__cta {
  padding: 9px 22px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.3s;
}
 
.demo-nav__cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
 
/* ── FORM SECTION DIVIDER ── */
.form-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
  margin: 28px 0;
}
 
/* ── QUICK SUBJECT PILLS ── */
.quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
 
.quick-pill {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.25s;
  background: rgba(255,255,255,0.02);
}
 
.quick-pill:hover, .quick-pill.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(244,98,42,0.08);
}
 
/* ── TRUST BADGE ROW ── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
 
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--color-text-muted);
}
 
.trust-item svg {
  width: 14px; height: 14px;
  stroke: #22c55e;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
 
/* ── FOOTER (minimal) ── */
.contact-footer-note {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--color-border);
  font-size: 12.5px;
  color: var(--color-text-muted);
  max-width: 1240px;
  margin: 0 auto;
}
 
.contact-footer-note a { color: var(--color-accent); }
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
 
  .contact-sidebar {
    position: static;
  }
 
  .info-card, .hours-card, .whatsapp-card {
    max-width: 600px;
  }
}
 
@media (max-width: 768px) {
  .demo-nav__links { display: none; }
 
  .contact-hero { padding: 100px 20px 60px; min-height: 46vh; }
  .hero-stats { gap: 24px; }
  .hero-stat__number { font-size: 1.4rem; }
 
  .contact-section { padding: 48px 20px 64px; }
  .form-panel { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
 
  .map-section { padding: 0 20px 64px; }
  .map-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .map-container { height: 340px; }
  .map-overlay-card { max-width: 220px; padding: 14px 16px; }
 
  .float-whatsapp { bottom: 20px; right: 20px; }
  .float-chat { bottom: 20px; right: 90px; }
  .chat-widget { width: 300px; right: 20px; bottom: 90px; }
}
 
@media (max-width: 480px) {
  .contact-hero__title { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-divider { display: none; }
  .form-panel { padding: 24px 18px; border-radius: var(--radius-xl); }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}