/* ===== WHAT WE DO SECTION ===== */
.what-we-do-section {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%),
    radial-gradient(circle at 20% 80%, rgba(29, 185, 84, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
  color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.what-we-do-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, transparent 0%, rgba(13, 13, 13, 0.005) 0.5%, rgba(13, 13, 13, 0.02) 2%, rgba(13, 13, 13, 0.05) 5%, rgba(13, 13, 13, 0.1) 10%, rgba(13, 13, 13, 0.2) 20%, rgba(13, 13, 13, 0.35) 35%, rgba(13, 13, 13, 0.55) 55%, rgba(13, 13, 13, 0.75) 75%, rgba(13, 13, 13, 0.9) 90%, rgba(0, 255, 0, 0.2) 95%, rgba(0, 255, 0, 0.6) 100%);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 1;
  filter: blur(0.15px);
}
.what-we-do-container {
  max-width: max-content;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Header */
.what-we-do-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(29, 185, 84, 0.05) 100%);
  color: #1DB954;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  border: 1px solid rgba(29, 185, 84, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.1);
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.2);
  transform: translateY(-2px);
}
.what-we-do-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #f0f0f0 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Services Label */
.services-label {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.services-text {
  display: inline-block;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(29, 185, 84, 0.05) 100%);
  color: #1DB954;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(29, 185, 84, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.1), transparent);
  transition: left 0.5s ease;
}

.services-text:hover {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.2);
  transform: translateY(-2px);
}

.services-text:hover::before {
  left: 100%;
}

/* Vinyl Records Grid */
.what-we-do-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  margin-bottom: 80px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Vinyl Record Card */
.vinyl-record {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vinyl-record:hover {
  transform: translateY(-10px);
}

/* Vinyl Disc */
.vinyl-disc {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vinyl-disc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: vinylRotate 8s linear infinite;
}

.vinyl-record:hover .vinyl-disc {
  transform: rotate(360deg);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(29, 185, 84, 0.3);
}

@keyframes vinylRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Vinyl Spin Animation on Click */
.vinyl-disc.is-spinning {
  animation: vinylSpin 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes vinylSpin {
  0%   { transform: rotate(0deg); }
  80%  { transform: rotate(720deg) scale(1.08); }
  90%  { transform: rotate(700deg) scale(0.98); }
  100% { transform: rotate(720deg) scale(1); }
}

/* Vinyl Center & Label */
.vinyl-center {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1DB954, #18a84a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 
    0 4px 16px rgba(29, 185, 84, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.vinyl-label {
  color: #ffffff;
  font-size: 2.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.vinyl-record:hover .vinyl-label {
  transform: scale(1.1);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Vinyl Grooves */
.vinyl-grooves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.05) 1deg,
    transparent 2deg
  );
  animation: grooveRotate 12s linear infinite;
  z-index: 1;
  cursor: pointer;
}

@keyframes grooveRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Vinyl Sleeve */
.vinyl-sleeve {
  width: 360px;
  height: 360px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 26px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.vinyl-record:hover .vinyl-sleeve {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(29, 185, 84, 0.2);
}


/* Sleeve Front */
.sleeve-front {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Album Image */
.album-image {
  position: relative;
  width: 100%;
  height: 85%;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  filter: brightness(0.8) contrast(1.1);
  cursor: default;
}

.vinyl-record:hover .sleeve-front {
  background: linear-gradient(145deg, #333333, #222222);
}

.vinyl-record:hover .album-image img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

/* Album Info */
.album-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: min-content;
}

.album-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.album-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1DB954;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.album-tracks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #cccccc;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.vinyl-record:hover .track {
  color: #ffffff;
  border-left-color: #1DB954;
}

/* Sleeve Back */
.sleeve-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: rgba(30, 30, 30, 0.10);
  border-radius: 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18), 0 1.5px 8px 0 rgba(29, 185, 84, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: 
    background 0.4s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.4s cubic-bezier(.4, 0, .2, 1),
    border 0.4s cubic-bezier(.4, 0, .2, 1),
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: rotateY(90deg);
}

.sleeve-back::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: repeating-radial-gradient(
    circle at 60% 40%, 
    rgba(255, 255, 255, 0.08) 0px, 
    transparent 18px, 
    rgba(255, 255, 255, 0.05) 36px
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.sleeve-back::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  width: 60%;
  height: 40%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle, 
    rgba(29, 185, 84, 0.10) 0%, 
    transparent 80%
  );
  transform: translate(-50%, -50%);
  z-index: 1;
}

.sleeve-back > * {
  position: relative;
  z-index: 2;
}

.vinyl-record:hover .sleeve-back {
  opacity: 1;
  transform: rotateY(0deg);
  background: rgba(30, 30, 30, 0.18);
  border: 1.5px solid rgba(29, 185, 84, 0.22);
  box-shadow: 0 12px 40px 0 rgba(29, 185, 84, 0.10), 0 2px 12px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.album-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.vinyl-record:hover .album-description {
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.album-credits {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credit {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #1DB954;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}



/* Service Features - Instagram Style Hashtags */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
  display: inline-block;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.08) 0%, rgba(29, 185, 84, 0.03) 100%);
  color: #1DB954;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(29, 185, 84, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29, 185, 84, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature:hover {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12) 0%, rgba(29, 185, 84, 0.06) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 4px 12px rgba(29, 185, 84, 0.2),
    0 0 0 1px rgba(29, 185, 84, 0.3);
  color: #20d463;
}

.feature:hover::before {
  left: 100%;
}

/* Post Content */
.post-content {
  padding: 16px;
  background: #ffffff;
}

.post-likes {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #262626;
  margin-bottom: 8px;
}

.post-caption {
  margin-bottom: 12px;
  line-height: 1.4;
}

.caption-username {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #262626;
  margin-right: 8px;
}

.caption-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #262626;
  line-height: 1.4;
}

.post-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.hashtag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #00376b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hashtag:hover {
  color: #1DB954;
}

.post-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #8e8e8e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.what-we-do-icon {
  font-size: 1.6rem;
  color: #1DB954;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  position: relative;
}

.what-we-do-icon iconify-icon {
  width: 1.6rem;
  height: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-do-item:hover .what-we-do-icon {
  color: #f39c12;
  transform: scale(1.05);
}

.what-we-do-item:hover .what-we-do-icon iconify-icon {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transform: scale(1.05);
}

/* Assign local background images */
.what-we-do-item.item-1 {
  background-image: url('/images/1.webp');
}
.what-we-do-item.item-2 {
  background-image: url('/images/3.webp');
}
.what-we-do-item.item-3 {
  background-image: url('/images/2.webp');
}

/* Blur overlay */
.what-we-do-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  filter: blur(0) brightness(1);
  transition: filter 0.3s ease;
  z-index: 1;
}
.what-we-do-item:hover::before {
  filter: blur(2px) brightness(0.8);
}

/* Enhanced item content positioning */
/* .item-content {
  position: relative;
  z-index: 2;
  padding: 35px 30px 30px;
} */

/* Title styling improvements */
.item-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin: 0 0 18px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.what-we-do-item:hover .item-content h3 {
  color: #1DB954;
  text-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
  transform: translateY(-1px);
}

/* Hide details by default */
.item-content p {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Show details on hover */
.what-we-do-item:hover .item-content p {
  opacity: 1;
  transform: translateY(0);
  color: #f0f0f0;
}

/* Hover lift effect - more subtle */
.what-we-do-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: #1DB954;
}

/* Responsive */
@media (max-width: 1024px) {
  .what-we-do-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1200px;
  }
  
  .vinyl-disc {
    width: 260px;
    height: 260px;
  }
  
  .vinyl-sleeve {
    width: 320px;
    height: 320px;
  }
  
  .vinyl-center {
    width: 90px;
    height: 90px;
  }
  
  .vinyl-label {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-label {
    margin-bottom: 30px;
  }
  
  .services-text {
    padding: 10px 24px;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
  }
  
  .what-we-do-items {
    grid-template-columns: 1fr;
    gap: 80px;
    margin-bottom: 60px;
    max-width: 500px;
  }
  
  .what-we-do-section {
    padding: 80px 0;
  }
  
  .vinyl-record {
    gap: 25px;
  }
  
  .vinyl-disc {
    width: 240px;
    height: 240px;
  }
  
  .vinyl-center {
    width: 80px;
    height: 80px;
  }
  
  .vinyl-label {
    font-size: 1.8rem;
  }
  
  .vinyl-sleeve {
    width: 280px;
    height: 280px;
  }
  
  .album-image {
    height: 80%;
  }
  
  .album-info {
    padding: 15px;
    height: fit-content;
    min-height: 50px;
  }
  
  .album-title {
    font-size: 1.2rem;
  }
  
  .album-subtitle {
    font-size: 0.8rem;
  }
  
  .track {
    font-size: 0.75rem;
  }
  
  .album-description {
    font-size: 0.8rem;
  }
  
  .credit {
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .what-we-do-section {
    padding: 60px 0;
  }
  /* .item-content {
    padding: 25px 20px 25px;
  } */
  .what-we-do-header {
    margin-bottom: 50px;
  }
}

