:root {
  --bg: #0f1115;
  --bg-2: #121722;
  --card: #1a1f29;
  --card-2: #202838;
  --primary: #24aae2;
  --secondary: #56c7f2;
  --warm: #f2b84b;
  --text: #ffffff;
  --muted: #a8b0bc;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 21, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 170, 226, 0.5);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(36, 170, 226, 0.24), rgba(242, 184, 75, 0.09));
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(36, 170, 226, 0.2);
}

.brand strong,
h1,
h2,
h3 {
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  padding: 9px 13px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(36, 170, 226, 0.12);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--text);
}

.section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 112px 0 48px;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.72) 42%, rgba(15, 17, 21, 0.35) 100%),
    linear-gradient(0deg, #0f1115 0%, rgba(15, 17, 21, 0.42) 28%, rgba(15, 17, 21, 0.08) 75%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--secondary);
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8rem);
}

.hero-lede {
  max-width: 600px;
  margin: 18px 0 0;
  color: #d7dde6;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #051018;
  box-shadow: 0 0 26px rgba(36, 170, 226, 0.34);
}

.button-primary:hover {
  box-shadow: 0 0 38px rgba(36, 170, 226, 0.52);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(86, 199, 242, 0.6);
  box-shadow: 0 0 26px rgba(86, 199, 242, 0.16);
}

.stats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(26, 31, 41, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stats div {
  padding: 22px;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--text);
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.stats strong::after {
  content: "+";
  color: var(--primary);
}

.stats span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 8px;
}

.services-band,
.contact-band {
  background:
    linear-gradient(135deg, rgba(36, 170, 226, 0.08), transparent 38%),
    var(--bg-2);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.about-copy h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow),
.about-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.03rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.gallery-card,
.process-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)), var(--card);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.service-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 170, 226, 0.42);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28), 0 0 26px rgba(36, 170, 226, 0.12);
}

.service-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(36, 170, 226, 0.12);
  color: var(--secondary);
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 1.2rem;
}

.service-card p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

/* ===========================
   Gallery
=========================== */

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

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: zoom-in;

  grid-column: span 4;

  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
      180deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.02)
    ),
    var(--card);

  box-shadow: 0 14px 36px rgba(0,0,0,.2);
  transition: .25s ease;
}

.gallery-card.featured {
  grid-column: span 8;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36,170,226,.45);
  box-shadow:
      0 20px 55px rgba(0,0,0,.30),
      0 0 26px rgba(36,170,226,.15);
}

.gallery-card img {
  width:100%;
  height:230px;
  object-fit:cover;
  transition:.35s ease;
}

.gallery-card.featured img{
  height:220px;
}

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

.gallery-card-body{
  padding:18px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(26,31,41,.96);
}

.gallery-card h3{
  margin:0 0 6px;
  font-size:1rem;
}

.gallery-card p{
  margin:0;
  color:var(--muted);
}

.gallery-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.gallery-meta span{
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#dfe6ef;
  font-size:.75rem;
  font-weight:700;
  padding:4px 10px;
}

.about-band {
  background:
    linear-gradient(90deg, rgba(242, 184, 75, 0.07), transparent 34%),
    #0c0e12;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.about-copy p {
  max-width: 680px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.process-list strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(242, 184, 75, 0.15);
  color: var(--warm);
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.5rem;
}

.process-list span {
  color: #d9e0e8;
  font-weight: 700;
}

.contact-layout {
  min-height: 300px;
}

.contact-layout .button {
  justify-self: end;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 30px 16px;
  text-align: center;
}

.floating-facebook,
.back-to-top {
  position: fixed;
  right: 18px;
  z-index: 18;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #061018;
  background: var(--primary);
  box-shadow: 0 0 26px rgba(36, 170, 226, 0.36);
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.floating-facebook {
  bottom: 82px;
}

.back-to-top {
  bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  color: #eef6fb;
  font-weight: 800;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .services-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
		grid-template-columns: repeat(6, 1fr);
		gap:18px;
	}

	.gallery-card{
		grid-column:span 3;
	}

	.gallery-card.featured{
		grid-column:span 6;
	}

  .about-layout,
  .contact-layout {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .nav {
    height: 66px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 17, 21, 0.96);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 34px 0 72px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .stats,
  .services-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-inner {
    padding: 70px 0;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:18px;
	}

	.gallery-card,
	.gallery-card.featured{
		grid-column:span 1;
	}

	.gallery-card img,
	.gallery-card.featured img{
		height:260px;
	}

  .contact-layout .button {
    justify-self: stretch;
  }

  .floating-facebook,
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================
   Featured Carousel
========================== */

.featured-band{
    background:
        radial-gradient(circle at top right,
        rgba(36,170,226,.10),
        transparent 45%),
        var(--bg);
}

.featured-carousel{
    position:relative;
    overflow:hidden;
    height:560px;
    border-radius:14px;
    border:1px solid var(--line);
    background:linear-gradient(
        180deg,
        #1a1f29,
        #121722
    );
}

.carousel-track{

    display:flex;

    transition:transform .55s ease;

}

.carousel-track img{
    flex:0 0 100%;
    width:100%;
    height:560px;            /* adjust as desired */
    object-fit:contain;
    object-position:center;
    padding:30px;
    background:
    radial-gradient(
    circle at center,
    rgba(36,170,226,.10),
    transparent 65%
    ),
    linear-gradient(
    180deg,
    #1b202a,
    #10141d
    );
}

.carousel-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:white;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    z-index:5;

    transition:.25s;

}

.carousel-btn:hover{

    background:rgba(36,170,226,.9);

}

.prev{

    left:18px;

}

.next{

    right:18px;

}

.carousel-dots{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:18px;

}

.carousel-dots button{

    width:10px;

    height:10px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#4d5663;

    transition:.25s;

}

.carousel-dots button.active{

    width:32px;

    border-radius:20px;

    background:var(--primary);

}
