/* ===== Guides Page Styles ===== */

.team-intro { padding-bottom: 2rem; }

.team-intro .intro-block {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.team-intro .pre-title {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.team-intro p {
  color: var(--color-gray-700);
  line-height: 1.95;
  font-size: 1rem;
  margin-top: 1rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.ts-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--color-gray-300);
}

.ts-item:last-child { border-right: none; }

.ts-item .counter {
  font-size: 2.6rem;
}

.ts-item .label {
  margin-top: 0.3rem;
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

/* Guides Section */
.guides-section { background: linear-gradient(180deg, white, #fafaff); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.guide-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.22);
  box-shadow: 0 14px 32px rgba(72, 36, 18, 0.08);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.guide-card::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(212, 168, 83, 0.28);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 3;
}

.guide-card:hover {
  box-shadow: 0 24px 48px rgba(72, 36, 18, 0.18);
  border-color: rgba(196, 30, 58, 0.32);
}

.guide-card:hover::after { opacity: 0.7; }

.guide-photo {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.guide-card:hover .guide-photo img {
  transform: scale(1.05);
}

.guide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3));
}

.guide-langs {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.guide-langs span {
  padding: 0.25rem 0.55rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-red);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.guide-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-info h3 {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.guide-info h3 small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-gray-500);
  letter-spacing: 1px;
  margin-left: 0.4rem;
}

.guide-title {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.guide-info > p {
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--color-gray-300);
}

.specialties span {
  font-size: 0.78rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(212, 168, 83, 0.08));
  color: var(--color-red);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-weight: 500;
}

/* Why Us */
.why-us { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, white, #fafaff);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.why-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(212, 168, 83, 0.15));
  color: var(--color-red);
  transition: all var(--transition-normal);
}

.why-item:hover .why-icon {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, var(--color-red), var(--color-gold));
  color: white;
}

.why-item h3 {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.why-item p {
  color: var(--color-gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* CTA */
.guides-cta {
  position: relative;
  padding: var(--spacing-xl) 1.5rem;
  text-align: center;
  color: white;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80") center/cover;
}

.guides-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(196, 30, 58, 0.75));
}

.guides-cta .cta-content { position: relative; z-index: 2; }

.guides-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.guides-cta p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.guides-cta .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .ts-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .guides-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: 1fr 1fr; }
  .ts-item { border-right: none !important; border-bottom: 1px solid var(--color-gray-300); }
  .ts-item:nth-last-child(-n+2) { border-bottom: none; }
}
