/* ============================================
   PIONEER PEPTIDE - About Us Page Styles
   ============================================ */

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + var(--topbar-height) + var(--space-16)) 0 var(--space-20);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(28, 158, 145, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 158, 145, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 70%);
}

.page-hero-gradient {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 158, 145, 0.08) 0%, transparent 60%);
  top: -400px;
  left: 50%;
  transform: translateX(-50%);
}

.page-hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: float-particle 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 85%; animation-delay: -2s; }
.particle-3 { top: 60%; left: 20%; animation-delay: -4s; }
.particle-4 { top: 30%; left: 70%; animation-delay: -6s; }
.particle-5 { top: 70%; left: 60%; animation-delay: -1s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.page-hero-title span {
  display: block;
}

.page-hero-title .accent {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-description {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Section subtitle - centered in headers */
.section-subtitle {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Mission Section
   ============================================ */
.mission-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
}

.mission-visual {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  padding: var(--space-8);
}

.mission-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--bg-subtle) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mission-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(28, 158, 145, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 158, 145, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.mission-image svg {
  width: 120px;
  height: 120px;
  color: var(--gray-300);
  position: relative;
  z-index: 1;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.mission-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  animation: float-card 4s ease-in-out infinite;
  z-index: 10;
}

.mission-float-card-1 {
  top: var(--space-4);
  right: 0;
  animation-delay: 0s;
}

.mission-float-card-2 {
  bottom: var(--space-4);
  left: 0;
  animation-delay: -2s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient-soft);
  border: 1px solid rgba(28, 158, 145, 0.2);
  border-radius: var(--radius-sm);
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-value {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.float-card-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.mission-content {
  max-width: 560px;
}

.mission-description {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.mission-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.value-item {
  display: flex;
  gap: var(--space-4);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient-soft);
  border: 1px solid rgba(28, 158, 145, 0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.value-content h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.value-content p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .mission-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.video-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.video-header .section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-950) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

.video-thumbnail svg {
  width: 200px;
  height: 200px;
  color: var(--gray-600);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
  box-shadow: 0 0 0 0 rgba(28, 158, 145, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin-left: 4px;
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(28, 158, 145, 0.5);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(28, 158, 145, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(28, 158, 145, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 158, 145, 0); }
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.video-duration {
  padding: var(--space-1) var(--space-2);
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white);
}

.video-title {
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 500;
}

.video-features {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.video-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.video-feature svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

@media (max-width: 640px) {
  .video-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
}

/* ============================================
   Timeline Section
   ============================================ */
.timeline-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.timeline-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.timeline-header .section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--gray-200) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  margin-bottom: var(--space-12);
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: var(--space-6);
}

.timeline-item:nth-child(odd) .timeline-marker {
  grid-column: 2;
  justify-self: center;
}

.timeline-item:nth-child(odd)::after {
  content: '';
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
  padding-left: var(--space-6);
}

.timeline-item:nth-child(even) .timeline-marker {
  grid-column: 2;
  justify-self: center;
}

.timeline-item:nth-child(even)::before {
  content: '';
  grid-column: 1;
}

.timeline-marker {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  z-index: 2;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background: var(--primary);
  box-shadow: 0 0 20px rgba(28, 158, 145, 0.4);
}

.timeline-item-highlight .timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-width: 4px;
}

.timeline-year {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--primary-gradient-soft);
  color: var(--primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.timeline-description {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline {
    max-width: 100%;
    padding-left: 0;
  }
  
  .timeline-line {
    left: 8px;
    width: 2px;
  }
  
  .timeline-item {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: var(--space-10);
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding: 0;
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    position: absolute;
    left: 0;
    grid-column: unset;
    justify-self: unset;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::before {
    display: none;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-dot {
    width: 16px;
    height: 16px;
  }
  
  .timeline-item-highlight .timeline-dot {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.gallery-header-left {
  max-width: 500px;
}

.gallery-nav {
  display: flex;
  gap: var(--space-2);
}

.gallery-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.gallery-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-btn svg {
  width: 20px;
  height: 20px;
}

.gallery-container {
  overflow: hidden;
  margin: 0 calc(-1 * var(--space-6));
  padding: 0 var(--space-6);
}

.gallery-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide {
  flex: 0 0 calc(33.333% - var(--space-4));
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.gallery-slide:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.gallery-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.gallery-image svg {
  width: 60px;
  height: 60px;
  color: var(--gray-300);
  position: relative;
  z-index: 1;
}

.gallery-info {
  padding: var(--space-5);
}

.gallery-info h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.gallery-info p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(50% - var(--space-3));
  }
  
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .gallery-slide {
    flex: 0 0 calc(100% - var(--space-6));
  }
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.certifications-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.cert-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  transition: all var(--transition-base);
}

.cert-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cert-badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient-soft);
  border: 1px solid rgba(28, 158, 145, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.cert-badge svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.cert-content h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.cert-content p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.cert-status {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  background: rgba(28, 158, 145, 0.1);
  color: var(--primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.team-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.team-image svg {
  width: 80px;
  height: 80px;
  color: var(--gray-300);
}

.team-info {
  padding: var(--space-5);
  text-align: center;
}

.team-info h4 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.team-role {
  display: block;
  font-size: var(--fs-sm);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.team-info p {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.team-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.team-social svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--gray-950) 0%, #0c1015 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(28, 158, 145, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 158, 145, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-6);
}

.stat-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Active Nav State
   ============================================ */
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  z-index: 1;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lightbox-image-wrapper {
  aspect-ratio: 16/10;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info {
  padding: var(--space-6);
  text-align: center;
}

.lightbox-title {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.lightbox-description {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.lightbox-counter {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-info {
    padding: var(--space-4);
  }
}
