/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-image: url('../images/business_person.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.7) 50%, rgba(10, 12, 14, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 50px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(209, 34, 48, 0.2);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: var(--spacing-sm);
  border: 1px solid rgba(254, 222, 63, 0.3);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* ==========================================================================
   Highlights (Overlapping Cards)
   ========================================================================== */
.highlights-section {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding-bottom: var(--spacing-lg);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  background-color: var(--bg-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-checklist-card {
  position: absolute;
  bottom: -105px;
  right: -30px;
  background-color: var(--yellow);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 320px;
}

.about-checklist-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-checklist-card ul li i {
  color: var(--secondary);
}

.about-quote {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--secondary);
  border-left: 4px solid var(--yellow);
  padding-left: 20px;
  margin: var(--spacing-md) 0;
  font-weight: 500;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
  background-color: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 250px;
}

.partners-logos {
  display: flex;
  gap: 40px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-logo img {
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.values-section {
  background-color: var(--bg-subtle);
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.values-cards {
  position: relative;
}

.value-card {
  background-color: var(--bg-light);
  padding: 25px 25px 25px 70px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
  transform: translateX(10px);
}

.value-card-num {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.value-card h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.values-content {
  position: relative;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-light);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  margin-top: -20px;
}

.exp-num {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.exp-text {
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.profile-img-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
}

/* ==========================================================================
   CTA consult Section
   ========================================================================== */
.cta-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.cta-content h2 {
  color: var(--text-light);
}

.consult-form {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.consult-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: var(--font-body);
}

.consult-form input:focus {
  outline: none;
  border-color: var(--yellow);
}

.consult-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-15deg);
  transition: var(--transition);
}

.consult-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {

  .highlights-grid,
  .about-grid,
  .values-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .about-checklist-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .partners-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .partners-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .consult-form {
    flex-direction: column;
  }

  .value-card {
    padding-left: 20px;
    margin-left: 20px;
  }

  .value-card-num {
    top: -20px;
    left: 20px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SPECIAL PROJECTS SECTION
   ═══════════════════════════════════════════════════════════════ */

.projects-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(209, 34, 48, 0.03) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 34, 48, 0.2);
}

.project-icon {
  width: 56px;
  height: 56px;
  background: rgba(209, 34, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.project-card:hover .project-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.project-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.project-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-items li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.project-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.project-items li:last-child {
  margin-bottom: 0;
}

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

  .project-card {
    padding: 24px 20px;
  }
}