:root {
  --gold: #C4A262;
  --gold-dark: #b39250;
  --white: #ffffff;
  --light: #f8f8f8;
  --dark: #2c2c2c;
  --gray: #777;
  --border: #e5e5e5;
}

/* ===== PAGE ===== */
.contact-page {
  background: var(--white);
}

/* ===== HERO ===== */
.contact-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  background: url('../images/hero/carousel-slide1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.contact-hero-content {
  position: relative;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.contact-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== SECTION ===== */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-container.narrow {
  max-width: 900px;
}

/* ===== CARD ===== */
.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-info-card h2,
.contact-form-card h2 {
  margin-bottom: 20px;
}

/* ===== INFO ===== */
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 20px;
}

.contact-info-item p {
  margin: 5px 0 0;
  color: var(--gray);
}

.contact-info-item a {
  color: var(--gold);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* ===== ACTIONS ===== */
.contact-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-btn-gold {
  background: var(--gold);
  color: white;
}

.contact-btn-gold:hover {
  background: var(--gold-dark);
}

.contact-btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.contact-btn-outline:hover {
  background: var(--gold);
  color: white;
}

/* ===== FORM ===== */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

/* ===== PHONE ===== */
.phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.country-select {
  font-size: 13px;
}

/* ===== CHECKBOX ===== */
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}

/* ===== BUTTON ===== */
.contact-submit-btn {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: var(--gold-dark);
}

.contact-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== ALERT ===== */
.contact-alert {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-alert.success {
  background: #e6f7ed;
  color: #1c7c45;
}

.contact-alert.error {
  background: #fdeaea;
  color: #a33;
}

/* ===== MAP FULL WIDTH ===== */
.contact-map-section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-map-section .contact-container {
  max-width: 100%;
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
}

.map-card {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  border-radius: 0;
}

/* ===== FAQ CENTER STYLE ===== */
.contact-faq-section {
  padding: 70px 20px;
  background: var(--light);
}

.contact-faq-section h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 34px;
  color: var(--dark);
}

.contact-faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.contact-faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-faq-question {
  width: 100%;
  padding: 18px 22px;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--dark);
}

.contact-faq-question strong {
  color: var(--gold);
  font-size: 22px;
}

.contact-faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.contact-faq-item.active .contact-faq-answer {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 26px;
  }

  .contact-hero p {
    font-size: 14px;
  }

  .phone-row {
    grid-template-columns: 90px 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .map-card iframe {
    height: 360px;
  }

  .contact-faq-section h2 {
    font-size: 26px;
  }

  .contact-faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .contact-faq-answer {
    padding: 0 16px 18px;
  }
}


/* ===== FORCE FAQ CENTER ===== */
.contact-faq-section .contact-container,
.contact-faq-section .contact-container.narrow {
  display: block !important;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact-faq-section h2 {
  text-align: center !important;
  width: 100%;
}

.contact-faq-list {
  width: 100%;
  max-width: 850px;
  margin: 0 auto !important;
}

.contact-faq-question {
  text-align: center !important;
  justify-content: center !important;
  gap: 15px;
}

.contact-faq-question span {
  flex: 1;
  text-align: center !important;
}

.contact-faq-answer {
  text-align: center !important;
}


/* ===== WHATSAPP CHECKBOX FIX ===== */
.whatsapp-group > label:first-child {
  margin-bottom: 8px;
}

.checkbox-line {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  margin: 0 0 12px 0 !important;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-line input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  padding: 0 !important;
  margin: 0 !important;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-line span {
  line-height: 1.3;
}