:root{
  --bg: #0b0f14;
  --panel: #0f1620;
  --muted: #0e141d;
  --text: #e7edf6;
  --subtext: rgba(231,237,246,.72);
  --accent: #ff7a18;
  --accent-2: #ffa157;
  --brand-red: #e53935;
  --brand-yellow: #ffd23f;
  --brand-blue: #1e88e5;
  --primary-stripe: linear-gradient(90deg, var(--brand-red) 0 33.333%, var(--brand-yellow) 33.333% 66.666%, var(--brand-blue) 66.666% 100%);
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

html, body { height: 100%; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 520px at 8% -10%, rgba(229,57,53,.10), transparent 60%),
              radial-gradient(900px 520px at 92% 0%, rgba(30,136,229,.10), transparent 60%),
              var(--bg);
  color: var(--text);
}

.hero-mini{
  position: relative;
  padding: 84px 0 46px;
}

.skip-link{
  position:absolute;
  top:-40px;
  left:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ top:12px; }

.text-accent{ color: var(--accent) !important; }
.btn-accent{
  --bs-btn-color: #0b0f14;
  --bs-btn-bg: var(--brand-yellow);
  --bs-btn-border-color: var(--brand-yellow);
  --bs-btn-hover-bg: #ffe27a;
  --bs-btn-hover-border-color: #ffe27a;
  --bs-btn-active-bg: #ffe27a;
  --bs-btn-active-border-color: #ffe27a;
  background-image: none;
  font-weight: 700;
}

.topbar{
  background:
    linear-gradient(90deg, rgba(229,57,53,.20) 0 33.333%, rgba(255,210,63,.14) 33.333% 66.666%, rgba(30,136,229,.20) 66.666% 100%),
    rgba(11,15,20,.82);
  backdrop-filter: blur(10px);
}
.topbar .bi{ color: rgba(255,255,255,.75); }
.topbar-link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.topbar-link:hover{ color:#fff; text-decoration: underline; text-underline-offset: 3px; }

.main-nav{
  position: sticky;
  background: rgba(13,18,25,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.main-nav::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--primary-stripe);
  opacity: .85;
  pointer-events: none;
}
.navbar-brand{ letter-spacing: .2px; }
.site-logo{
  height: 48px;
  width: auto;
  max-width: min(260px, 62vw);
  object-fit: contain;
  display: block;
}
@media (min-width: 992px){
  .site-logo{ height: 56px; max-width: 280px; }
}
.site-logo-footer{
  height: 72px;
  width: auto;
  max-width: min(280px, 100%);
  object-fit: contain;
  display: block;
}
.site-logo-footer-sm{
  height: 44px;
  width: auto;
  max-width: min(240px, 85vw);
  object-fit: contain;
  display: block;
}
.brand-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 28px;
  border-radius: 10px;
  background: var(--brand-yellow);
  color: #0b0f14;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .6px;
}

.nav-link{
  color: rgba(255,255,255,.78) !important;
  font-weight: 600;
}
.nav-link:hover, .nav-link.active{ color: #fff !important; }
.nav-link.active{
  text-shadow: 0 0 18px rgba(255,210,63,.35);
}

.hero{
  position: relative;
  padding: 96px 0 56px;
  min-height: calc(100vh - 112px);
  display:flex;
  align-items:center;
  overflow: hidden;
  background: #0b0f14;
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-collage{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 6px;
}
.hero-collage__cell{
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #1a222c;
}
.hero-collage__cell img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
  display: block;
}
.hero-collage__cell--center{
  grid-column: 2;
  grid-row: 2;
  z-index: 1;
  box-shadow:
    0 0 0 3px rgba(255,210,63,.58),
    0 0 0 6px rgba(229,57,53,.22),
    0 12px 40px rgba(0,0,0,.45);
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(11,15,20,.88) 0%, rgba(11,15,20,.72) 42%, rgba(11,15,20,.35) 68%, rgba(11,15,20,.5) 100%),
    linear-gradient(180deg, rgba(11,15,20,.25), rgba(11,15,20,.75));
  pointer-events: none;
}
.hero .container{ z-index: 2; position: relative; }
.hero-kicker{
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.20);
  border-left: 5px solid var(--brand-red);
  padding: 8px 12px;
  border-radius: 999px;
}
.hero-bullets .bullet{
  display:inline-flex;
  gap:.55rem;
  align-items:center;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px;
  border-radius: 999px;
}
.hero-bullets .bullet:nth-child(3n + 1) .bi{ color: var(--brand-red); }
.hero-bullets .bullet:nth-child(3n + 2) .bi{ color: var(--brand-yellow); }
.hero-bullets .bullet:nth-child(3n + 3) .bi{ color: var(--brand-blue); }

.quote-card{
  background: rgba(255,255,255,.92);
  color: #0b0f14;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pill{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,210,63,.24);
  color: #603500;
  border: 1px solid rgba(255,210,63,.36);
}

.section-space{ padding: 72px 0; }
.section-muted{
  background:
    linear-gradient(90deg, rgba(229,57,53,.08), transparent 18%, transparent 82%, rgba(30,136,229,.08)),
    rgba(255,255,255,.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title{
  font-weight: 900;
  letter-spacing: -0.03em;
  position: relative;
}
.section-title::after{
  content: "";
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--primary-stripe);
}
.section-copy{ color: var(--subtext); font-size: 1.05rem; line-height: 1.65; }
.service-copy{ max-width: 56ch; }

.stat-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(15,22,32,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
}
.row > *:nth-child(3n + 1) .stat-top .bi{ color: var(--brand-red); }
.row > *:nth-child(3n + 2) .stat-top .bi{ color: var(--brand-yellow); }
.row > *:nth-child(3n + 3) .stat-top .bi{ color: var(--brand-blue); }
.stat-top{
  display:flex;
  gap:.6rem;
  align-items:center;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.stat-top .bi{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.stat-label{ font-size: .92rem; }
.stat-value{ font-size: 2rem; font-weight: 900; margin-top: 10px; }
.stat-sub{ color: rgba(231,237,246,.70); }

.service-card{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(15,22,32,.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0,0,0,.16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--brand-yellow);
  opacity: .9;
}
.row > .col-md-6:nth-child(3n + 1) .service-card::before,
.row > .col-lg-4:nth-child(3n + 1) .service-card::before{ background: var(--brand-red); }
.row > .col-md-6:nth-child(3n + 2) .service-card::before,
.row > .col-lg-4:nth-child(3n + 2) .service-card::before{ background: var(--brand-yellow); }
.row > .col-md-6:nth-child(3n + 3) .service-card::before,
.row > .col-lg-4:nth-child(3n + 3) .service-card::before{ background: var(--brand-blue); }
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,210,63,.38);
  background: rgba(15,22,32,.78);
}
.icon-bubble{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--brand-yellow);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 20px;
}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-top: 14px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(255,255,255,.88);
}
.service-link:hover{ color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.callout{
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(229,57,53,.24) 0 8px, transparent 8px),
    linear-gradient(180deg, rgba(255,210,63,.14) 0 5px, transparent 5px),
    rgba(15,22,32,.90);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.feature{
  border-radius: var(--radius);
  background: rgba(15,22,32,.62);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-blue);
}
.feature h6{ font-weight: 800; }
.feature p{ color: rgba(231,237,246,.70); }

.image-card{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.image-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}
.image-card img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display:block;
}
.image-card-caption{
  position:absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,210,63,.24);
}

.gallery-tile{
  position:relative;
  display:block;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 44px rgba(0,0,0,.20);
  text-decoration:none;
}
.gallery-tile img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .2s ease;
}
.gallery-page .gallery-tile img{
  height: 220px;
}
.gallery-tile:hover{
  border-color: rgba(255,210,63,.50);
  box-shadow: 0 0 0 3px rgba(30,136,229,.14), 0 16px 44px rgba(0,0,0,.24);
}
.gallery-tile:hover img{ transform: scale(1.06); }

.gallery-layout__heading{
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
.gallery-layout--grid{
  display: grid;
  gap: 38px;
}
.gallery-layout__showcase{
  position: relative;
}
.gallery-grid-copy{
  color: rgba(231,237,246,.72);
  line-height: 1.6;
}
.gallery-layout__scroll--grid{
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.gallery-photo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 12px;
}
.gallery-photo-grid > [class*="col-"]{
  width: auto;
  max-width: none;
  flex: initial;
  padding: 0;
}
.gallery-photo-grid > :nth-child(10n + 1),
.gallery-photo-grid > :nth-child(10n + 6){
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-photo-grid .gallery-tile{
  height: 100%;
}
.gallery-photo-grid .gallery-tile::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,.46));
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.gallery-photo-grid .gallery-tile:hover::after,
.gallery-photo-grid .gallery-tile:focus-visible::after{
  opacity: 1;
}
.gallery-photo-grid .gallery-tile img{
  height: 100%;
}
.gallery-label{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,210,63,.28);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
}

.contact-card, .form-card, .contact-panel{
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,210,63,.16) 0 6px, transparent 6px),
    rgba(255,255,255,.92);
  color: #0b0f14;
  box-shadow: var(--shadow);
}
.contact-card hr{ border-color: rgba(0,0,0,.12); }
.contact-cta{
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.65);
  color: #0b0f14;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-cta:hover{
  border-color: rgba(30,136,229,.35);
  background: rgba(30,136,229,.08);
  color: #0b0f14;
  transform: translateY(-2px);
}
.contact-cta__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  color: var(--brand-blue);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.row > .col-md-6:nth-child(3n + 1) .contact-cta__icon{ color: var(--brand-red); }
.row > .col-md-6:nth-child(3n + 2) .contact-cta__icon{ color: var(--brand-blue); }
.contact-cta__body{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.contact-cta__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(11,15,20,.55);
}
.contact-cta__value{
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.footer{
  background:
    linear-gradient(180deg, var(--brand-red) 0 4px, var(--brand-yellow) 4px 8px, var(--brand-blue) 8px 12px, transparent 12px),
    rgba(9,12,16,.96);
}
.footer-title{
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-link{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.footer-link:hover{
  color: var(--brand-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.social-link:hover{
  color: #fff;
  background: rgba(30,136,229,.18);
  border-color: rgba(255,210,63,.42);
  transform: translateY(-2px);
}
.contact-panel .social-link{
  color: #0b0f14;
  background: rgba(11,15,20,.06);
  border-color: rgba(11,15,20,.12);
}
.contact-panel .social-link:hover{
  color: #0b0f14;
  background: rgba(255,210,63,.20);
  border-color: rgba(30,136,229,.28);
}
.review-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-card{
  height: 100%;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,15,20,.10);
}
.review-card:nth-child(3n + 1){ border-top: 4px solid var(--brand-red); }
.review-card:nth-child(3n + 2){ border-top: 4px solid var(--brand-yellow); }
.review-card:nth-child(3n + 3){ border-top: 4px solid var(--brand-blue); }
.review-card__header{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}
.review-card__avatar--orange{ background: #f4511e; }
.review-card__avatar--slate{ background: #546e7a; }
.review-card__avatar--green{ background: #33691e; }
.review-card__avatar--blue{ background: #039be5; }
.review-card__name{
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}
.review-card__meta{
  color: rgba(11,15,20,.56);
  font-size: 12px;
}
.review-card__stars{
  display: flex;
  gap: 2px;
  color: #f9ab00;
  font-size: 14px;
  margin-bottom: 8px;
}
.review-card__text{
  margin: 0;
  color: rgba(11,15,20,.78);
  font-size: 14px;
  line-height: 1.5;
}

.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px){
  .hero{ padding-top: 70px; min-height: auto; }
  .hero-collage{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(72px, 1fr));
    gap: 4px;
    padding: 4px;
  }
  .hero-collage__cell--center{
    box-shadow:
      0 0 0 2px rgba(255,122,24,.5),
      0 8px 24px rgba(0,0,0,.4);
  }
  .image-card img{ height: 360px; }
  .gallery-layout__showcase{
    position: static;
  }
  .gallery-photo-grid{
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .gallery-photo-grid > :nth-child(10n + 1),
  .gallery-photo-grid > :nth-child(10n + 6){
    grid-column: span 1;
    grid-row: span 1;
  }
  .review-grid{
    grid-template-columns: 1fr;
  }
}
