/* Company Introduction */
.royal-company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: var(--royal-space-lg);
}

.royal-company-text h3 {
  font-size: var(--royal-font-lg);
  margin-bottom: var(--royal-space-md);
  color: var(--royal-text-dark);
  font-weight: 600;
}

.royal-company-text p {
  color: var(--royal-text-light);
  margin-bottom: var(--royal-space-md);
  font-size: var(--royal-font-default);
}

/* Mission Section */
.royal-company-mission {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--royal-space-lg);
}

.royal-mission-item {
  background: white;
  padding: 2rem;
  border-radius: var(--royal-radius-md);
  border-left: 4px solid var(--royal-primary-blue);
  box-shadow: var(--royal-shadow);
}

.royal-mission-item h4 {
  font-size: var(--royal-font-md);
  margin-bottom: 0.8rem;
  color: var(--royal-text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.royal-mission-item h4 i {
  color: var(--royal-primary-blue);
}

.royal-mission-item p {
  color: var(--royal-text-light);
  font-size: var(--royal-font-default);
}

/* Company Image */
.royal-company-image {
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  box-shadow: var(--royal-shadow);
  height: 400px;
}

.royal-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--royal-transition-slow);
}

.royal-company-image:hover img {
  transform: scale(1.05);
}

/* Statistics Section */
.royal-stats-section {
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.royal-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.royal-stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--royal-space-lg);
  gap: 1.5rem;
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-lg);
  box-shadow: var(--royal-shadow-sm);
  border: 1px solid var(--royal-border-light);
}

/* Stat icon colors */
.royal-stats-grid .royal-stat-card:nth-child(1) .royal-stat-icon { background: var(--royal-gradient-primary); }
.royal-stats-grid .royal-stat-card:nth-child(2) .royal-stat-icon { background: var(--royal-gradient-green); }
.royal-stats-grid .royal-stat-card:nth-child(3) .royal-stat-icon { background: var(--royal-gradient-orange); }
.royal-stats-grid .royal-stat-card:nth-child(4) .royal-stat-icon { background: var(--royal-gradient-red); }

.royal-stat-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--royal-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--royal-font-xl);
  color: #fff;
}

.royal-stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.royal-stat-number {
  font-size: var(--royal-font-xl);
  font-weight: 700;
  line-height: 1;
}

.royal-stat-label {
  opacity: 0.9;
  color: var(--royal-text-light);
  font-size: var(--royal-font-default);
}

/* Timeline Section */
.royal-inner-timeline-section {
  margin: var(--royal-space-xxl) 0;
}

.royal-inner-timeline {
  position: relative;
  margin: 0 auto;
}

.royal-inner-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--royal-gradient-primary);
  transform: translateX(-50%);
  border-radius: var(--royal-radius);
}

.royal-inner-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.royal-inner-timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.royal-inner-timeline-year {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--royal-gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--royal-font-md);
  font-weight: 700;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin: 0 2rem;
  box-shadow: var(--royal-shadow-md);
  transition: var(--royal-transition);
}

.royal-inner-timeline-item:hover .royal-inner-timeline-year {
  transform: scale(1.1);
  box-shadow: var(--royal-shadow-lg);
}

.royal-inner-timeline-content {
  flex: 1;
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-md);
  padding: 2rem;
  box-shadow: var(--royal-shadow);
  border: 1px solid var(--royal-border-light);
  position: relative;
  transition: var(--royal-transition);
}

.royal-inner-timeline-item:hover .royal-inner-timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--royal-shadow-md);
}

/* Timeline arrows */
.royal-inner-timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--royal-bg-white);
  transform: translateY(-50%) rotate(135deg);
  border: 1px solid var(--royal-border-light);
}

.royal-inner-timeline-item:nth-child(even) .royal-inner-timeline-content::before {
  left: -10px;
  border-left: none;
  border-top: none;
}

.royal-inner-timeline-item:nth-child(odd) .royal-inner-timeline-content::before {
  right: -10px;
  border-right: none;
  border-bottom: none;
}

.royal-inner-timeline-content h3 {
  font-size: var(--royal-font-md);
  margin-bottom: 0.8rem;
  color: var(--royal-text-dark);
  font-weight: 600;
}

.royal-inner-timeline-content p {
  color: var(--royal-text-light);
  line-height: 1.6;
}

/* Company Culture */
.royal-culture-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: var(--royal-space-lg);
}

.royal-culture-visual {
  position: sticky;
  top: 100px;
}

.royal-culture-image {
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  box-shadow: var(--royal-shadow);
  height: 500px;
}

.royal-culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.royal-culture-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.royal-culture-item {
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-md);
  padding: 1.5rem;
  box-shadow: var(--royal-shadow);
  border: 1px solid var(--royal-border-light);
  transition: var(--royal-transition);
}

.royal-culture-item:hover {
  transform: translateX(5px);
  box-shadow: var(--royal-shadow-md);
}

.royal-culture-item h3 {
  font-size: var(--royal-font-md);
  margin-bottom: 1rem;
  color: var(--royal-text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.royal-culture-item h3 i {
  color: var(--royal-primary-blue);
  width: 24px;
}

.royal-culture-item p {
  color: var(--royal-text-light);
  line-height: 1.6;
}

/* Advantages Section */
.royal-inner-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: var(--royal-space-lg);
}

.royal-inner-advantage-card {
  background: var(--royal-bg-white);
  border-radius: var(--royal-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--royal-shadow);
  transition: var(--royal-transition);
  border: 1px solid var(--royal-border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.royal-inner-advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--royal-shadow-lg);
}

.royal-inner-advantage-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--royal-radius-lg);
  background: var(--royal-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: var(--royal-font-xl);
  transition: var(--royal-transition);
}

.royal-inner-advantage-card:hover .royal-inner-advantage-icon {
  transform: scale(1.1);
}

/* Advantage icon color variations */
.royal-inner-advantage-card:nth-child(2n) .royal-inner-advantage-icon { background: var(--royal-gradient-green); }
.royal-inner-advantage-card:nth-child(3n) .royal-inner-advantage-icon { background: var(--royal-gradient-purple); }
.royal-inner-advantage-card:nth-child(4) .royal-inner-advantage-icon { background: var(--royal-gradient-orange); }

.royal-inner-advantage-card h3 {
  font-size: var(--royal-font-md);
  margin-bottom: 1rem;
  color: var(--royal-text-dark);
  font-weight: 600;
}

.royal-inner-advantage-card p {
  color: var(--royal-text-light);
  margin-bottom: var(--royal-space-md);
  line-height: 1.6;
}