/* ============================================================
   CONTACT PAGE — contact.css
   Inherits all variables and base styles from style.css
   ============================================================ */

/* ===== PAGE HERO ===== */
.contact-hero {
  padding: 220px 0 100px;
  position: relative;
  overflow: hidden;
}

.contact-hero-orb {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(191,247,71,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact-hero-inner {
  max-width: 780px;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.contact-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-breadcrumb a:hover { color: var(--accent); }

.contact-breadcrumb span { color: rgba(255,255,255,0.4); }

.contact-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 48px;
}

.contact-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.contact-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.contact-stat:first-child { padding-left: 0; }

.contact-stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.5px;
}

.contact-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.contact-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-main {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.contact-orb-left {
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191,247,71,0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* ===== INFO CARDS ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.contact-info-card:hover {
  border-color: rgba(191,247,71,0.2);
  background: rgba(191,247,71,0.03);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(191,247,71,0.2);
  background: rgba(191,247,71,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-body { flex: 1; }

.contact-info-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-info-link {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-info-link:hover { opacity: 0.8; }

.contact-info-link--phone {
  font-size: 22px;
  letter-spacing: 0.5px;
}

.contact-info-address {
  font-style: normal;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-hours-row:last-child { border-bottom: none; padding-bottom: 0; }

.contact-hours-time {
  font-weight: 600;
  color: var(--white);
}

.contact-hours-closed { color: rgba(255,255,255,0.3) !important; }

.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 14px;
  color: #25d366;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  margin-top: 4px;
}

.contact-whatsapp-btn:hover {
  background: rgba(37,211,102,0.18);
  border-color: rgba(37,211,102,0.5);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 48px;
}

.contact-form-header {
  margin-bottom: 36px;
}

.contact-form-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.contact-form-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}

.req { color: var(--accent); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(191,247,71,0.5);
  background: rgba(191,247,71,0.04);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-select-wrap {
  position: relative;
}

.form-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 44px 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
}

.form-select-wrap select:focus {
  border-color: rgba(191,247,71,0.5);
  background: rgba(191,247,71,0.04);
}

.form-select-wrap select option {
  background: #111;
  color: var(--white);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  stroke: rgba(255,255,255,0.4);
  pointer-events: none;
}

/* Checkbox */
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Submit button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  margin-top: 4px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(191,247,71,0.35);
}

.contact-submit-btn:active { transform: translateY(0); }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.25);
  border-radius: 14px;
  color: var(--white);
}

.form-success svg { stroke: var(--accent); flex-shrink: 0; }

.form-success strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ===== MAP SECTION ===== */
.contact-map-section {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}

.contact-map-orb {
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191,247,71,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.contact-map-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.contact-map-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.contact-map-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.contact-map-embed {
  position: relative;
}

.contact-map-embed iframe {
  display: block;
  filter: brightness(0.75) saturate(0.3) invert(0.9) hue-rotate(180deg);
  opacity: 0.85;
}

.contact-map-overlay {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-map-pin {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10,10,10,0.95);
  border: 1px solid rgba(191,247,71,0.25);
  border-radius: 14px;
  padding: 16px 22px;
  white-space: nowrap;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  color: var(--accent);
}

.contact-map-pin div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-map-pin strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.contact-map-pin span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ===== FAQ SECTION ===== */
.contact-faq {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-faq-orb {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(191,247,71,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.contact-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.contact-faq-left .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(191,247,71,0.08);
  border: 1px solid rgba(191,247,71,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.contact-faq-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-faq-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(191,247,71,0.3);
}

.contact-faq-right .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-template-columns: unset;
  max-width: unset;
}

.contact-faq-right .faq-item {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
}

.contact-faq-right .faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.contact-faq-right .faq-item[open] { border-color: rgba(255,255,255,0.07); }

.contact-faq-right .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
  gap: 24px;
}

.contact-faq-right .faq-item summary::-webkit-details-marker { display: none; }

.contact-faq-right .faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  margin-right: 4px;
}

.contact-faq-right .faq-item[open] summary::after {
  content: '+';
  transform: rotate(45deg);
}

.contact-faq-right .faq-item[open] summary { color: var(--accent); }

.contact-faq-right .faq-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  padding: 0 24px 22px;
  max-width: unset;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 180px 0 70px;
  }

  .contact-hero h1 { font-size: 36px; letter-spacing: -1px; }

  .contact-hero-stats {
    gap: 16px;
  }

  .contact-stat { padding: 0 16px; }
  .contact-stat:first-child { padding-left: 0; }
  .contact-stat strong { font-size: 22px; }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map-pin {
    white-space: normal;
    max-width: 280px;
  }

  .contact-hero-stats { flex-wrap: wrap; gap: 12px 0; }
  .contact-stat-divider { display: none; }
  .contact-stat { width: 50%; padding: 12px 0; }
}
