@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #E94b27;
  --ink: #000000;
  --canvas: #ffffff;
  --surface-dark: #000000;
  --on-dark: #ffffff;
  --divider-soft: rgba(122, 122, 122, 0.34);
  --grid-line-dark: rgba(255, 255, 255, 0.015);
  --grid-line-light: rgba(0, 0, 0, 0.04);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  
  /* Spacing */
  --spacing-sm: 12px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;
  --spacing-xxl: 120px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: var(--ink);
  color: var(--canvas);
}

body {
  font-family: var(--font-display);
  background-color: var(--surface-dark);
  color: var(--on-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Classes */
.h1-display {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.02em;
}

.h1-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--on-dark);
}

.text-light .h1-outline {
  -webkit-text-stroke: 1px var(--ink);
}

.h2-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
}

.body-large {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.text-light .body-large {
  color: rgba(0, 0, 0, 0.7);
}

/* Global Nav (Difference Blend) */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  pointer-events: none; /* Let clicks pass through except on interactive elements */
}

.logo, .burger {
  pointer-events: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.burger {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  outline: none;
  border: none;
  width: 40px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 250ms ease-out;
  will-change: transform;
}

.burger::before { transform: translateY(-4px); }
.burger::after { transform: translateY(4px); }
.burger.active::before { transform: translateY(0) rotate(45deg); }
.burger.active::after { transform: translateY(0) rotate(-45deg); }

/* Overlay Menu */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--surface-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: clip-path;
}

.overlay-menu.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.menu-links {
  list-style: none;
  text-align: center;
}

.menu-links li {
  margin: var(--spacing-md) 0;
}

.menu-links a {
  color: var(--on-dark);
  text-decoration: none;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  transition: letter-spacing 0.5s ease, color 0.3s ease;
}

.menu-links a:hover {
  letter-spacing: 8px;
  color: var(--primary);
}

/* Sections & Layout */
.section-full {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.content-boxed {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-image-wrapper {
  flex: 0.8;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  transform: translateX(55px);
}

.hero-image {
  width: 100%;
  max-width: 523px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 95% center;
  border-radius: 20px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.hero-image:hover {
  filter: grayscale(0%);
}

.text-light {
  background-color: var(--canvas);
  color: var(--ink);
}

/* Divider */
.svg-divider {
  width: 100%;
  height: 2px;
  margin: var(--spacing-lg) 0;
}
.svg-divider line {
  stroke: var(--divider-soft);
  stroke-width: 0.5px;
}

/* Interactive Grid Background */
.my-blocks-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* Positioned BEHIND section content */
  pointer-events: none; /* Let clicks pass through to buttons/links */
}

.my-blocks-container .blocks {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  align-content: flex-start;
}

.my-blocks-container .block {
  width: 45px;
  height: 45px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.my-blocks-container.dark .block {
  border: 0.5px solid var(--grid-line-dark);
}

.my-blocks-container.light .block {
  border: 0.5px solid var(--grid-line-light);
}

.my-blocks-container.dark .block.highlight,
.my-blocks-container.light .block.highlight {
  border: 1.5px solid var(--primary) !important;
  background-color: transparent !important;
  box-shadow: 0 0 10px rgba(233, 75, 39, 0.35);
}

/* Split Layout & Sections */
.section-white-rounded {
  background-color: var(--canvas);
  color: var(--ink);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  position: relative;
  z-index: 20;
  /* Remove top padding here so it doesn't push the sticky container down weirdly */
}

/* Pinning Section: Needs extra height so we can scroll while the content is pinned */
.pin-section {
  height: 140vh; 
}

/* The actual content that stays fixed on screen */
.pin-container {
  position: sticky;
  top: 26vh;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* Center: Text Reveal */
.scroll-text-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scroll-text-reveal {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.15); /* Initial light gray */
  text-align: justify;
  text-align-last: center;
}

#exploreBtnContainer {
  margin-top: 20px;
}

.scroll-word {
  transition: color 0.1s ease;
}

.scroll-word.active {
  color: var(--ink); /* Turns black */
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .scroll-reveal-layout {
    flex-direction: column;
  }
  .pin-section {
    height: auto;
    padding-bottom: var(--spacing-xxl);
  }
  .pin-container {
    position: relative;
    top: 0;
    height: auto;
  }
  /* Section 2 Mobile Adjustments */
  .pin-section {
    padding-bottom: 10vh;
  }
  .scroll-frame-container {
    height: 40vh;
    width: 100%;
    margin-top: -2vh;
    margin-bottom: -3vh;
  }
  .scroll-frame-mask {
    max-width: 312px;
    clip-path: inset(33% 33% 33% 33% round 20px); 
  }
  .scroll-text-container {
    padding-top: 0vh;
    margin-bottom: -5vh; /* Replaces invalid negative padding-bottom */
  }
  .scroll-text-reveal {
    font-size: 1.8rem;
    line-height: 1.1;
  }
  #exploreBtnContainer {
    margin-top: 2vh;
  }
}

.sticky-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.sticky-image:hover {
  filter: grayscale(0%);
}

/* Hero Section Fix */
#home {
  background-color: #000000;
  position: relative;
}

.hero-content {
  pointer-events: none;
}

.hero-content a, 
.hero-content button {
  pointer-events: auto;
}

/* Projects Section (Section 3 - Exact klmnko.de Vertical Image Swap & Typography) */
.section-projects-vertical {
  background-color: var(--canvas);
  color: var(--ink);
  position: relative;
  z-index: 20;
}

/* Section 3 Header & Main Title */
.section-3-header {
  text-align: center;
  padding: 90px 20px 30px 20px;
  position: relative;
  z-index: 20;
}

.section-3-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0d0e12;
}

.projects-scroll-parent {
  position: relative;
  background-color: var(--canvas);
  color: var(--ink);
  width: 100%;
}

.projects-sticky-viewport {
  position: relative;
  width: 100%;
}

.projects-klmnko-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 4vw 140px 4vw;
  position: relative;
  z-index: 10;
}

/* Left Side: Text Column & Typography */
.klmnko-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.klmnko-text-item {
  position: relative;
  width: 100%;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.klmnko-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.klmnko-category-tag {
  font-family: 'Plus Jakarta Sans', 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

.klmnko-tag-line {
  flex: 1;
  height: 1px;
  background: rgba(233, 75, 39, 0.25);
  display: block;
}

/* Title Font matching the reference screenshot exactly */
.klmnko-title {
  font-family: 'Plus Jakarta Sans', 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.klmnko-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 28px;
  max-width: 480px;
}

.klmnko-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.klmnko-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.bullet-arrow {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Right Side: Before-After Curtain Wipe Sticky Image Container */
.klmnko-wipe-img-container {
  flex: none;
  width: 100%;
  max-width: 650px;
  position: sticky;
  top: 15vh;
  aspect-ratio: 4 / 3;
  transform: translateX(20px);
}

.card-image-shadow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  /* Deep layered shadow underneath frame like klmnko.de */
  box-shadow: 0 35px 75px -15px rgba(0, 0, 0, 0.32), 0 18px 36px -18px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08);
  background: #0d0e12;
}

.klmnko-wipe-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0 0 0);
  transition: none !important; /* 100% continuous scroll scrub */
  will-change: clip-path;
}

.klmnko-wipe-card[data-step="0"] {
  z-index: 1;
  clip-path: inset(0 0 0 0) !important;
}

.klmnko-wipe-card[data-step="1"] {
  z-index: 2;
}

.klmnko-wipe-card[data-step="2"] {
  z-index: 3;
}

.klmnko-wipe-card[data-step="3"] {
  z-index: 4;
}

.klmnko-wipe-card[data-step="4"] {
  z-index: 5;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .projects-scroll-parent {
    height: auto;
  }

  .projects-sticky-viewport {
    position: relative;
    top: 0;
    height: auto;
    overflow: visible;
  }

  .projects-klmnko-layout {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .klmnko-text-col {
    min-height: auto;
  }

  .klmnko-text-item {
    position: relative;
    top: 0;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin-bottom: 40px;
  }

  .klmnko-wipe-img-container {
    height: auto;
    aspect-ratio: auto;
  }

  .card-image-shadow-wrapper {
    overflow: visible;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .klmnko-wipe-card {
    position: relative;
    inset: auto;
    clip-path: none !important;
    opacity: 1;
    margin-bottom: 30px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .klmnko-step-dots {
    display: none;
  }
}





@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
  }
  .split-col-sticky {
    position: relative;
    top: 0;
  }
  .global-nav {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  .section-projects {
    padding: 40px 20px 80px 20px;
  }
}

/* ==========================================================================
   SELECTED WORK SECTION (Trionn.com Style)
   ========================================================================== */
.selected-work-section {
  padding: 120px 0 160px 0;
  background-color: #08080a;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.selected-work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.selected-work-header .header-left {
  max-width: 650px;
}

.selected-work-header .section-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, #e63946);
  margin-bottom: 20px;
}

.selected-work-header .work-title-display {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.selected-work-header .highlight-text {
  color: #777777;
  font-weight: 400;
}

.selected-work-header .header-right {
  max-width: 380px;
  padding-bottom: 10px;
}

.selected-work-header .work-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #999999;
}

/* Asymmetric 2-Column Work Grid */
.trionn-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 48px;
}

.trionn-work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trionn-work-card.staggered {
  margin-top: 80px;
}

.work-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  overflow: hidden;
  background-color: #1a1a1f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.work-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-img-wrapper:hover .work-img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.work-img-wrapper:hover .work-hover-overlay {
  opacity: 1;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.work-img-wrapper:hover .view-btn {
  transform: translateY(0);
}

.view-btn svg {
  transition: transform 0.3s ease;
}

.view-btn:hover svg {
  transform: translate(3px, -3px);
}

.work-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-item-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.trionn-work-card:hover .work-item-title {
  color: var(--accent, #e63946);
}

.work-year {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
  font-family: monospace;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.trionn-work-card:hover .work-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ==========================================================================
   SECTION 4: HORIZONTAL WORK SCROLL (GSAP ScrollTrigger Pinned Track)
   ========================================================================== */
.pin-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--canvas, #ffffff);
  color: var(--ink, #0d0e12);
  z-index: 25;
}

.track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-left: 8vw;
  padding-right: 8vw;
  will-change: transform;
  position: relative;
  z-index: 2;
}

.card {
  flex-shrink: 0;
  width: 480px;
}

.card .thumb {
  width: 480px;
  height: 300px;
  border-radius: 8px;
  background: #f0f1f5;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .thumb img {
  transform: scale(1.04);
}

.card .thumb:hover {
  background: #e7e9f0;
  border-color: rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin: 18px 0 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a18;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6a6658;
  max-width: 400px;
}

/* Closing card at the end of the row */
.card.closing {
  width: 380px;
}

.card.closing h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a18;
}

.card.closing a {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a18;
  text-decoration: none;
  border-bottom: 1px solid #1a1a18;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.card.closing a:hover {
  opacity: 0.7;
}

/* Intro block — sits before the first project card in the same track */
.card.intro {
  width: 540px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card.intro h2 {
  margin: 0 0 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  color: #1a1a18;
  letter-spacing: -0.03em;
}

.card.intro a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a18;
  text-decoration: none;
  border-bottom: 1px solid #1a1a18;
  padding-bottom: 4px;
  width: fit-content;
  transition: opacity 0.3s ease;
}

.card.intro a:hover {
  opacity: 0.7;
}

.progress-track {
  position: absolute;
  bottom: 40px;
  left: 8vw;
  right: 8vw;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  z-index: 10;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #1a1a18;
  transition: width 0.05s linear;
}

@media (max-width: 768px) {
  .card {
    width: 320px;
  }
  .card .thumb {
    width: 320px;
    height: 210px;
  }
  .card.intro {
    width: 320px;
  }
  .track {
    gap: 32px;
  }
}

/* ==========================================================================
   EXPERIENCE & TECH STACK SECTION
   ========================================================================== */
.exp-tech-section {
  position: relative;
  background-color: #ffffff;
  color: #2a2820;
  padding: 100px 0;
  z-index: 20;
}

.exp-tech-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
  gap: 5vw;
}

/* Left: scrolling narrative text */
.exp-tech-section .text-col {
  width: 48%;
  padding-top: 8vh;
}

.exp-tech-section .text-block {
  min-height: 49vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2vw;
}

.exp-tech-section .text-block .eyebrow {
  font-size: 21px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e94b27;
  margin-bottom: 10px;
  font-weight: 700;
}

.exp-tech-section .text-block p {
  font-size: 19px;
  line-height: 1.8;
  color: #4a4638;
  margin: 0;
}

.exp-tech-section .text-block p b {
  color: #1a1a18;
  font-weight: 600;
}

/* Right: sticky browser mockup */
.exp-tech-section .mockup-col {
  width: 50%;
  position: relative;
}

.exp-tech-section .mockup-sticky {
  position: sticky;
  top: 22vh;
  height: fit-content;
}

.exp-tech-section .browser-card {
  background: #fbfaf7;
  border: 1px solid #eae7dc;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(20, 20, 15, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 630px;
  transform: translateX(30px);
}

.exp-tech-section .browser-topbar {
  padding: 12px 16px;
  border-bottom: 1px solid #eae7dc;
  font-size: 12px;
  color: #8c887b;
  text-align: center;
  background: #f3f1ea;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.exp-tech-section .browser-body {
  display: flex;
  min-height: 430px;
}

.exp-tech-section .tabs-col {
  width: 150px;
  flex-shrink: 0;
  border-right: 1px solid #eae7dc;
  padding: 18px 0;
}

.exp-tech-section .tab-item {
  padding: 12px 20px;
  font-size: 13px;
  color: #a8a494;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
  user-select: none;
}

.exp-tech-section .tab-item:hover {
  color: #1a1a18;
}

.exp-tech-section .tab-item.active {
  color: #1a1a18;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.03);
  border-left: 2px solid var(--primary, #E94b27);
}

.exp-tech-section .panel-col {
  flex: 1;
  padding: 24px 26px 40px;
  position: relative;
  max-height: 480px;
  overflow-y: auto;
}

.exp-tech-section .panel-col::-webkit-scrollbar {
  width: 5px;
}
.exp-tech-section .panel-col::-webkit-scrollbar-track {
  background: transparent;
}
.exp-tech-section .panel-col::-webkit-scrollbar-thumb {
  background: #d8d4c7;
  border-radius: 4px;
}

.exp-tech-section .panel {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  padding-bottom: 30px;
}

.exp-tech-section .panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* experience panel */
.exp-tech-section .exp-item {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.exp-tech-section .exp-company-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.exp-tech-section .exp-company-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.exp-tech-section .exp-role {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a18;
  margin: 0 0 2px;
}

.exp-tech-section .exp-meta {
  font-size: 11.5px;
  color: #8c887b;
  margin: 0 0 6px;
  font-weight: 500;
}

.exp-tech-section .exp-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: #4a4638;
  margin: 0 0 8px;
}

.exp-tech-section .exp-desc ul {
  margin: 4px 0 0;
  padding-left: 16px;
}

.exp-tech-section .exp-desc li {
  margin-bottom: 4px;
}

.exp-tech-section .exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.exp-tech-section .exp-tags span {
  font-size: 10.5px;
  font-weight: 500;
  color: #686457;
  background: #eae7dc;
  padding: 3px 8px;
  border-radius: 4px;
}

.exp-tech-section .panel h4.section-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary, #E94b27);
  margin: 22px 0 14px;
  font-weight: 700;
}

.exp-section-header {
  text-align: center;
  padding: 80px 20px 30px 20px;
  position: relative;
  z-index: 20;
}

.exp-category-tag {
  font-family: 'Plus Jakarta Sans', 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: var(--primary, #e94b27);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.exp-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0d0e12;
}

.exp-tech-section .browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eef3f8;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.topbar-tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.04);
  max-width: calc(100% - 36px);
  min-width: 0;
}

.linkedin-tab-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 3px;
}

.topbar-url {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* Close & Restore buttons are MOBILE ONLY */
.mockup-close-btn {
  display: none !important;
  background: transparent;
  border: none;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.mockup-close-btn:hover,
.mockup-close-btn:active {
  background: rgba(0, 0, 0, 0.08);
  color: #000000;
}

.restore-mockup-btn {
  display: none !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary, #e94b27);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(233, 75, 39, 0.35);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.restore-mockup-btn:hover {
  transform: translateY(-2px);
  background: #d43b18;
}

/* Section 4 Mobile inline images */
.klmnko-mobile-img {
  display: none;
}

.klmnko-mobile-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.exp-tech-section .panel h4.section-label:first-child {
  margin-top: 0;
}

/* tech stack panel */
.exp-tech-section .stack-group {
  margin-bottom: 20px;
}

.exp-tech-section .stack-group h5 {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary, #E94b27);
  margin: 0 0 10px;
  font-weight: 700;
}

.exp-tech-section .stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 12px;
}

.exp-tech-section .stack-grid span {
  font-size: 13px;
  font-weight: 500;
  color: #2a2820;
  background: #f0eee6;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
}

/* Mobile responsiveness (max-width: 900px) */
@media (max-width: 900px) {
  /* Section 2 Fix: No justification on mobile */
  .scroll-text-reveal {
    font-size: clamp(1.25rem, 4.8vw, 1.75rem) !important;
    line-height: 1.55 !important;
    text-align: center !important;
    text-align-last: center !important;
    letter-spacing: -0.01em !important;
    word-spacing: normal !important;
    hyphens: auto;
  }

  .exp-section-header {
    padding: 50px 16px 20px 16px;
  }

  .exp-tech-container {
    flex-direction: column;
    padding: 0 16px;
    gap: 24px;
  }

  /* Section 3 LinkedIn window floating at bottom on mobile */
  .exp-tech-section .mockup-col {
    position: fixed;
    bottom: 16px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    z-index: 1000;
    margin: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }

  .exp-tech-section .mockup-col.closed,
  .exp-tech-section .mockup-col.out-of-section {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
  }

  .exp-tech-section .mockup-sticky {
    position: relative;
    top: 0;
  }

  .exp-tech-section .browser-card {
    max-width: 100%;
    transform: none;
    background: rgba(251, 250, 247, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .exp-tech-section .browser-topbar {
    padding: 6px 10px;
    font-size: 11px;
    background: #eef5f8;
  }

  .mockup-close-btn {
    display: inline-flex !important;
  }

  .exp-tech-section .browser-body {
    min-height: 190px;
  }

  .exp-tech-section .tabs-col {
    width: 100px;
    padding: 8px 0;
  }

  .exp-tech-section .tab-item {
    padding: 8px 10px;
    font-size: 11px;
  }

  .exp-tech-section .panel-col {
    padding: 10px 12px 16px;
    max-height: 210px;
    overflow-y: auto;
  }

  .exp-tech-section .panel {
    top: 10px;
    left: 12px;
    right: 12px;
    padding-bottom: 12px;
  }

  .exp-tech-section .exp-item h3 {
    font-size: 13.5px;
  }

  .exp-tech-section .exp-item .role {
    font-size: 11px;
  }

  .exp-tech-section .exp-item .date {
    font-size: 10px;
  }

  .exp-tech-section .exp-bullets li {
    font-size: 10.5px;
    line-height: 1.4;
  }

  .exp-tech-section .exp-tags span {
    font-size: 9px;
    padding: 2px 5px;
  }

  .exp-tech-section .stack-group h5 {
    font-size: 9.5px;
    margin-bottom: 4px;
  }

  .exp-tech-section .stack-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 6px;
  }

  .exp-tech-section .stack-grid span {
    font-size: 10.5px;
    padding: 3px 5px;
  }

  .exp-tech-section .text-col {
    width: 100%;
    padding-top: 10px;
  }

  .exp-tech-section .text-block {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .exp-tech-section .text-block .eyebrow {
    font-size: 16px;
  }

  .exp-tech-section .text-block p {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }

  /* Section 4 Mobile: Put image above each section item */
  .klmnko-mobile-img {
    display: block;
    margin-bottom: 20px;
  }

  .klmnko-wipe-img-container {
    display: none !important;
  }
}

/* --- Video Section Styles --- */
.video-section {
  background: #ffffff;
  width: 100%;
  padding: 8vh 6vw;
}

.video-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a18;
  cursor: none;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* label top-left, on top of the video */
.video-label {
  position: absolute;
  top: 28px;
  left: 32px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

/* subtle darken so the label stays legible */
.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  z-index: 1;
  pointer-events: none;
}

/* cursor-following play/pause pill */
.play-pill {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a18;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.video-card.hovering .play-pill {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* caption block under the video */
.caption {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.caption-text h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a18;
}

.caption-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #7a766b;
  max-width: 520px;
}

.caption a {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a18;
  text-decoration: none;
  border-bottom: 1px solid #1a1a18;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.caption a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .video-card {
    cursor: pointer;
  }

  .video-label {
    font-size: 17px;
    top: 18px;
    left: 20px;
  }

  .caption {
    flex-direction: column;
    gap: 16px;
  }
}


@font-face {
  font-family: 'TestimonialFont';
  src: url('font/Oswald-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --- Testimonials Section --- */
.pin-wrapper {
  position: relative;
  height: 400vh;
  background: #ffffff;
  overflow: clip;
}

.testimonial-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: #ffffff;
}

.bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'TestimonialFont', sans-serif;
  font-size: 15.5vw;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a18;
  opacity: 1;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.card-stack {
  position: relative;
  width: 380px;
  height: 310px;
  z-index: 2;
}

.t-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f4f2;
  border: 1px solid #e8e5de;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(20, 20, 15, 0.06),
    0 16px 40px rgba(20, 20, 15, 0.1),
    0 32px 60px rgba(20, 20, 15, 0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Neue Montreal', 'DM Sans', 'Inter', -apple-system, sans-serif;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1),
              opacity 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.t-card .avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  flex-shrink: 0;
  border: 1px solid #dedad2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.t-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #5a5750;
  margin: 0 0 14px;
  font-family: 'Neue Montreal', 'DM Sans', 'Inter', -apple-system, sans-serif;
}

.t-card .author {
  font-size: 12px;
  font-weight: 600;
  color: #2a2a28;
  letter-spacing: 0.02em;
}

.t-read-all {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8d5c8;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  color: #1a1a18;
  text-decoration: none;
  background: #ffffff;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.t-read-all:hover {
  background: #f5f2ea;
  border-color: #b8b4a8;
}

@media (max-width: 480px) {
  .card-stack {
    width: 88vw;
    height: 280px;
  }
}

/* --- Floating Contact Widget (side-tab) --- */
.contact-widget {
  position: fixed;
  bottom: 100px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  border-radius: 999px 0 0 999px;
  background: #2a2a28;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  width: 44px;
  padding: 0;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

.contact-btn .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-btn .icon svg {
  width: 20px;
  height: 20px;
}

.contact-btn .label {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease 0.05s;
  padding-right: 18px;
}

.contact-widget:hover .contact-btn {
  width: 152px;
}

.contact-widget:hover .contact-btn .label {
  opacity: 1;
}

.contact-btn.whatsapp:hover {
  background: #1a1a18;
}

/* --- Floating Bottom Jump Navigation (Glassmorphism) --- */
.floating-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 6px;
  border-radius: 999px;

  /* Glass Dark (Transparent frosted black for white background sections) */
  background: rgba(18, 18, 20, 0.48);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);

  transition: background-color 0.4s cubic-bezier(0.33, 1, 0.68, 1),
              border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1),
              box-shadow 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Glass White Theme (Transparent frosted white for dark Hero section) */
.floating-nav.theme-light {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.floating-nav-item {
  position: relative;
  z-index: 2;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', 'Neue Montreal', 'DM Sans', 'Inter', -apple-system, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.3s ease;
  white-space: nowrap;
  user-select: none;
}

.floating-nav.theme-light .floating-nav-item {
  color: rgba(18, 18, 20, 0.85);
}

.floating-nav-item:hover {
  color: #ffffff;
}

.floating-nav.theme-light .floating-nav-item:hover {
  color: #000000;
}

/* Active Item Text Colors */
.floating-nav-item.active {
  color: #121214 !important;
  font-weight: 600;
}

.floating-nav.theme-light .floating-nav-item.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* Sliding Active Pill Background */
.floating-nav-pill-bg {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: 999px;
  background: #ffffff;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.33, 1, 0.68, 1),
              width 0.38s cubic-bezier(0.33, 1, 0.68, 1),
              background-color 0.4s ease,
              box-shadow 0.4s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.floating-nav.theme-light .floating-nav-pill-bg {
  background: #121214;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

@media (max-width: 600px) {
  .floating-nav {
    bottom: 16px;
    padding: 4px;
    gap: 1px;
    max-width: 95vw;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .floating-nav::-webkit-scrollbar {
    display: none;
  }
  .floating-nav-item {
    padding: 6px 11px;
    font-size: 11.5px;
  }
  .floating-nav-pill-bg {
    top: 4px;
    height: calc(100% - 8px);
  }
}

/* --- Site Footer Section --- */
footer.site-footer {
  background: #0d0d0b;
  padding-top: 60px;
  padding-bottom: 70px;
  border-radius: 36px 36px 0 0;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.cta-block {
  display: block;
  padding: 40px 6vw 30px;
  text-align: center;
}

.cta-block h2 {
  margin: 0;
  font-family: 'TestimonialFont', 'Syne', sans-serif !important;
  font-size: clamp(44px, 8vw, 105px) !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: #ffffff;
}

.cta-block h2 .accent {
  color: #e8412c;
}

.cta-block h2 .cursor {
  display: inline-block;
  width: 0.4ch;
  margin-left: 4px;
  animation: blink 0.9s step-end infinite;
  color: #e8412c;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Floating social icons row */
.social-float-row {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 40px 50px;
  flex-wrap: wrap;
}

.social-icon {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  border-radius: 50% !important;
  background: #1c1c19 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: float 4.5s ease-in-out infinite !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.social-icon:nth-child(1) { animation-delay: 0s !important; }
.social-icon:nth-child(2) { animation-delay: 0.7s !important; }
.social-icon:nth-child(3) { animation-delay: 1.4s !important; }
.social-icon:nth-child(4) { animation-delay: 2.1s !important; }
.social-icon:nth-child(5) { animation-delay: 2.8s !important; }
.social-icon:nth-child(6) { animation-delay: 3.5s !important; }

.social-icon:hover {
  background: #2a2a24 !important;
  box-shadow: 0 16px 40px rgba(232, 65, 44, 0.35) !important;
}

.social-icon svg {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@media (max-width: 600px) {
  .social-float-row {
    gap: 14px;
    padding: 20px 20px 40px;
  }
  .social-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
  }
  .social-icon svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
  }
}






