/* Package Single Page Styles */

/* Hero Section */
.hero-section {
  position: relative;
  height: 400px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
}

.breadcrumb-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  color: white;
  opacity: 0.9;
}

.breadcrumb-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-nav span {
  opacity: 0.7;
}

.hero-title {
  position: relative;
  z-index: 10;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-subtitle {
  position: relative;
  z-index: 10;
  font-size: 18px;
  color: white;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
}

/* Content Section */
.content-section {
  padding: 60px 0 80px;
  background: #f9fafb;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #13314f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* Description Card */
.description-card {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.description-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.description-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

/* Inquiry Sidebar */
.inquiry-sidebar {
  position: sticky;
  top: 100px;
}

.inquiry-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.inquiry-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f3f4f6;
}

.inquiry-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: #13314f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.inquiry-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.inquiry-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-input,
.field-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #13314f;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.field-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-inquire {
  width: 100%;
  padding: 14px;
  background: #13314f;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-inquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-sidebar {
    position: static;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .description-card {
    padding: 24px;
  }

  .inquiry-card {
    padding: 24px;
  }
}
