/* ─── HERO ───────────────────────────────────────────────── */
.gl-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 460px;
  overflow: hidden;
  user-select: none;
}

/* ─── SLIDES ──────────────────────────────────── */
.gl-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.gl-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.gl-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.gl-slide.active .gl-slide__bg {
  transform: scale(1);
}

/* Dark overlay */
.gl-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 45, 0.55) 0%,
    rgba(5, 20, 45, 0.45) 50%,
    rgba(5, 20, 45, 0.70) 100%
  );
}

/* ─── SLIDE CONTENT ───────────────────────────── */
.gl-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
  color: #fff;
}

.gl-slide__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
  max-width: 820px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.gl-slide.active .gl-slide__title {
  opacity: 1;
  transform: translateY(0);
}

.gl-slide__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.gl-slide.active .gl-slide__sub {
  opacity: 1;
  transform: translateY(0);
}

/* Slide backgrounds */
.gl-slide--1 .gl-slide__bg {
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80');
}
.gl-slide--2 .gl-slide__bg {
  background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=1600&q=80');
}
.gl-slide--3 .gl-slide__bg {
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&q=80');
}

/* ─── ARROWS ──────────────────────────────────── */
.gl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 16px 20px;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}
.gl-arrow:hover { color: #fff; }
.gl-arrow--prev { left: 12px; }
.gl-arrow--next { right: 12px; }

/* ─── DOTS ────────────────────────────────────── */
.gl-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.gl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}
.gl-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ─── SLIDE NUMBER ───────────────────────────────── */
.gl-slide-num {
  position: absolute;
  bottom: 22px;
  left: 32px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  z-index: 10;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.gl-services {
  padding: 100px 0;
  background: var(--gl-off-white);
}

.gl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gl-service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  border: 1px solid var(--gl-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--gl-text);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.gl-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gl-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.gl-service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

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

.gl-service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gl-blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gl-blue);
  transition: background 0.25s;
}
.gl-service-card__icon svg { width: 28px; height: 28px; }
.gl-service-card:hover .gl-service-card__icon {
  background: var(--gl-blue);
  color: white;
}

.gl-service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gl-navy);
}

.gl-service-card__desc {
  font-size: 0.9rem;
  color: var(--gl-muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── TRUST SECTION ──────────────────────────────────────── */
.gl-trust {
  padding: 80px 0 60px;
  background: #fff;
}

.gl-trust__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gl-trust__track-outer {
  overflow: hidden;
  flex: 1;
  cursor: grab;
}
.gl-trust__track-outer.dragging { cursor: grabbing; }

.gl-trust__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.gl-trust__card {
  flex: 0 0 calc((100% - 48px) / 3);
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

a.gl-trust__card {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
a.gl-trust__card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.gl-trust__logo-box {
  background: #f0f4f8;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

.gl-trust__logo-box img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.gl-trust__name {
  padding: 20px 24px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #0d3b7a;
  text-align: center;
  line-height: 1.4;
}

.gl-trust__arrow {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #aab;
  cursor: pointer;
  padding: 8px 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}
.gl-trust__arrow:hover { color: #0d3b7a; }

.gl-trust__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.gl-trust__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d7e2;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gl-trust__dot.active {
  background: #0d3b7a;
  transform: scale(1.3);
}

/* ─── ABOUT STRIP ────────────────────────────────────────── */
.gl-about-strip {
  padding: 100px 0;
  background: var(--gl-white);
}

.gl-about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;   /* ← was start */
}

/* Left side: text + photo stacked */
.gl-about-strip__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gl-about-strip__text > span {
  display: inline-block;
  background: var(--gl-blue-pale);
  color: var(--gl-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.gl-about-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gl-navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.gl-about-strip__text h2 em {
  font-style: normal;
  color: var(--gl-blue);
}

.gl-about-strip__text p {
  color: var(--gl-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.gl-about-strip__text .gl-btn { margin-top: 8px; }

/* Photo sits below text in the left column */
.gl-about-strip__photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,31,58,0.12);
  height: 260px;            /* fixed height — shows building, not sign */
  margin-bottom: 28px;
}

.gl-about-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;   /* pulls down to show building, skip sign */
  display: block;
  transition: transform 0.5s ease;
}

.gl-about-strip__photo:hover img {
  transform: scale(1.03);
}

.gl-about-strip__photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.gl-about-strip__photo-badge strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gl-navy);
  line-height: 1;
}

.gl-about-strip__photo-badge span {
  font-size: 0.75rem;
  color: var(--gl-muted);
}

/* Right side: milestones */
.gl-about-strip__milestones {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* removed padding-top: 8px */
}

.gl-milestone {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gl-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gl-border);
  transition: box-shadow 0.2s ease;
}
.gl-milestone:hover { box-shadow: var(--shadow-card); }

.gl-milestone__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gl-blue-pale);
  border-radius: var(--radius-sm);
}

.gl-milestone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gl-navy);
  margin-bottom: 6px;
}
.gl-milestone p {
  font-size: 0.87rem;
  color: var(--gl-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.gl-testimonials {
  padding: 100px 0;
  background: var(--gl-off-white);
}

.gl-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.gl-testimonial {
  background: white;
  border: 1px solid var(--gl-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: box-shadow 0.2s;
}
.gl-testimonial:hover { box-shadow: var(--shadow-hover); }

.gl-testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.gl-testimonial__quote {
  font-size: 0.97rem;
  color: var(--gl-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.gl-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gl-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gl-blue);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gl-testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gl-navy);
}
.gl-testimonial__author span {
  font-size: 0.78rem;
  color: var(--gl-muted);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .gl-services__grid     { grid-template-columns: 1fr 1fr; }
  .gl-about-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .gl-testimonials__grid { grid-template-columns: 1fr; }
  .gl-trust__card        { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 560px) {
  .gl-trust__arrow       { display: none; }
  .gl-trust__card        { flex: 0 0 100%; }
}

@media (max-width: 600px) {
  .gl-services__grid      { grid-template-columns: 1fr; }
  .gl-hero__cta-group     { flex-direction: column; }
  .gl-hero__stats         { gap: 20px; }
  .gl-stat__divider       { display: none; }
  .gl-trust__card         { flex: 0 0 100%; }
  .gl-about-strip__photo  { height: 200px; }
}