/* =====================================================================
   TRAVELICA AGENCY - kontak.css
   ===================================================================== */

.contact-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px; /* offset navbar */
  background: url('../images/hero_bg.webp') center/cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.7);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

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

.contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ci-icon {
  width: 45px;
  height: 45px;
  background: rgba(26, 115, 232, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
}

.ci-text {
  flex: 1;
  min-width: 0;
}

.ci-text h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 5px;
  font-weight: 600;
}

.ci-text p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* Appointment only red tag */
.ci-appointment-tag {
  color: #ef4444;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* WhatsApp Action Card Buttons matching Gambar 2 */
.ci-wa-btn-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

.ci-wa-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #0f172a;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.ci-wa-card:hover {
  border-color: #25D366;
  background: #fcfdfd;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.ci-wa-card:active {
  transform: scale(0.985);
}

.ci-wa-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  flex-grow: 1;
}

.ci-wa-dots {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.ci-wa-card:hover .ci-wa-dots {
  color: #25D366;
  transform: scale(1.12);
}

.contact-map-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  min-height: 400px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-hero {
    height: 250px;
  }
}
