/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --font-body: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Manrope', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #171717;
  background: #ffffff;
  line-height: 1.6;
}

::selection {
  background: #2DA5DC;
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== BRAND ACCENT ===== */
.accent-word {
  color: #2DA5DC;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== TOP CONTACT BAR ===== */
.top-bar {
  background: #0A0541;
  color: #a3a3a3;
  font-size: 0.75rem;
  padding: 0.5rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 50;
}

@media (min-width: 768px) {
  .top-bar {
    display: flex;
  }
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-bar-left a,
.top-bar-left .location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.top-bar-left a:hover {
  color: #fff;
}

.top-bar-right {
  display: flex;
  gap: 1rem;
}

.top-bar-right a {
  transition: color 0.2s;
}

.top-bar-right a:hover {
  color: #fff;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 40;
  transition: all 0.3s;
  padding: 1.25rem 0;
  background: transparent;
}

@media (min-width: 768px) {
  .header {
    top: 0;
  }
}

.header.scrolled {
  background: rgba(10, 5, 65, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  padding: 0.75rem 0;
  top: 0 !important;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  object-fit: contain;
  background: transparent;
}

.header.scrolled .logo-icon {
  background: transparent;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2DA5DC;
}

.header.scrolled .logo-text {
  color: #2DA5DC;
}

.logo-text .accent {
  color: #fff;
}

.header.scrolled .logo-text .accent {
  color: #ffffff;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2DA5DC;
}

.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-link:hover {
  color: #2DA5DC;
}

.btn-quote {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.7rem 1.4rem;
  border-radius: 14px;
  background: #2DA5DC;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 165, 220, 0.9);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #2397cd;
  border-color: #2397cd;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: block;
  color: #fff;
}

.header.scrolled .mobile-menu-btn {
  color: #ffffff;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: #0A0541;
  padding-top: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideDown 0.3s ease;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #2DA5DC;
}

.mobile-menu .btn-quote-mobile {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  background: #2DA5DC;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 165, 220, 0.95);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mobile-menu .btn-quote-mobile:hover {
  background: #2397cd;
  border-color: #2397cd;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050316;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 0.7;
}

/* Ken Burns — each slide gets a different slow zoom/pan */
.hero-slide:nth-child(1).active { animation: kb-zoom-in    9s ease-in-out both; }
.hero-slide:nth-child(2).active { animation: kb-pan-right  9s ease-in-out both; }
.hero-slide:nth-child(3).active { animation: kb-zoom-tl    9s ease-in-out both; }
.hero-slide:nth-child(4).active { animation: kb-pan-left   9s ease-in-out both; }
.hero-slide:nth-child(5).active { animation: kb-zoom-br    9s ease-in-out both; }

@keyframes kb-zoom-in   { from { transform: scale(1.08); }                       to { transform: scale(1.0); } }
@keyframes kb-pan-right { from { transform: scale(1.05) translateX(-2%); }       to { transform: scale(1.0) translateX(0); } }
@keyframes kb-zoom-tl   { from { transform: scale(1.08) translate(2%, 2%); }     to { transform: scale(1.0) translate(0, 0); } }
@keyframes kb-pan-left  { from { transform: scale(1.05) translateX(2%); }        to { transform: scale(1.0) translateX(0); } }
@keyframes kb-zoom-br   { from { transform: scale(1.08) translate(-2%, -2%); }   to { transform: scale(1.0) translate(0, 0); } }

/* Slide progress indicators */
.hero-indicators {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 2.8rem;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  background: #fff;
  border-radius: 2px;
}

.hero-dot.active::after {
  animation: hero-dot-fill 4.5s linear forwards;
}

@keyframes hero-dot-fill {
  from { width: 0; }
  to   { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active    { animation: none; }
  .hero-dot.active::after { animation: none; width: 100%; }
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 22, 0.2) 0%, rgba(5, 3, 22, 0.03) 24%, rgba(5, 3, 22, 0.22) 62%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(90deg, rgba(5, 3, 22, 0.4) 0%, rgba(5, 3, 22, 0.1) 48%, rgba(5, 3, 22, 0.36) 100%);
}

.hero-bg .overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(45, 165, 220, 0.05), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  font-family: var(--font-display);
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(45, 165, 220, 0.5);
  background: rgba(45, 165, 220, 0.1);
  color: #5CBEE8;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 6rem;
  }
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, #5CBEE8, #1A84B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #edf2f7;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  background: #2DA5DC;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 165, 220, 0.95);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.btn-primary:hover {
  background: #2397cd;
  border-color: #2397cd;
  transform: translateY(-2px);
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

.icon-arrow {
  transition: transform 0.3s;
}

.btn-secondary {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.play-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  color: #0A0541;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
  }
}

.hero-stats .stat h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hero-stats .stat p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: #d5dae7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(to top, #000000, transparent);
  z-index: 10;
}

/* ===== ABOUT ===== */
.about {
  padding: 5rem 0;
  background: #fff;
  color: #171717;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.about-images-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-images-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}

.about-images img {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-images-left img:first-child {
  height: 16rem;
}

.about-images-left img:last-child {
  height: 12rem;
}

.about-images-right img:first-child {
  height: 12rem;
}

.about-images-right img:last-child {
  height: 16rem;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2DA5DC;
  color: #fff;
  padding: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-badge .num {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.section-label {
  font-family: var(--font-display);
  color: #2DA5DC;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #171717;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 3rem;
  }
}

.about-content h2 .highlight {
  position: relative;
  display: inline-block;
}

.about-content h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: rgba(45, 165, 220, 0.35);
  z-index: -1;
}

.about-description {
  font-size: 1.125rem;
  color: #525252;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-marker {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: #2DA5DC;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
}

.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #171717;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: #525252;
  line-height: 1.6;
}

.about-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #404040;
  font-weight: 600;
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #2DA5DC;
}

.about-link {
  color: #2DA5DC;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.about-link:hover {
  color: #1A84B8;
}

.about-link:hover svg {
  transform: translateX(4px);
}

.about-link svg {
  transition: transform 0.2s;
}

/* Mission / Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-card {
  position: relative;
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(10, 5, 65, 0.1);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mv-card:hover {
  transform: none;
}

.mv-card.mission {
  background: #ffffff;
  border-color: rgba(45, 165, 220, 0.18);
}

.mv-card.mission:hover {
  border-color: rgba(45, 165, 220, 0.3);
}

.mv-card.vision {
  background: #0A0541;
  border: 1px solid rgba(45, 165, 220, 0.24);
  color: #fff;
}

.mv-card.vision:hover {
  border-color: rgba(92, 190, 232, 0.45);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.mv-card.mission h3 {
  color: #0A0541;
}

.mv-card.mission p {
  color: #334155;
  line-height: 1.8;
  font-size: 1.02rem;
  font-weight: 600;
}

.mv-card.vision p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 1.02rem;
  font-weight: 600;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: #0A0541;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(45, 165, 220, 0.15);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(50%, -50%);
}

.services-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(35, 60, 145, 0.2);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(-50%, 50%);
}

.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 10;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .services-header h2 {
    font-size: 3rem;
  }
}

.services-header p {
  color: #d0d5e4;
  font-size: 1.125rem;
  line-height: 1.7;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.tab-btn {
  font-family: var(--font-display);
  padding: 0.75rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: #14114A;
  color: #a3a3a3;
}

.tab-btn:hover {
  background: #1E1A6A;
  color: #fff;
}

.tab-btn.active {
  background: #2DA5DC;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(45, 165, 220, 0.4);
  transform: scale(1.05);
}

.services-content {
  min-height: 500px;
  position: relative;
  z-index: 10;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  animation: fadeUp 0.5s ease;
}

@media (min-width: 1024px) {
  .tab-panel.active {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-text {
  order: 2;
}

@media (min-width: 1024px) {
  .tab-text {
    order: 1;
  }
}

.tab-text h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tab-text > p {
  font-size: 1.25rem;
  color: #eef2f7;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(10, 5, 65, 0.6);
  border: 1px solid rgba(45, 165, 220, 0.2);
  transition: border-color 0.3s;
}

.service-item:hover {
  border-color: rgba(45, 165, 220, 0.5);
}

.service-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #2DA5DC, #1A84B8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.service-item p {
  font-size: 0.875rem;
  color: #d0d5e4;
  line-height: 1.65;
}

.tab-image {
  order: 1;
}

@media (min-width: 1024px) {
  .tab-image {
    order: 2;
  }
}

.tab-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 8px solid #14114A;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-image-wrapper .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 64, 0.2);
  transition: background 0.3s;
  z-index: 10;
}

.tab-image-wrapper:hover .img-overlay {
  background: transparent;
}

.tab-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s;
}

.tab-image-wrapper:hover img {
  transform: scale(1.05);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 6rem 0;
  background: #233C91;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.why-choose-dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}

.why-choose-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .why-choose-inner {
    flex-direction: row;
  }
}

.why-choose-text {
  flex: 1;
}

.why-choose-text .section-label {
  color: #5CBEE8;
}

.why-choose-text h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .why-choose-text h2 {
    font-size: 3rem;
  }
}

.why-choose-text h2 .gradient-text {
  background: linear-gradient(to right, #5CBEE8, #1A84B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-text p {
  font-size: 1.125rem;
  color: #d8ecf6;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-consult {
  font-family: var(--font-display);
  padding: 1rem 2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #0A0541;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.btn-consult:hover {
  background: #2DA5DC;
  color: #fff;
  border-color: #2DA5DC;
  transform: translateY(-2px);
}

.why-choose-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-choose-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.wc-card {
  background: rgba(10, 5, 65, 0.4);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(45, 165, 220, 0.35);
  transition: all 0.3s;
}

.wc-card:hover {
  border-color: rgba(45, 165, 220, 0.7);
  transform: translateY(-10px);
}

.wc-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #1A2878;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5CBEE8;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wc-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wc-card p {
  color: #A8D8EE;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== TEAM ===== */
.team {
  padding: 6rem 0;
  background: #fafafa;
}

.team-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.team-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .team-header h2 {
    font-size: 3rem;
  }
}

.team-header p {
  color: #404040;
  font-size: 1.125rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  cursor: pointer;
}

.team-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s;
}

.team-card:hover .team-card-image img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.team-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  padding-top: 5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), transparent);
}

.team-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.team-card-info p {
  color: #5CBEE8;
  font-size: 0.875rem;
  font-weight: 500;
}

.team-bio-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.team-card:hover .team-bio-hint {
  color: rgba(255, 255, 255, 0.8);
}

/* Bio overlay — slides up on click */
.team-card-bio {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 5, 65, 0.96) 0%, rgba(10, 5, 65, 0.99) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
}

.team-card.expanded .team-card-bio {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team-card.expanded .team-card-image img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.team-bio-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.team-bio-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.team-card-bio h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.team-card-bio .bio-role {
  color: #2DA5DC;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 0.85rem;
}

.team-card-bio .bio-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== CLIENTS ===== */
.clients {
  padding: 3rem 0 2rem;
  background: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
}

.clients-label {
  font-family: var(--font-display);
  text-align: center;
  color: #737373;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.clients-description {
  text-align: center;
  color: #525252;
  font-size: 1rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  align-items: center;
}

.marquee-track img {
  max-height: 60px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 900;
  color: #d4d4d4;
  text-transform: uppercase;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .marquee-track span {
    font-size: 2.25rem;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== CTA REMARKABLE ===== */
.cta-remarkable {
  padding: 5rem 0;
  background: #2DA5DC;
  color: #fff;
  text-align: center;
}

.cta-remarkable-inner {
  max-width: 48rem;
}

.cta-remarkable h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .cta-remarkable h2 {
    font-size: 3rem;
  }
}

.cta-remarkable p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.96);
}

.cta-remarkable .btn-primary {
  background: #fff;
  color: #0A0541;
  border-color: rgba(255, 255, 255, 0.95);
}

.cta-remarkable .btn-primary:hover {
  background: #0A0541;
  color: #fff;
  border-color: #0A0541;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0;
  background: #fff;
}

.gallery-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-header h2 {
    font-size: 3rem;
  }
}

.gallery-header p {
  color: #404040;
  font-size: 1.125rem;
  line-height: 1.7;
}

.masonry-grid {
  columns: 1;
  column-gap: 1.5rem;
}

@media (min-width: 750px) {
  .masonry-grid {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .masonry-grid {
    columns: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-item:hover .hover-overlay {
  opacity: 1;
}

.hover-overlay span {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  border: 1px solid #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-footer {
  margin-top: 4rem;
  text-align: center;
}

.btn-outline-dark {
  font-family: var(--font-display);
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  border: 1px solid #0A0541;
  color: #0A0541;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.btn-outline-dark:hover {
  background: #0A0541;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: #0A0541;
  color: #fff;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-info h2 {
    font-size: 3rem;
  }
}

.contact-info > p {
  color: #d0d5e4;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #14114A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2DA5DC;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: #d0d5e4;
  line-height: 1.65;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  color: #171717;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 3rem;
  }
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #404040;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f5f5f5;
  border: 2px solid transparent;
  transition: all 0.3s;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: #2DA5DC;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  font-family: var(--font-display);
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  background: #2DA5DC;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(45, 165, 220, 0.95);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: #2397cd;
  border-color: #2397cd;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.footer {
  background: #0A0541;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid #14114A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand p {
  color: #d0d5e4;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #14114A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.footer-social-link:hover {
  background: #2DA5DC;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 2px solid #2DA5DC;
  padding-bottom: 0.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: #d0d5e4;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #2DA5DC;
}

.footer-col ul li {
  color: #d0d5e4;
}

.footer-contact-info p {
  color: #d0d5e4;
  margin-bottom: 1rem;
}

.footer-contact-info .label {
  display: block;
  color: #fff;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #14114A;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #737373;
  font-size: 0.875rem;
}

.footer-made-with {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #737373;
  font-size: 0.875rem;
}

.footer-made-with svg {
  color: #ef4444;
  fill: #ef4444;
}

.btn-scroll-top {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #14114A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-scroll-top:hover {
  background: #2DA5DC;
}

/* ===== OUR WORK ===== */
.our-work {
  padding: 6rem 0;
  background: #fafafa;
}

.our-work-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.our-work-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .our-work-header h2 {
    font-size: 3rem;
  }
}

.our-work-header p {
  color: #404040;
  font-size: 1.125rem;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }
}

@media (min-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(260px, auto);
  }
}

@media (min-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(240px, auto);
  }
}

.work-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
  cursor: pointer;
  box-shadow: 0 14px 28px -18px rgba(10, 5, 65, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 640px) {
  .work-card-wide {
    grid-column: span 2;
    aspect-ratio: 16/10;
  }
}

@media (min-width: 900px) {
  .work-card-feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .work-card-tall {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .work-card-wide {
    aspect-ratio: 16/9;
  }
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -24px rgba(10, 5, 65, 0.45);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.work-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.84);
}

.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 55%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.35s ease, background 0.35s ease;
}

.work-card:hover .work-card-overlay {
  transform: translateY(0);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 58%, transparent 100%);
}

.work-tag {
  font-family: var(--font-display);
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  background: #2DA5DC;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  box-shadow: 0 8px 18px -10px rgba(45, 165, 220, 0.65);
}

.work-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.work-card-overlay p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.work-footer {
  text-align: center;
  margin-top: 3.5rem;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  padding: 6rem 0;
  background: #0A0541;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.highlights-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: rgba(45, 165, 220, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.highlights-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 10;
}

.highlights-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-header h2 {
    font-size: 3rem;
  }
}

.highlights-header p {
  color: #d0d5e4;
  font-size: 1.125rem;
  line-height: 1.7;
}

.highlights-reel {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .highlights-reel {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.reel-video-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(45, 165, 220, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

.reel-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.reel-video-frame:hover img {
  opacity: 0.45;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.reel-play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(45, 165, 220, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  animation: pulse 2.5s infinite;
}

.reel-play-btn:hover {
  background: #2DA5DC;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 165, 220, 0.5); }
  70% { box-shadow: 0 0 0 22px rgba(45, 165, 220, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 165, 220, 0); }
}

.reel-label {
  font-family: var(--font-display);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 165, 220, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.highlight-item:hover {
  background: rgba(45, 165, 220, 0.1);
  border-color: rgba(45, 165, 220, 0.45);
  transform: translateX(4px);
}

.highlight-item.active {
  background: rgba(45, 165, 220, 0.12);
  border-color: rgba(45, 165, 220, 0.6);
  border-left: 3px solid #2DA5DC;
  transform: translateX(4px);
}

.highlight-item.active .highlight-tag {
  color: #fff;
}

.highlight-item.active h4 {
  color: #2DA5DC;
}

.highlight-img {
  width: 5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-info {
  flex: 1;
}

.highlight-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2DA5DC;
  display: block;
  margin-bottom: 0.25rem;
}

.highlight-info h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 6rem 0;
  background: #fff;
}

.partners-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.partners-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #171717;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .partners-header h2 {
    font-size: 3rem;
  }
}

.partners-header p {
  color: #404040;
  font-size: 1.125rem;
  line-height: 1.7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  transition: all 0.3s;
}

.partner-item:hover {
  border-color: #2DA5DC;
  box-shadow: 0 10px 15px -3px rgba(45, 165, 220, 0.12);
  background: #fff;
}

.partner-item img {
  max-height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== ANIMATIONS (on scroll) ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* ===== PORTFOLIO FILTERS ===== */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-display);
  padding: 0.55rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: #efefef;
  color: #525252;
  border: 2px solid transparent;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.filter-btn:hover {
  background: #e0e0e0;
  color: #171717;
  transform: translateY(-1px);
}

.filter-btn.active {
  background: #2DA5DC;
  color: #fff;
  border-color: #2DA5DC;
  box-shadow: 0 4px 14px rgba(45, 165, 220, 0.38);
  transform: translateY(-1px);
}

.work-card.filtered-out {
  display: none;
}

/* When a category filter is active, collapse masonry spans to a uniform grid */
.work-grid.filtered .work-card-feature,
.work-grid.filtered .work-card-wide,
.work-grid.filtered .work-card-tall {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  aspect-ratio: 3/4 !important;
  min-height: unset !important;
}

/* Zoom icon on work cards */
.work-card-zoom {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.work-card:hover .work-card-zoom {
  opacity: 1;
  transform: scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: min(92vw, 900px);
  max-height: 92vh;
  padding: 0 4rem;
}

@media (max-width: 639px) {
  .lightbox-content {
    padding: 0 0.5rem;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.9);
  display: block;
}

.lightbox-info {
  text-align: center;
  color: #fff;
}

.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.4rem 0 0.15rem;
}

.lightbox-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) translateX(-2px);
}

.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) translateX(2px);
}

@media (min-width: 768px) {
  .lightbox-prev { left: 1.75rem; }
  .lightbox-next { right: 1.75rem; }
}

/* ===== IMAGE BACKGROUNDS: SERVICES ===== */
.services {
  background:
    linear-gradient(rgba(10, 5, 65, 0.88), rgba(10, 5, 65, 0.94)),
    url('img/portfolio/black_label.jpg') center / cover no-repeat;
}

/* ===== IMAGE BACKGROUND: WHY CHOOSE US ===== */
.why-choose {
  background:
    linear-gradient(rgba(10, 5, 65, 0.76), rgba(10, 5, 65, 0.88)),
    url('img/portfolio/whitecrispstage.jpg') center / cover no-repeat;
  background-color: #0A0541; /* fallback */
}

/* ===== IMAGE BACKGROUND: CTA BANNER ===== */
.cta-remarkable {
  background:
    linear-gradient(rgba(10, 5, 65, 0.65), rgba(45, 165, 220, 0.72)),
    url('img/portfolio/beefeater.jpg') center / cover no-repeat;
  background-color: #2DA5DC; /* fallback */
}

/* Keep CTA button legible over the new image background */
.cta-remarkable .btn-primary {
  background: #fff;
  color: #0A0541;
  border-color: rgba(255, 255, 255, 0.95);
}

.cta-remarkable .btn-primary:hover {
  background: #0A0541;
  color: #fff;
  border-color: #0A0541;
}

/* ===== PARTNERS: INFINITE MARQUEE ===== */
.partners-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.partners-marquee .marquee-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partners-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.partners-marquee .marquee-track img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
  flex-shrink: 0;
}

.partners-marquee .marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== HIGHLIGHTS: YOUTUBE EMBED ===== */
.reel-thumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.reel-thumb-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.reel-video-frame:hover .reel-thumb-overlay img {
  opacity: 0.45;
}

.reel-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  border: none;
  z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: #0A0541;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(45, 165, 220, 0.09), transparent 68%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 2;
}

.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-header h2 {
    font-size: 3rem;
  }
}

.testimonials-header p {
  color: #d0d5e4;
  font-size: 1.125rem;
  line-height: 1.7;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  z-index: 2;
  max-width: 56rem;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 3rem 3rem;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 3rem 5rem;
  }
}

.testimonial-quote-icon {
  color: #2DA5DC;
  opacity: 0.75;
}

.testimonial-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  font-weight: 500;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.35rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2DA5DC, #1A84B8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.1rem;
  text-align: left;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #5CBEE8;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.test-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(45, 165, 220, 0.12);
  border: 1px solid rgba(45, 165, 220, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.test-btn:hover {
  background: #2DA5DC;
  border-color: #2DA5DC;
  transform: scale(1.08);
}

.test-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.test-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: all 0.25s ease;
}

.test-dot.active {
  background: #2DA5DC;
  transform: scale(1.5);
}

/* ===== STAGGERED ANIMATION DELAYS ===== */
.work-card:nth-child(1)  { transition-delay: 0s; }
.work-card:nth-child(2)  { transition-delay: 0.06s; }
.work-card:nth-child(3)  { transition-delay: 0.12s; }
.work-card:nth-child(4)  { transition-delay: 0.18s; }
.work-card:nth-child(5)  { transition-delay: 0.24s; }
.work-card:nth-child(6)  { transition-delay: 0.30s; }
.work-card:nth-child(7)  { transition-delay: 0.36s; }
.work-card:nth-child(8)  { transition-delay: 0.42s; }
.work-card:nth-child(9)  { transition-delay: 0.48s; }
.work-card:nth-child(10) { transition-delay: 0.54s; }
.work-card:nth-child(11) { transition-delay: 0.60s; }
.work-card:nth-child(12) { transition-delay: 0.66s; }

/* ===== SERVICE TAB — GALLERY TRIGGER ===== */
.tab-image-wrapper {
  cursor: pointer;
}

.tab-gallery-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(10, 5, 65, 0.55);
  backdrop-filter: blur(2px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 15;
  border-radius: inherit;
}

.tab-image-wrapper:hover .tab-gallery-trigger {
  opacity: 1;
}

.tab-gallery-trigger span {
  display: block;
}

/* Gallery open button inside tab text */
.btn-gallery-open {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 0.65rem 1.5rem;
  border-radius: 12px;
  background: transparent;
  color: #5CBEE8;
  border: 1px solid rgba(92, 190, 232, 0.4);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-gallery-open:hover {
  background: rgba(45, 165, 220, 0.15);
  border-color: #2DA5DC;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== SERVICE GALLERY MODAL (SGM) ===== */
.sgm {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.sgm.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.sgm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 22, 0.97);
  z-index: -1;
}

.sgm-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sgm.open .sgm-container {
  transform: translateY(0);
}

/* Close button — fixed in viewport so it stays visible while scrolling */
.sgm-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.sgm-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

/* Hero banner */
.sgm-hero {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 280px;
  max-height: 520px;
  overflow: hidden;
  flex-shrink: 0;
}

.sgm-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.sgm.open .sgm-hero img {
  transform: scale(1);
}

.sgm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 3, 22, 0.96) 0%,
    rgba(5, 3, 22, 0.55) 45%,
    rgba(5, 3, 22, 0.2) 100%
  );
  display: flex;
  align-items: flex-end;
}

.sgm-hero-content {
  padding: 2.5rem 2rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sgm-hero-content {
    padding: 3rem 2.5rem;
  }
}

.sgm-hero-content .section-label {
  color: #5CBEE8;
  margin-bottom: 0.75rem;
}

.sgm-hero-content h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .sgm-hero-content h2 {
    font-size: 3rem;
  }
}

.sgm-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 42rem;
}

/* Gallery body */
.sgm-body {
  flex: 1;
  padding: 2.5rem 1rem 4rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .sgm-body {
    padding: 3rem 2rem 5rem;
  }
}

.sgm-count {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

/* Image grid */
.sgm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .sgm-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .sgm-grid {
    gap: 1.25rem;
  }
}

.sgm-img-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Featured first item spans 2 cols */
.sgm-img-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

@media (min-width: 640px) {
  .sgm-img-item:first-child {
    grid-column: span 2;
  }
}

.sgm-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.sgm-img-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.7);
}

.sgm-img-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.sgm-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.3) 45%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.sgm-img-item:hover .sgm-img-overlay {
  opacity: 1;
}

.sgm-img-overlay .work-tag {
  margin-bottom: 0.35rem;
}

.sgm-img-overlay h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.sgm-img-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* CTA footer */
.sgm-footer {
  margin-top: 3rem;
  text-align: center;
}

.sgm-cta {
  display: inline-flex;
}
