/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--navy);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,100,10,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-section .section-label { color: var(--orange); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub   { color: var(--gray-400); }

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

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(244,100,10,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: -12px;
  margin-top: -8px;
}

.testimonial-content {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  background: rgba(244,100,10,0.15);
  border: 1px solid rgba(244,100,10,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--white); display: block;
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300; display: block;
}


/* ===== GALLERY ===== */
.gallery-section {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--gray-200);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}

.gallery-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}

.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
  background: var(--gray-100);
}

.gallery-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-card:hover .gallery-img-wrap img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}

.gallery-placeholder-icon { font-size: 36px; opacity: 0.25; }

.gallery-placeholder-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,58,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  padding: 10px 14px;
  background: var(--white);
}

.gallery-cat {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}


/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,13,22,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}

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

.lb-content {
  max-width: 800px;
  width: 90%;
  position: relative;
}

.lb-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-mid);
}

.lb-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.lb-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px 0;
}

.lb-caption {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.lb-count {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
}

.lb-close {
  position: fixed; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  z-index: 1;
}

.lb-close:hover { background: var(--orange); border-color: var(--orange); }

.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  z-index: 1;
}

.lb-nav:hover { background: var(--orange); border-color: var(--orange); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-header    { flex-direction: column; align-items: flex-start; }
  .lb-nav { display: none; }
}

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