* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #facc15;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffd900ce;
  box-shadow: 0 0 10px #ffd70090;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #facc15 #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: 'inter', sans-serif;
  font-weight: 600;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.navbar {
  background-color: rgb(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  max-width: 4050px;
  z-index: 10;
  position: sticky;
  top: 0;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 40px;
}

.logo-text {
  color: #FFF;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0rem;
  transition: all 0.3s ease-in-out;
  margin: 0;
}

.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 450;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: color 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.nav-links li a:hover {
  color: #ffd700;
  
}

.btn-call {
  background-color: #facc15;
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background-color: #ffd700;
  color: black;
  box-shadow: 0 0 10px #ffd70090;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.hamburger span {
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  transform-origin: center;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .hamburger.active {
    background: rgba(250, 204, 21, 0.1);
    border-color: rgba(250, 204, 21, 0.3);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #facc15;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #facc15;
  }

  .nav-links {
    display: flex;
    width: 150%;
    flex-direction: column;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-links.active {
    max-height: 300px;
    opacity: 1;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links li:nth-child(3) { transition-delay: 0.3s; }

  .nav-links li a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    background: rgba(250, 204, 21, 0.1);
    color: #facc15;
    transform: translateX(5px);
  }

  .btn-call {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1rem 0 0 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .nav-links.active + .btn-call {
    opacity: 1;
    max-height: 50px;
    margin-top: 1rem;
  }
}

.hero-text {
  max-width: 865px;
  margin: 5px auto 2rem;
  text-align: center;
  padding: 1rem;
  color: #fff;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  animation: blur-reveal 0.8s forwards;
  margin: 0 0px;
}

@keyframes blur-reveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.hero-word:nth-child(1) { animation-delay: 0.1s; }
.hero-word:nth-child(2) { animation-delay: 0.2s; }
.hero-word:nth-child(3) { animation-delay: 0.3s; }
.hero-word:nth-child(4) { animation-delay: 0.4s; }
.hero-word:nth-child(5) { animation-delay: 0.5s; }
.hero-word:nth-child(6) { animation-delay: 0.6s; }
.hero-word:nth-child(7) { animation-delay: 0.7s; }
.hero-word:nth-child(8) { animation-delay: 0.8s; }
.hero-word:nth-child(9) { animation-delay: 0.9s; }
.hero-word:nth-child(10) { animation-delay: 1.0s; }
.hero-word:nth-child(11) { animation-delay: 1.1s; }
.hero-word:nth-child(12) { animation-delay: 1.2s; }
.hero-word:nth-child(13) { animation-delay: 1.3s; }
.hero-word:nth-child(14) { animation-delay: 1.4s; }
.hero-word:nth-child(15) { animation-delay: 1.5s; }
.hero-word:nth-child(16) { animation-delay: 1.6s; }
.hero-word:nth-child(17) { animation-delay: 1.7s; }
.hero-word:nth-child(18) { animation-delay: 1.8s; }
.hero-word:nth-child(19) { animation-delay: 1.9s; }
.hero-word:nth-child(20) { animation-delay: 2.0s; }
.hero-word:nth-child(21) { animation-delay: 2.1s; }
.hero-word:nth-child(22) { animation-delay: 2.2s; }
.hero-word:nth-child(23) { animation-delay: 2.3s; }

.hero-text h1 {
  font-size:  clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.3;
  font-weight: 900;
  margin-top: 4rem;
}

.hero-text .highlight-white {
  color: #fff;
}

.hero-text p {
  font-family: 'inter', sans-serif;
  font-weight: 650;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #bbb;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.translucent-btn {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, border 0.3s ease;
  backdrop-filter: blur(8px);
  animation: righttoleft 0.8s ease forwards;
}

@keyframes righttoleft {
  from {
    opacity: 0;
    transform: translatex(-50px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}

.translucent-btn:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-video {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video video {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
}

.framer-1y9c979 {
  background: conic-gradient(
    from 0deg at 50% 50%,
  #ffff3f   0deg,     
  #fff200  36deg,     
  #ffe600  72deg,     
  #ffd300 108deg,     
  #ffc300 144deg,     
  #ffb300 198deg,     
  #ffcc33 252deg,     
  #ffee55 288deg,     
  #f4f400 324deg,    
  #ffff3f 360deg      
  );
  border-radius: 50%;
  flex: none;
  inset: 0;
  opacity: 1.8;
  overflow: hidden;
  position: absolute;
  will-change: transform;
  animation: spinReverse 8s linear infinite;
}


.framer-1xt2ce2,
.framer-i022rz,
.framer-sf9apm {
  position: absolute;
  left: 50%;
  margin-top: 490px;
  transform: translate(-50%, -50%);
  border-radius: 500px;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.framer-1xt2ce2 {
  width: 300px;
  height: 300px;
  filter: blur(70px);
}

.framer-i022rz {
  width: 300px;
  height: 300px;
  filter: blur(32px);
}

.framer-sf9apm {
  width: 300px;
  height: 300px;
  filter: blur(32px);
  mix-blend-mode: overlay;
}

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

.framer-1y9c979 {
  animation: spinReverse 8s linear infinite;
}

.shortform-section,
.work-section {
  padding: 6rem 1rem;
  position: relative;
}

.shortform-section {
  padding-bottom: 2rem;
}

.shortform-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 0.49rem;
}

.slider{
  width: 100%;
  height: var(--height); 
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10% 90%,
    transparent
  );
  position: relative; 
  z-index: 0;
}


.slider .list{
  display: flex; 
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative; 
  padding: 0; 
}


.slider .list .item{
  width: var(--width);
  position: absolute; 
  left: 100%; 
  animation: autoRun 20s linear infinite;
  animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) - 20s)!important; 
}

@keyframes autoRun{
  from{
    left: 100%;
  }to{
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}

.slider .item:hover{
    filter: grayscale(0);
}

.work-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; 
  padding: 1rem;
}

.work-section {
  z-index: 1;
}

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

.work-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.work-toggle {
  display: flex;
  border-radius: 12px;
  background-color: #121212;
  box-shadow: 0 0 0 2px #1e1e1e;
  position: relative;
  overflow: hidden;
  margin: 0 auto 2rem auto;
  animation: fadeInUp 1s ease forwards;
  width: fit-content;
  justify-content: center;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.work-toggle .highlight {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 8px);
  background-color: #facc15;
  border-radius: 10px;
  left: 4px;
  z-index: 0;
  transition: all 0.35s ease;
}

.work-toggle[data-active="longform"] .highlight {
  left: calc(50% + 4px);
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

.toggle-btn {
  background: transparent;
  color: #b0b8c5;
  border: none;
  outline: none;
  font-family: 'DM sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
}

.toggle-btn:hover {
  transform: scale(1.02);
}

.toggle-btn .icon {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.toggle-btn.active {
  color: #0e0e0e;
  font-weight: 700;
}

.toggle-btn.active .icon {
  transform: rotate(8deg) scale(1.1);
}

.content-section {
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.content-section.active {
  display: block;
  opacity: 1;
  height: auto;
  overflow: visible;
}

.section-description {
  color: #bbb;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}


@keyframes appear1 {
  from {
    opacity: 0;
    scale: 0.5;
  }  
  to {
    opacity: 1;
    scale: 1;
  }
}

.work-card {
  animation: appear1 linear;
  animation-timeline: view();
  animation-range: entry 0;
}

.work-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}

.work-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}

.work-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.work-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-image2 {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.work-image2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.work-image2:hover iframe {
  transform: scale(1.05);
}

.work-card2 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 550px; /* Fixed height for consistency */
  display: flex;
  flex-direction: column;
}

.work-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.work-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-content h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.work-content p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.5;
}

.testimonials-section {
  padding: 5.5rem 1rem;
  position: relative;
  background-color: #000;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.client-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.testimonials-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-yellow {
  color: #FFD700;
}

.testimonial-grid {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 1rem 0;
}

.testimonial-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: appear1 linear;
  animation-timeline: view();
  animation-range: entry 0;
  height: 850px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-container {
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 177.78%;
  flex-shrink: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.testimonial-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.testimonial-content > p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.client-info, .client-info2, .client-info3, .client-info4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.client-info {
  margin-top: 15%;
}
.client-info2 {
  margin-top: 1.6rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.client-details {
  flex-grow: 1;
}

.client-details h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.client-details p {
  color: #bbb;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 700px;
  }

  .video-container {
    padding-top: 177.78%;
  }

  .testimonial-content {
    min-height: 180px;
  }

  .client-info1 {
    margin-top: 1rem;
  }
}

.Contact-section {
  padding: 5.5rem 1rem;
  position: relative;
  background-color: #000;
}

.Contacts-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.Contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-section {
  padding: 5.5rem 1rem;
  position: relative;
  background-color: #000;
}

.booking-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer {
  background-color: #0a0a0a;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #1e1e1e;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #1e1e1e;
}

.social-link:hover {
  background-color: #facc15;
  color: #000;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.copyright {
  color: #666;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    gap: 1rem;
  }
}

.results-section {
  padding: 5.5rem 1rem;
  position: relative;
  background-color: #000;
}

.results-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.top-images,
.middle-images,
.bottom-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: appear1 linear;
  animation-timeline: view();
  animation-range: entry 0;
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-image {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 2s ease, opacity 0.5s ease;
  filter: blur(20px);
  opacity: 0.5;
  cursor: pointer;
}

.result-image.reveal {
  filter: blur(0);
  opacity: 1;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  object-fit: fill;
}

.result-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.result-image.box {
  width: 550px;
  height: 400px;
}

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

@media (max-width: 1200px) {
  .top-images,
  .middle-images,
  .bottom-images {
    flex-direction: column;
    gap: 1.5rem;
  }

  .result-card {
    width: 100%;
    max-width: 550px;
    height: auto;
    padding: 1.5rem;
  }

  .result-image.box,
  .result-image.landscape {
    width: 100%;
    max-width: 550px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .result-image.box,
  .result-image.landscape {
    height: 250px;
  }

  .result-card {
    padding: 1.2rem;
  }
}

.results-section h2 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 2px solid rgba(250, 204, 21, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  animation: appear1 linear;
  animation-timeline: view();
  animation-range: entry 0;
  width: 320px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), transparent);
  border-radius: 18px;
  z-index: -1;
}

.results-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.result-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.1), 0 0 0 1px rgba(250, 204, 21, 0.2);
}

.result-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.1));
  border-radius: 20px;
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.3);
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.1);
}

.result-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
}

.result-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #fff, #facc15, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(250, 204, 21, 0.3);
}

.result-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.result-description {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .result-card {
    padding: 1.5rem;
  }

  .result-number {
    font-size: 2rem;
  }

  .result-label {
    font-size: 1rem;
  }
}

.work-header {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

.work-title {
  color: #e5e7eb;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.work-description {
  color: #bfc6d1;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 0.5rem auto;
  line-height: 1.5;
}

.collage-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 65vh;
  overflow: hidden;
}

.chat {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.chat-1 {
  top: 1%;
  left: 1%;
  transform: rotate(-4deg);
  z-index: 1;
}
.chat-1:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
}
.chat-2 {
  top: 13%;
  left: 35%;
  transform: rotate(2deg);
  z-index: 2;
}
.chat-2:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
}
.chat-3 {
  bottom: 54%;
  left: 67%;
  transform: rotate(-2deg);
  z-index: 3;
}
.chat-3:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
}
.chat-4 {
  bottom: 16%;
  left: 33%;
  transform: rotate(3deg);
  z-index: 4;
}
.chat-4:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
}


.verified-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  top: -1px;
}

/* Mobile Optimizations */
@media screen and (max-width: 768px) {
  .collage-container {
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .chat {
    width: 250px;
    position: relative;
    margin: 0 auto;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .chat-1, .chat-2, .chat-3, .chat-4 {
    transform: none !important;
  }

  /* Optimize hover effects for touch devices */
  .chat:hover {
    transform: scale(1.05) !important;
    filter: brightness(1.05);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .collage-container {
    height: auto;
    min-height: 100vh;
    padding: 15px;
    gap: 15px;
  }

  .chat {
    width: 200px;
    margin: 0 auto;
  }
}

.iframe-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.iframe-facade:hover {
  transform: scale(1.02);
}

.iframe-facade-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.iframe-facade-play-btn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFD600;
  color: black;
  font-size: 1.75rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.iframe-facade-play-btn::before {
  content: "▶";
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  margin-left: 2px;
}

.iframe-facade-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.responsive-iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 12px;
  display: block;
}