  :root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --dark: #080808;
      --surface: #111111;
      --surface-2: #181818;
      --border: rgba(201,168,76,0.18);
      --text-muted: #6b6b6b;
      --t-gold:#fdd947;
      --t-gold-dim:rgba(253,217,71,.12);
      --t-gold-border:rgba(253,217,71,.25);
      --t-teal:#00cc99;
      --t-muted:rgba(255,255,255,.5);
      --t-card-bg:#141414;
      --t-card-border:rgba(255,255,255,.07);
    }
  
    .review-slide{
    transform: scale(.82);
    opacity: .28;
    filter: blur(4px);
    transition: all .6s cubic-bezier(.22,1,.36,1);
  }

  .review-slide.active{
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }

  .review-slide.active > div{
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
  }

  @media(max-width:1024px){

    .review-slide{
      transform: scale(1);
      opacity: 1;
      filter: blur(0px);
    }

  }


  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'DM Sans', sans-serif; background: #0a0a0a; color: #f0f0f0; overflow-x: hidden; }

  /* Noise texture overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: #0a0a0a; }
  ::-webkit-scrollbar-thumb { background: #fdd947; border-radius: 2px; }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes slideX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253,217,71,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(253,217,71,0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  @keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes slideDots {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .animate-fade-up { animation: fadeUp 0.8s ease forwards; }
  .animate-fade-in { animation: fadeIn 1s ease forwards; }
  .float { animation: float 4s ease-in-out infinite; }
 
  /* Nav */
  .nav-blur {  
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(5px); 
  }

  /* Hero */
  .hero-bg {
    /* background: linear-gradient(135deg, #0a0a0a 0%, #000000 40%, #000000 100%); */
    position: relative;
    overflow: hidden;
    background-image: url('/assets/images/fotovalley-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;   
  }

  .hero-grid {
    position: absolute; inset: 0;
    /* background-image: linear-gradient(rgba(253,217,71,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(253,217,71,0.03) 1px, transparent 1px); */
    background-size: 60px 60px;
  }

  /* Gold shimmer text */
  .shimmer-text {
    background: linear-gradient(90deg, #fdd947, #fff9d6, #fdd947, #f0c020, #fdd947);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
  }

  /* Nav */
  nav { backdrop-filter: blur(20px); background: rgba(10,10,10,0.9); }

  .nav-link {
    position: relative; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: #aaa; transition: color 0.3s;
  }

  .nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: #fdd947; transition: width 0.3s;
  }

  .nav-link:hover { color: #fdd947; }
  .nav-link:hover::after { width: 100%; }

  /* Service slider */
  .slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .service-card {
    min-width: calc(50% - 0.75rem);
    flex-shrink: 0;
    border: 1px solid rgba(253, 217, 71, 0.15);
    background: linear-gradient(0deg, rgb(99 138 103 / 37%), #2725214d);
    transition: all 0.4s;
    filter: drop-shadow(2px 4px 6px black);
  }

  /* Stats */
  .stat-card {
    border: 1px solid rgba(253, 217, 71, 0.15);
    background: linear-gradient(135deg, rgb(0 0 0 / 37%), rgb(0 0 0 / 72%));
    transition: all 0.4s;
    filter: drop-shadow(2px 4px 6px black);
  }

  .stat-card:hover {
    border-color: rgba(253,217,71,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(253,217,71,0.1);
  }

  /* Why cards */
  .why-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s;
    position: relative; overflow: hidden;
  }

  .why-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(253,217,71,0.05), transparent);
    opacity: 0; transition: opacity 0.4s;
  }

  .why-card:hover { border-color: rgba(0,204,153,0.3); transform: translateY(-6px); }

  .why-card:hover::before { opacity: 1; }

  /* CTA button */
  .btn-gold {
    background: #fdd947; color: #0a0a0a; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem;
    padding: 14px 32px; border: none; cursor: pointer;
    transition: all 0.3s; position: relative; overflow: hidden;
  }

  .btn-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
  }

  .btn-gold:hover { background: #ffe066; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(253,217,71,0.4); }
  
  .btn-gold:hover::after { left: 100%; }

  .btn-outline {
    background: transparent; color: #fdd947; border: 1px solid #fdd947;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem;
    padding: 14px 32px; cursor: pointer; transition: all 0.3s;
  }
  .btn-outline:hover { background: #fdd947; color: #0a0a0a; }

  .btn-teal {
    background: #00cc99; color: #0a0a0a; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem;
    padding: 14px 32px; border: none; cursor: pointer;
    transition: all 0.3s;
  }
  .btn-teal:hover { background: #00e5ac; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,204,153,0.4); }

  /* Image cards */
  .img-card { position: relative; overflow: hidden; }

  .img-card img { transition: transform 0.6s; width: 100%; height: 100%; object-fit: cover; }

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

  .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  }

  /* Marquee */
  .marquee-inner { display: flex; gap: 0; animation: slideX 30s linear infinite; width: max-content; }

  .marquee-inner:hover { animation-play-state: paused; }

  /* Testimonial */
  .testimonial-card {
    background: #141414; border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #fdd947;
  }

  /* Section label */
  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: #00cc99; font-weight: 600;
  }

  .section-label::before {
    content: ''; display: block; width: 20px; height: 1px; background: #00cc99;
  }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(50px); transition: all 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Footer */
  footer { border-top: 1px solid rgba(255,255,255,0.06); }

  /* Mobile nav */
  .mobile-menu { display: none; }

  @media (max-width: 768px) {
    .service-card { min-width: calc(85% - 0.75rem); }
    .desktop-nav { display: none !important; }
    .mobile-menu { display: block; }
    .compare-container { height: 300px;}

  }

  .bg-stats{
    background-image: url('/assets/images/bg-laptop.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .testimonial-slide{
    transition: all 0.5s ease;
    transform: scale(0.86);
    opacity: 0.35;
    filter: blur(3px);
  }

  .testimonial-slide.active{
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }

  .testimonial-slide.active .testimonial-card{
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  }

  @media(max-width:1024px){
    .testimonial-slide{
      transform: scale(1);
      filter: blur(0);
      opacity: 1;
    }
  }

   /* Hero bg pattern */
  .hero-dots {
    background-image: radial-gradient(circle, #fdd94791 1.5px, transparent 1.5px);
    background-size: 55px 55px;
  }
  .badge-teal { background: #ccf5eb; color: #006b51; }

  .rounded-full {
    border-radius: 9999px;
  }
  .bg-brand-teal {
    --tw-bg-opacity: 1;
    background-color: rgb(0 204 153 / var(--tw-bg-opacity, 1));
  }
  .shadow-yellow {
    --tw-shadow: 0 8px 32px rgba(253, 217, 71, 0.3);
    --tw-shadow-colored: 0 8px 32px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .bg-brand-yellow {
    --tw-bg-opacity: 1;
    background-color: rgb(253 217 71 / var(--tw-bg-opacity, 1));
  }

  /* SERVICE TABS */
  .tab-btn {
    position:relative; 
    cursor:pointer; 
    transition:.3s; 
  }

  .tab-btn:hover {
    position:relative; 
    cursor:pointer; 
    transition:.3s; 
  }


  .tab-btn.active { border:#00aa80; }
  .tab-btn.active .border-2 {
    color: #fdd947;
    border: 2px solid #fdd947;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tab-btn.active .tab-icon-box {
    color: #c9a84c;
    border: 1px solid #c9a84c;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.4);
  }

  .active .tab-icon-box span {
    color: #c9a84c;
  }
  .tab-btn.active {
    color: #c9a84c;
    border: 1px solid #c9a84c;
    background-color: #1a3931;
  }  

  .tab-btn.active::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:3px; background:var(--yellow); border-radius:2px; }
  .tab-content { display:none; }
  .tab-content.active { display:flex; }


.abt-hero-bg { 
    transition: transform 8s ease; 
    background:url('/assets/images/bg-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.abt-tab-btn { border-bottom: 3px solid transparent; }
.abt-tab-btn.active { border-bottom-color: #c9a84c; color: #111; font-weight: 600; }
.abt-tab-panel { display: none; }
.abt-tab-panel.active { display: flex; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.abt-gold-rule { width:40px; height:2px; background:#c9a84c; margin: 0.5rem auto 2.5rem; }
.abt-cta-overlay::before { content:''; position:absolute; inset:0; background:rgba(0, 0, 0, 0.603); }
.abt-testi-overlay::before { content:''; position:absolute; inset:0; background:rgba(247,245,240,0.94); }
.abt-value-card img { transition: transform 0.5s ease; }
.abt-value-card:hover img { transform: scale(1.06); }
.abt-why-card { border: 2px solid #e5e7eb; transition: border-color 0.25s, box-shadow 0.25s; }
.abt-why-card:hover { border-top-color: #c9a84c; box-shadow: 0 8px 24px rgba(0,0,0,0.07); }


    /* Sub-item row */
    .sub-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(201,168,76,0.07);
      transition: all 0.2s ease;
    }
    .sub-item:last-child { border-bottom: none; }
    .sub-item:hover { padding-left: 0.5rem; }
    .sub-item:hover .sub-dot { background: var(--gold); }
    .sub-item:hover .sub-label { color: var(--gold-light); }

    .sub-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.5;
      flex-shrink: 0;
      transition: all 0.2s;
    }
    .sub-num {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      color: var(--text-muted);
      flex-shrink: 0;
      width: 1.2rem;
    }
    .sub-label {
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: #c0b89a;
      transition: color 0.2s;
    }
    /* CTA button */
    .sr-btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.5rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    .sr-btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }
    .sr-btn-gold:hover::before { transform: scaleX(1); }
    .sr-btn-gold span { position: relative; z-index: 1; }
    .sr-btn-gold:hover span { color: #080808; }
    .sr-btn-gold:hover { color: #080808; }

.ser-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}
/* Horizontal rule with label */
    .sr-section-label {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .sr-section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border: 1px solid var(--border);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.accent-sq {
    position: absolute;
    background: var(--gold);
    opacity: 0.08;
    border-radius: 10px;
}
.icon-teal {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
}
.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: transform 0.4s;
}
.icon-gold {
    background: rgba(201, 149, 42, 0.1);
    border: 1px solid rgba(201, 149, 42, 0.2);
}

/* who we work slider */
 .fv-client-slider-section {
    font-family: Inter, sans-serif;
  }

  .fv-slider-wrapper {
    position: relative;
    width: 100%;
  }

  /* FIX 3: Added width rule and flex-basis to force layout engine compliance */
  .fv-slide {
    flex-shrink: 0;
    width: 100%;
    flex-basis: 100%;
  }

  .fv-slide img {
    transition: transform 0.8s ease;
  }

  .fv-slide:hover img {
    transform: scale(1.04);
  }

  .fv-slide ::-webkit-scrollbar {
    width: 6px;
  }

  .fv-slide ::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
  }

  @media(max-width:1024px) {
    .fv-slide .grid {
      grid-template-columns: 1fr;
    }
  }

 .tl-card {
    background: var(--t-card-bg);
    border: 1px solid var(--t-card-border);
    border-radius: 16px;
    transition: border-color .35s, background .35s, transform .35s;
}
.tl-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #fdd947 20%, #fdd947 80%, transparent);
    transform: translateX(-50%);
}
.tl-card:hover {
    border-color: rgba(253, 217, 71, .35);
    background: #1c1c1c;
    transform: translateY(-3px);
}
.tl-rule {
    height: 1px;
    background: linear-gradient(to right, transparent, #fdd947, transparent);
}

.tl-node {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid #fdd947;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: tl-pulse 2.8s ease-out infinite;
}
.tl-node-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fdd947;
}
.tl-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(253, 217, 71, .07);
    border: 1px solid rgba(253, 217, 71, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tl-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: rgba(253, 217, 71, .18);
    letter-spacing: 2px;
}
.tl-spine-mobile {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #fdd947 10%, #fdd947 90%, transparent);
}
.tl-node-sm {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid #fdd947;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tl-pulse 2.8s ease-out infinite;
}
.tl-node-sm-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fdd947;
}
.tl-sub {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #00cc99;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.compare-container{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:var(--border-radius-lg);
  border:0.5px solid var(--color-border-tertiary);
  cursor:col-resize;
  user-select:none;
  touch-action:none;
  aspect-ratio:3;
  border-radius: 10px;
}
.img-before,.img-after{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}
.img-after{clip-path:inset(0 50% 0 0)}
.divider{position:absolute;top:0;left:50%;width:2px;height:100%;background:#fff;transform:translateX(-50%);pointer-events:none;box-shadow:0 0 6px rgba(0,0,0,0.35)}
.handle{position:absolute;top:50%;left:50%;width:40px;height:40px;border-radius:50%;background:#fff;border:2px solid rgba(255,255,255,0.9);transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,0.25);pointer-events:none}
.handle svg{width:20px;height:20px;fill:none;stroke:#555;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.comparelabels{display:flex;justify-content:space-between;margin-top:10px;padding:0 4px; width: 100%;}
.comparelabel{
  font-size:13px;
  color:var(--color-text-secondary);
  font-weight:500;
  letter-spacing:0.03em;
  background-color: #0a0a0a;
  padding: 5px 10px;
  border-radius: 7px;
}

/*-- VR Section --*/

.vr-section{
    padding:80px 20px;
}

.vr-container{
    max-width:1200px;
    margin:auto;
}

.vr-heading{
    text-align:center;
    color:#fff;
    margin-bottom:30px;
}

.vr-heading h2{
    font-size:3rem;
    margin-bottom:10px;
}

.vr-heading p{
    color:#cbd5e1;
}

#viewer{
    width:100%;
    height:600px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}
.psv-navbar.psv--capture-event.psv-navbar--open {
    display: none;
}

button.group:hover span{
  color: var(--gold);
}

/* WordPress blog post body cleanup */
.post-body section,
.post-body .container,
.post-body .row,
.post-body .vc_column_container,
.post-body .wpb_column,
.post-body .vc_column-inner-wrapper,
.post-body .vc-column-innner-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
.post-body a { color: #fdd947; }
.post-body a:hover { color: #fff; }