/* ==========================================================================
   KVEE TECH ENTERPRISES - INNER PAGES STYLES
   ========================================================================== */

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(0, 43, 73, 0.95) 0%, rgba(0, 26, 44, 0.92) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h60v60H0z" fill="none"/><path d="M0 30h60M30 0v60" stroke="%230d4169" stroke-width="0.5" opacity="0.2"/></svg>');
  color: var(--color-white);
  padding: 60px 0;
  border-bottom: 3px solid var(--color-accent);
}

.banner-content {
  text-align: left;
}

.banner-title {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #a0aec0;
}

.breadcrumb a {
  color: #c2d1e0;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-separator {
  color: var(--color-accent);
}

.breadcrumb-current {
  color: var(--color-accent-light);
  font-weight: 600;
}

/* Product Detail Layout */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.product-gallery {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.product-gallery img {
  max-height: 380px;
  object-fit: contain;
}

.product-detail-info h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.product-detail-info p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Technical Specification Table */
.spec-table-wrap {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin: 30px 0;
}

.spec-table-title {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 24px;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  background-color: var(--color-bg-light);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  width: 35%;
}

.spec-table tr:last-child td,
.spec-table tr:last-child th {
  border-bottom: none;
}

.spec-table tr:nth-child(even) {
  background-color: #fafbfc;
}

/* Feature Checklists */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 25px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--color-bg-light);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Application Blocks */
.application-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(0, 43, 73, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.app-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.application-card:hover .app-icon {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* Careers Section */
.job-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all var(--transition-normal);
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.job-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* News & Media Cards */
.news-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-img {
  height: 200px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.815rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Contact Page Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
}

.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-info-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 25px;
}

.contact-info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-details h5 {
  color: var(--color-accent-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-details a:hover {
  color: var(--color-accent);
}

/* Map Container */
.map-container {
  height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Toast Alerts */
.toast-alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
}

.toast-success {
  background-color: #def7ec;
  color: #03543f;
  border: 1px solid #84e1bc;
}

.toast-error {
  background-color: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f8b4b4;
}

/* Responsive Inner Pages */
@media (max-width: 992px) {
  .product-detail-hero { grid-template-columns: 1fr; gap: 35px; }
  .feature-list { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .banner-title { font-size: 1.85rem; }
  .contact-form-card, .contact-info-card { padding: 25px 20px; }
}
