    :root {
      --bg: #050509;
      --bg-alt: #0d0d13;
      --bg-soft: #13131d;
      --text-main: #ffffff;
      --text-muted: #000000;
      --accent: #ffffff;
      --accent-soft: rgba(22, 26, 249, 0.18);
      --border-subtle: #27272f;
      --max-width: 1440px;
      --radius-lg: 1.5rem;
      --radius-md: 1rem;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
      --shadow-subtle: 0 14px 35px rgba(0, 0, 0, 0.4);
      --transition-fast: 180ms ease-out;
      --transition-med: 220ms ease-out;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      scroll-behavior: smooth;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #a2a7b3 0, #ffffff 45%, #000 100%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .nav-container{
      display: flex;
      padding-left: 10px;
      justify-content:center;
      align-items: center;
      margin: 5 auto;
      
    }
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      color: var(--accent);
      backdrop-filter: blur(16px);
      background: linear-gradient(to bottom, rgba(1, 1, 2, 0.9), rgba(3, 7, 18, 0.6));
      border-bottom: 1px solid rgba(39, 39, 47, 0.7);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 0;
      gap: 1.5rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f9fafb;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 0.04em;
      
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-name {
      font-weight: 650;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .brand-tagline {
      font-weight: 650;
      font-size: 0.75rem;
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      font-size: 0.9rem;
      text-transform: uppercase;
    }

    .nav-links a {
      opacity: 0.85;
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--accent), #2415fa);
      border-radius: 999px;
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Active nav link */
.nav-link-active {
  opacity: 1 !important;
}

.nav-link-active::after {
  width: 100%;
}

/* Portfolio hero */
.portfolio-hero {
  
  padding: 3rem 0 1.5rem;
}

.portfolio-hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.portfolio-hero-title {
  color: var(--text-muted);
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.portfolio-hero-subtitle {
  font-size: 1.4rem;
  max-width: 50rem;
  gap: .5rem;
  color: var(--text-muted);
  font-weight: bold;
}

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-phone {
      font-size: 0.8rem;
      color: var(--text-main);
    }

    .nav-mobile{
        display:none;
    }

    .btn {
      border-radius: 999px;
      padding: 0.55rem 1.35rem;
      font-size: 0.85rem;
      font-weight: 600;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
      background var(--transition-fast), border-color var(--transition-fast),
      color var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: radial-gradient(circle at top left, #ffffff 0, #ffffff 35%, #ffffff 85%);
      color: #020617;
      box-shadow: 0 14px 35px rgba(182, 173, 167, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(227, 224, 222, 0.7);
    }

    .btn-outline {
      border-color: #3f3f46;
      color: var(--text-main);
      background: rgba(9, 9, 15, 0.85);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      background: rgba(15, 15, 23, 0.9);
      box-shadow: var(--shadow-subtle);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #e5e7eb;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    /* Hero */

    .hero {
      padding: 3.75rem 0 3.25rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 999px;
      padding: 0.2rem 0.7rem 0.2rem 0.25rem;
      border: 1px solid rgba(55, 65, 81, 0.7);
      background: radial-gradient(circle at left, rgba(60, 22, 249, 0.3) 0, rgba(15, 23, 42, 0.95) 60%, rgba(15, 23, 42, 0.95) 100%);
      margin-bottom: 1.35rem;
      font-size: 0.7rem;
      color: #e5e7eb;
    }

    .hero-dot {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 40% 30%, #245afb 0, #2d16f9 40%, transparent 65%),
        radial-gradient(circle at 70% 70%, rgba(20, 105, 190, 0.3), transparent 70%);
      box-shadow: 0 0 0 4px rgba(37, 22, 249, 0.35);
    }

    .hero-tag span {
      opacity: 0.9;
    }

    .hero-title {
      color: var(--accent);
      font-size: clamp(2.25rem, 4vw, 3.2rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 1.1rem;
    }

    .hero-title span {
      display: block;
    }

    .hero-title .accent {
      background: linear-gradient(to right, #1621f9, #1587fa);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      max-width: 30rem;
      font-size: 0.98rem;
      color: var(--text-muted);
      margin-bottom: 1.85rem;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.75rem;
      align-items: center;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.45rem;
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }

    .hero-highlight {
      font-weight: 500;
      color: #e5e7eb;
    }

    .hero-media {
      position: relative;
      isolation: isolate;
    }

    .hero-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: radial-gradient(circle at top, #1f2937 0, #020617 70%);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(55, 65, 81, 0.75);
      max-width: 460px;
      margin-left: auto;
    }

    .hero-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
    }

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms ease-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show the active slide */
.hero-slide.is-active {
  opacity: 1;
}

/* Navigation arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 3;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.hero-nav-prev {
  left: 0.75rem;
}

.hero-nav-next {
  right: 0.75rem;
}

.hero-nav:hover {
  background: rgba(15, 23, 42, 1);
  border-color: #3816f9;
  transform: translateY(-50%) scale(1.05);
}


    .hero-img::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.1), transparent 60%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      transform-origin: center;
      filter: saturate(1.15) contrast(1.03);
    }

    .hero-badge {
      position: absolute;
      left: 1.1rem;
      top: 1.1rem;
      padding: 0.4rem 0.75rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(75, 85, 99, 0.9);
      font-size: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      z-index: 2;
    }

    .hero-badge span:first-child {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .hero-floating {
      position: absolute;
      right: -0.3rem;
      bottom: -0.3rem;
      padding: 0.85rem;
      border-radius: 1rem 0 0 0;
      background: rgba(9, 9, 15, 0.98);
      border-top: 1px solid rgba(55, 65, 81, 0.85);
      border-left: 1px solid rgba(55, 65, 81, 0.85);
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      font-size: 0.6rem;
      max-width: 200px;
    }

    .hero-floating-label {
      font-size: 0.8rem;
      color: var(--text-main);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .hero-floating-main {
      font-weight: 600;
    }

    .hero-floating-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.7rem;
    }

    .hero-floating-tags span {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(63, 63, 70, 0.95);
      background: rgba(15, 23, 42, 0.95);
    }

    .hero-glow {
      position: absolute;
      inset: 15% -15%;
      background:
        radial-gradient(circle at 20% 20%, rgba(41, 22, 249, 0.25), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.18), transparent 50%);
      opacity: 0.8;
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: -1;
      filter: blur(8px);
    }

    /* Section shell */

    section {
      padding: 2.5rem 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap;
    }

    .section-eyebrow {
      font-size: 3.72rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent);
      margin-bottom: 0.35rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
    }

    .section-description {
      font-size: 0.88rem;
      color: var(--accent);
      max-width: 28rem;
    }

    /* Portfolio */

    #portfolio{
      
      background-image: url(/assets/portfolio/fitness/DSC02887.jpg);
            /* KEY CHANGE */
      background-position: center top; /* adjust if needed */
      background-repeat:no-repeat;
      background-color: #020617;       /* fills empty space */
      padding: 6rem 0;                 /* gives image breathing room */

      
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .portfolio-item {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #020617;
      cursor: pointer;
      min-height: 170px;
      border: 1px solid rgba(39, 39, 47, 0.9);
      transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
    }


    .portfolio-item:hover img {
  transform: scale(1.03);
  transition: transform 220ms ease-out;
    }

    .portfolio-item.large {
      grid-row: span 2;
    }

    .portfolio-item.wide {
      grid-column: span 2;
    }
    
   /* Container: fixed size, no jumping */
.portfolio-img {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 2.5;        /* Aspect Ratio */
  overflow: hidden;
}

/* Image: always fills the container the same way */
.portfolio-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* keeps crop consistent across all slides */
  transition: transform 420ms ease-out;
}

.portfolio-title
/* Optional subtle zoom on hover */
.portfolio-item:hover .portfolio-img img {
  transform: scale(1.03);
}


    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 55%);
      opacity: 0.88;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0.7rem 0.8rem;
    }

    .portfolio-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #d4d4d8;
      opacity: 0.9;
      margin-bottom: 0.25rem;
    }

    .portfolio-title {
      color: #ffffff;
      border-radius: 1 1 black;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .portfolio-meta {
      font-size: 0.7rem;
      color: #a1a1aa;
      margin-top: 0.15rem;
    }

    .portfolio-item:hover img {
      transform: scale(1.05);
      filter: saturate(1.15) contrast(1.03);
    }

    .portfolio-item:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 2.2);
      box-shadow: var(--shadow-subtle);
    }

    .portfolio-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.25rem;
      font-size: 0.8rem;
      color: var(--accent);
    }

    .portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(39, 39, 47, 0.9);
  margin-bottom: 1.5rem;
}

.portfolio-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: rgba(57, 83, 233, 0.95);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 64, 160, 0.7);
}

.portfolio-view:hover {
  background: rgb(35, 75, 148);
  border-color: rgb(19, 16, 192);
}


/* Lightbox Styles */

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 63, 70, 0.95);
  background: radial-gradient(circle at top, #020617, #020617);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.25rem 1.5rem;
}

.lightbox-image-wrap {
  border-radius: 1.1rem;
  overflow: hidden;
  max-height: 80vh;            /* how tall it can get */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain !important;   /* force full image, no crop */
}
.lightbox-info {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lightbox-title {
  font-size: 0.98rem;
  font-weight: 600;
}

.lightbox-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(82, 82, 91, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  border-color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.lightbox-nav:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 0.4rem;
}

.lightbox-next {
  right: 0.4rem;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .portfolio-hero {
    padding-top: 2.25rem;
  }

  .portfolio-contact-cta {
    padding: 1.15rem 1rem;
    color: var(--text-main);
  }

  .lightbox-content {
    padding: 1rem 0.9rem 1.2rem;
  }

  .lightbox-nav {
    display: none; /* arrows can be hidden on very small screens if you want */
  }
}


.filter-btn {
  border-radius: 999px;
  border: 2px solid rgba(63, 63, 70, 0.9);
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.filter-btn:hover {
  border-color: var(--accent);
}

.filter-btn.is-active {
  background: radial-gradient(
    circle at top left,
    #aadbfe 0,
    #1669f9 35%,
    #380cea 85%
  );
  border-color: transparent;
  color: #ffffff;
}

  /* Slightly denser grid for a dedicated portfolio page */
.portfolio-grid-page {
  margin-top: 1rem;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-contact-cta {
  margin-top: 2.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 63, 70, 0.95);
  background: radial-gradient(
      circle at top left,
      rgba(249, 115, 22, 0.16),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.96);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.portfolio-contact-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.portfolio-contact-text p {
  font-size: 0.9rem;
  color: var(--text-main);
}

.portfolio-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


    .link-inline {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      font-weight: 500;
      color: #000000;
      cursor: pointer;
    }

    .link-inline svg {
      width: 14px;
      height: 14px;
      border: 1 black 1;
    }

    .dot-row {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .dot-row span {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #52525b;
    }

    /* ===== Gallery Grid (Dedicated Pages) ===== */

.gallery-grid-section {
  padding: 1.25rem 0 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(4.5rem, 1fr));
  gap: 0.85rem;
}

/* Each tile */
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(63, 63, 70, 0.9);
}

/* Lock image sizing so rows align perfectly */
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;   /* matches the portfolio grid feel */
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}



.gallery-actions{
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin:5px;
}

.gallery-title{
  color: var(--bg);

}

.gallery-subtitle{
  color: var(--bg);

}

.gallery-meta{
  color: var(--bg);

}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}



    /* Services */

    .services {
      background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 60%),
        linear-gradient(to bottom, #020617, #020617);
      border-top: 1px solid rgba(39, 39, 47, 0.85);
      border-bottom: 1px solid rgba(39, 39, 47, 0.85);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .service-card {
      border-radius: var(--radius-md);
      padding: 1rem;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(55, 65, 81, 0.85);
      box-shadow: 0 18px 35px rgba(15, 23, 42, 0.85);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      font-size: 0.85rem;
      position: relative;
      overflow: hidden;
    }

    .service-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      padding: 0.2rem 0.65rem;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(63, 63, 70, 0.85);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
    }

    .service-pill span:first-child {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
    }

    .service-title {
      color: var(--accent);
      font-weight: 600;
      font-size: 0.98rem;
    }

    .service-desc {
      color: var(--accent);
    }

    .service-meta {
      margin-top: 0.4rem;
      font-size: 0.75rem;
      color: #d4d4d8;
    }

    .service-meta strong {
      font-weight: 600;
      color: #e4e4e7;
    }

    /* About / Process */

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    .about-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(63, 63, 70, 0.9);
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
      padding: 1.4rem 1.35rem;
      box-shadow: var(--shadow-subtle);
      font-size: 0.9rem;
      color: var(--accent);
    }

    .about-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.65rem;
      color: var(--accent);
    }

    .about-meta-row {
      display: flex;
      flex-wrap: wrap;
      color: var(--accent);
      gap: 0.75rem;
      margin-bottom: 0.65rem;
      font-size: 0.78rem;
    }

    .about-meta-pill {
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(82, 82, 91, 0.95);
      background: rgba(15, 23, 42, 0.95);
      color: #e4e4e7;
    }

    .about-card p + p {
      margin-top: 0.65rem;
      color: var(--accent);
    }

    .process-list {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .process-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      font-size: 0.85rem;
    }

    .process-step {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      background: var(--accent-soft);
      border: 1px solid rgba(249, 115, 22, 0.55);
      color: #fed7aa;
      flex-shrink: 0;
    }

    .process-content h4 {
      font-size: 0.9rem;
      margin-bottom: 0.15rem;
    }

    .process-content p {
      color: var(--text-muted);
      font-size: 0.82rem;
    }

    /* Testimonials */

    .testimonials {
      border-top: 1px solid rgba(39, 39, 47, 0.9);
      border-bottom: 1px solid rgba(39, 39, 47, 0.9);
      background: radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.22), transparent 60%),
        linear-gradient(to bottom, #020617, #020617);
    }

    .testimonial-row {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.5rem;
    }

    .quote-card {
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.35rem;
      background: rgba(15, 23, 42, 0.92);
      border: 1px solid rgba(63, 63, 70, 0.85);
      box-shadow: var(--shadow-subtle);
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .quote-symbol {
      font-size: 2.5rem;
      line-height: 1;
      position: absolute;
      right: 0.75rem;
      top: -0.3rem;
      color: rgba(63, 63, 70, 0.5);
    }

    .quote-text {
      margin-bottom: 0.7rem;
      color: #e4e4e7;
    }

    .quote-author {
      font-size: 0.85rem;
      color: #d4d4d8;
      font-weight: 500;
    }

    .quote-meta {
      font-size: 0.78rem;
      color: var(--accent);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 0.85rem;
      font-size: 0.82rem;
    }

    .stat-card {
      border-radius: 1rem;
      padding: 0.85rem;
      border: 1px solid rgba(63, 63, 70, 0.9);
      background: rgba(15, 23, 42, 0.9);
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .stat-value {
      font-size: 1.15rem;
      font-weight: 600;
    }

    .stat-label {
      color: var(--accent);
      font-size: 0.78rem;
    }

    /* Contact */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.75rem;
    }

    .contact-card {
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.3rem;
      border: 1px solid rgba(63, 63, 70, 0.95);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
      box-shadow: var(--shadow-soft);
      font-size: 0.87rem;
    }

    .contact-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .contact-card p {
      color: var(--text-main);
      margin-bottom: 0.85rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .field-label {
      font-size: 0.75rem;
      color: #e4e4e7;
    }

    .field-label span {
      color: #f91616;
    }

    .field-input,
    .field-textarea,
    .field-select {
      border-radius: 0.75rem;
      border: 1px solid rgba(63, 63, 70, 0.9);
      background: rgba(15, 23, 42, 0.9);
      padding: 0.55rem 0.7rem;
      font-size: 0.82rem;
      color: var(--text-main);
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
      font-family: inherit;
    }

    .field-textarea {
      min-height: 120px;
      resize: vertical;
    }

    .field-input::placeholder,
    .field-textarea::placeholder {
      color: #6b7280;
    }

    .field-input:focus,
    .field-textarea:focus,
    .field-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
      background: rgba(15, 23, 42, 0.98);
    }

    .helper-text {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .contact-aside {
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.1rem;
      border: 1px dashed rgba(82, 82, 91, 0.9);
      background: radial-gradient(circle at top left, rgba(22, 26, 249, 0.16), transparent 60%),
        rgba(15, 23, 42, 0.96);
      font-size: 0.82rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .contact-aside h4 {
      font-size: 0.9rem;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      font-size: 0.8rem;
    }

    .social-pill {
      border-radius: 999px;
      padding: 0.35rem 0.75rem;
      border: 1px solid rgba(82, 82, 91, 0.95);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      cursor: pointer;
    }

    .social-pill span:first-child {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #f97316 0, #f97316 45%, transparent 75%);
    }

    .notice {
      font-size: 0.75rem;
      color: var(--text-main);
    }

    footer {
      border-top: 1px solid rgba(39, 39, 47, 0.95);
      padding: 1.2rem 0 1.4rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      background: #020617;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .footer-links a {
      opacity: 0.8;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    /* Toast */

    .toast {
      position: fixed;
      left: 50%;
      bottom: 1.5rem;
      transform: translateX(-50%) translateY(120%);
      background: rgba(15, 23, 42, 0.98);
      border-radius: 999px;
      border: 1px solid rgba(63, 63, 70, 0.95);
      padding: 0.55rem 0.9rem;
      font-size: 0.75rem;
      color: #e5e7eb;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
      z-index: 50;
      transition: transform 220ms ease-out, opacity 220ms ease-out;
      opacity: 0;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .toast-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    }

    /* Responsive */

    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1.1fr);
      }

      .hero-media {
        order: -1;
      }

      .hero {
        padding-top: 2.5rem;
      }

      .split-grid,
      .testimonial-row,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-card {
        margin: 0 auto;
      }
    }

    @media (max-width: 720px) {
      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-mobile {
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0 0.9rem;
        font-size: 0.9rem;
      }

      .nav-mobile.show {
        display: flex;
      }

      .nav-mobile a {
        opacity: 0.9;
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-title {
        font-size: 2.1rem;
      }

      .hero-subtitle {
        font-size: 0.92rem;
      }

      .section-header {
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero {
        padding-top: 2rem;
      }

      .hero-meta {
        gap: 0.75rem;
      }
    }

    /* ===== Services Page ===== */

.services-hero {
  padding: 3rem 0 1.5rem;
  background: #f9fafb08;
}

.services-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.services-hero-title {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.services-hero-subtitle {
  font-size: 0.95rem;
  max-width: 40rem;
  color: var(--text-muted);
}

/* Service blocks */

.service-block {
  padding: 2.75rem 0;
  background: #020617;
}

.service-block-alt {
  background: #030712;
}

.service-block-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.service-block-inner.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.service-copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-heading {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #f9fafb;
}

.service-copy p + p {
  margin-top: 0.65rem;
}

.service-cta-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-image {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(63, 63, 70, 0.9);
  box-shadow: var(--shadow-subtle);
  background: #020617;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Final CTA */

.services-final-cta {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(39, 39, 47, 0.9);
  background: radial-gradient(
      circle at top left,
      rgba(22, 94, 249, 0.16),
      transparent 60%
    ),
    #020617;
}

.services-final-cta-inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 63, 70, 0.95);
  padding: 1.5rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow-soft);
}

.services-final-cta-inner h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.services-final-cta-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.services-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Responsive for services */

@media (max-width: 960px) {
  .service-block-inner,
  .service-block-inner.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-image {
    max-width: 520px;
    margin: 0 auto;
  }

  .services-hero {
    padding-top: 2.25rem;
  }
}

@media (max-width: 720px) {
  .services-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-hero-subtitle {
    font-size: 0.9rem;
  }
}
