/* Hero Sections Layout */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
}

/* Dark Overlay for Hero backgrounds */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 2.25rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-card {
  background-color: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  width: 100%;
}

.profile-img-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--border-dark) 100%);
  box-shadow: var(--shadow-md);
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-dark);
}

.profile-name {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.profile-role {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Service Navigation Split Cards */
.services-shortcut-section {
  padding: 4rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.service-nav-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: all var(--transition-normal);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.service-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-nav-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-lg);
}

.service-nav-card:hover::before {
  opacity: 1;
}

.service-nav-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-nav-desc {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Content Grid / Section Layouts */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header.text-left .section-title::after {
  margin: 0.75rem 0 0;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted-light);
}

.section-dark .section-desc {
  color: var(--text-muted-dark);
}

/* Feature Grid List styling */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon-check {
  color: var(--accent);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.section-dark .feature-text {
  color: var(--text-muted-dark);
}

/* Split Image and Info Sections */
.info-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .info-split {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-split.reverse {
    direction: rtl;
  }
  .info-split.reverse .info-split-content {
    direction: ltr;
  }
}

.info-split-img-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.section-dark .info-split-img-container {
  border-color: var(--border-dark);
}

.info-split-img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  aspect-ratio: 4/3;
}

.info-split-img-container:hover .info-split-img {
  transform: scale(1.05);
}

/* Grid of detailed services with image headers */
.service-detail-card {
  overflow: hidden;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.service-detail-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-detail-content {
  padding: 2rem;
}

/* Contact layout: form next to info */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius);
  padding: 3rem;
  color: var(--text-light);
}

.contact-info-title {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-item-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  background-color: rgba(15, 23, 42, 0.4);
  transition: all var(--transition-fast);
}

.contact-item-link:hover {
  border-color: var(--accent);
  background-color: rgba(16, 185, 129, 0.05);
  transform: translateX(4px);
}

.contact-item-icon {
  font-size: 1.75rem;
  color: var(--accent);
}

.contact-item-details h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted-dark);
  margin-bottom: 0.15rem;
}

.contact-item-details p {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Process Timeline (for Quality Control) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: grid;
  gap: 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

@media (min-width: 768px) {
  .timeline-item {
    grid-template-columns: 80px 1fr;
  }
}

.timeline-item:hover {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.timeline-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
