:root {
  --color-white: #fff;
  --color-blue: #1b9fe0;
  --bg-blue: #1b9fe0;
  --bg-blue-hover: #188fc9;
  --color-orange: #f29015;
  --bg-orange: #f29015;
  --bg-orange-hover: #d87c0c;
  --color-gray: #000000;
  --color-title: #000000;
  --radius: 24px;
}

/* ===== Contact Hero Section Start ===== */
.contact-hero-section {
  position: relative;
  min-height: 60vh;
  display: block;
  padding: 0 0 5rem 0;
  margin: 0;
  overflow: visible;
  border-bottom-right-radius: 8rem;
  margin-bottom: 5rem;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-bottom-right-radius: 8rem;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #359ed9 0%,
    rgba(53, 158, 217, 0.95) 50%,
    rgba(53, 158, 217, 0.7) 60%,
    rgba(53, 158, 217, 0) 100%
  );
  opacity: 0.7;
  pointer-events: none;
  border-bottom-right-radius: 8rem;
}

.contact-hero-content-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 3rem 6rem;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: start;
  z-index: 3;
  pointer-events: none;
}

.contact-hero-content {
  max-width: 600px;
  color: #fff;
  text-align: left;
  z-index: 3;
  pointer-events: auto;
}

.contact-hero-title {
  margin-bottom: 1rem;
  color: #fff;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0;
}

/* Contact Stats Section */

/* Contact Section */
.contact-section {
  background: #fff;
  position: relative;
  padding: 0 4rem;
  margin-bottom: 4rem;
}

.contact-atas-kanan {
  position: absolute;
  top: -12rem;
  right: -8rem;
  opacity: 0.8;
  width: 400px;
  height: auto;
  z-index: 0;
}

.contact-bawah-kiri {
  position: absolute;
  bottom: 2rem;
  left: -12rem;
  opacity: 0.8;
  width: 400px;
  height: auto;
  z-index: 0;
}

.contact-inner {
  margin: 0 auto;
}

/* Contact Content */
.contact-content {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  z-index: 3;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  z-index: 3;
}

.contact-form-title {
  color: #505050;
  margin-bottom: 2rem;
  font-size: 28px;
  font-weight: 500 !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500 !important;
  color: var(--color-title);
  font-size: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--bg-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: var(--bg-orange);
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 1rem;
}

.contact-submit-btn:hover {
  background: var(--bg-orange-hover);
}

/* Contact Info Card */
.contact-info-card {
  background: #fff;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 2rem;
  z-index: 3;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 3;
}

.contact-info-title {
  color: #505050;
  font-size: 20px;
  font-weight: 500 !important;
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.contact-info-icon {
  color: var(--bg-orange);
  font-size: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-weight: 500 !important;
  color: var(--color-title);
  font-size: 16px;
  letter-spacing: 0.5px;
}

.contact-info-value {
  color: #505050;
  font-size: 16px;
  line-height: 1.5;
}

.business-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.business-hours-item:last-child {
  border-bottom: none;
}

.business-day {
  font-weight: 600;
  color: var(--color-title);
}

.business-time {
  color: #505050;
}

.contact-map-title {
  color: #505050;
  text-align: start;
  margin-bottom: 2rem;
  font-size: 32px;
  font-weight: 500 !important;
}

.contact-map-container {
  overflow: hidden;
  height: 300px;
  width: auto;
  z-index: 3;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-section {
    padding: 0 1rem;
  }
  
  .contact-atas-kanan,
  .contact-bawah-kiri {
    width: 100%;
  }
  
  .form-label {
      font-weight: 500 !important;
      color: var(--color-title);
      font-size: 14px !important;
    }

  .contact-bawah-kiri {
    position: absolute;
    bottom: 8rem;
    left: -12rem;
    opacity: 0.8;
    width: 400px;
    height: auto;
    z-index: 0;
  }

  .contact-hero-content-wrapper {
    padding: 1rem 2rem;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 2rem;
  }

  .contact-right-column {
    z-index: 3;
  }
}
