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

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

html,
body {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
  color: #fff;
  font-family: 'Arial', sans-serif;
}


header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  top: 0;
  z-index: 100;
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 2rem;
  background: #20202063;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.btn-call {
  background-color: #ff0000;
  color: #ffffff;
  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 {
  color: #fff;
  background-color: #ff0000b9;
  box-shadow: 0 0 10px #ff000090;
}

.nav-buttons a {
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-buttons a:not(.btn-call):hover {
  color: #ff0000;
}

@keyframes vibrate {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-2px);
  }

  20% {
    transform: translateX(2px);
  }

  30% {
    transform: translateX(-2px);
  }

  40% {
    transform: translateX(2px);
  }

  50% {
    transform: translateX(-1px);
  }

  60% {
    transform: translateX(1px);
  }

  70% {
    transform: translateX(-1px);
  }

  80% {
    transform: translateX(1px);
  }

  90% {
    transform: translateX(-1px);
  }

  100% {
    transform: translateX(0);
  }
}

.nav-buttons.vibrate {
  animation: vibrate 0.5s ease-in-out;
}

@media screen and (max-width: 768px) {
  .nav-buttons {
    gap: 1.5rem;
    padding: 0.6rem 1.2rem;
  }

  .nav-buttons a {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .nav-buttons {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .nav-buttons a {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}
.first-section {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(ellipse 125% 85% at 98% 16%, rgba(255, 0, 0, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse 125% 85% at bottom left, rgba(255, 0, 0, 0.3) 0%, transparent 40%), #000;
  position: relative;
  overflow: hidden;

}

.hero-text {
  max-width: 1200px;
  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: 3.5rem;
  font-weight: 800;
  margin-top: 0.5%;
  margin-bottom: 1%;
  word-spacing: -5px;
}

.vsl-container {
  width: 100%;
  max-width: 800px;
  margin: 11px auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

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

.vsl-container {
  position: relative;
  z-index: 2;
}

.vsl-video {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .vsl-container {
    max-width: 90%;
    margin: 1.5rem auto;
  }

  .vsl-video {
    height: 380px;
  }
}

@media screen and (max-width: 768px) {
  .vsl-container {
    max-width: 95%;
    margin: 1rem auto;
    padding: 0.8rem;
  }

  .vsl-video {
    height: 320px;
  }

  .small-text {
    font-size: 0.8rem;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .vsl-container {
    max-width: 100%;
    margin: 0.8rem auto;
    padding: 0.5rem;
    border-width: 1px;
  }

  .vsl-video {
    height: 250px;
  }

  .small-text {
    font-size: 0.75rem;
    padding: 0 0.8rem;
  }
}

@media screen and (max-width: 320px) {
  .vsl-video {
    height: 200px;
  }
}

.portfolio {
  padding-top: 9rem; 
  background:
    radial-gradient(ellipse 125% 85% at top left, rgba(255, 0, 0, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse 125% 85% at bottom right, rgba(255, 0, 0, 0.3) 0%, transparent 40%), #000;
  position: relative;
  z-index: 1;

}

.portfolio h2 {
  text-align: center;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.portfolio>p {
  text-align: center;
  font-weight: 650;
  font-size: 0.9rem;
  font-family: 'DM sans', sans-serif;
  margin-bottom: 2rem;
  color: #888;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 1024px) {
  .portfolio {
    padding: 3rem 1rem;
  }

  .portfolio h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {

  .portfolio h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .portfolio {
    padding: 2rem 1rem;
  }

}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
  margin-bottom: 0;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: calc(33.333% - 1.33rem);
  background: #121212;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.swiper-slide-active .video-card {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 60px;
  border-radius: 20%;
  background: #ff0000;
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #a70000;
  box-shadow: 0 0 15px rgba(255, 60, 60, 0.5);
}

.prev-button {
  left: -35px;
}

.next-button {
  right: -35px;
}

.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;
  width: fit-content;
  justify-content: center;
}

.work-toggle .highlight {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 8px);
  background-color: #ff0000;
  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: #ffffff;
  font-weight: 700;
}

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

@media screen and (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

@media screen and (max-width: 768px) {
  .carousel-container {
    padding: 0 30px;
  }

  .video-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
  }

  .swiper-slide-active .video-card {
    transform: scale(1.03);
  }

  .nav-button {
    width: 35px;
    height: 45px;
  }

  .prev-button {
    left: -10px;
  }

  .next-button {
    right: -10px;
  }

  .video-card {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.portfolio2 {
  padding-top: 5rem;
  position: relative;
  background: radial-gradient(ellipse 125% 85% at top right, rgba(255, 0, 0, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse 125% 85% at bottom left, rgba(255, 0, 0, 0.3) 0%, transparent 40%), #000;
  z-index: 1;
}

.portfolio2 h2 {
  text-align: center;
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.portfolio2>p {
  text-align: center;
  font-weight: 650;
  font-size: 0.9rem;
  font-family: 'DM sans', sans-serif;
  margin-bottom: 2rem;
  color: #888;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 0%;
}

.work-card {
  background: #121212;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

@keyframes appear2 {
  from {
    opacity: 0;
    transform: translateX(-350px);
  }  
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes appear3 {
  from {
    opacity: 0;
    transform: translateX(350px);
  }  
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

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

.appear2{
  animation: appear2 linear;
  animation-timeline: view();
  animation-range: entry 0;
}

.appear3{
  animation: appear3 linear;
  animation-timeline: view();
  animation-range: entry 0;
}

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

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.3);
}

.work-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

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

.work-content {
  padding: 1.5rem;
}

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

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

@media screen and (max-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .work-content {
    padding: 1.2rem;
  }

  .work-content h3 {
    font-size: 1.2rem;
  }

  .work-content p {
    font-size: 0.9rem;
  }
}

.testimonials-section {
  background: radial-gradient(ellipse 125% 85% at top left, rgba(255, 0, 0, 0.3) 0%, transparent 40%), #000;
  padding: 5rem 1rem 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-header {
  z-index: 1000;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-title {
  font-family: 'Poppins', 'Inter', 'Arial', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.autoblur{
  animation: autoblur linear both;
  animation-timeline: view(30% auto);
}

@keyframes autoblur{
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
  }
}

.gradient {
  font-style: italic;
  font-family: 'Playfair Display', 'Poppins', serif;
  background: linear-gradient(90deg, #a30000 0%, #ff5f5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
  font-size: 1.3em;
}

.gradient2 {
  font-style: italic;
  font-family: 'Playfair Display', 'Poppins', serif;
  background: linear-gradient(90deg, #ff5f5f 0%, #a30000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
  font-size: 1.3em;
}

.testimonials-subtitle {
  color: #b0b0b0;
  font-size: 1.15rem;
  font-weight: 650;
  font-size: 0.9rem;
  font-family: 'DM sans', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
}

.testimonial-card {
  background: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(120, 80, 80, 0.12), 0 1.5px 8px 0 rgba(255, 0, 0, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 0;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 #ff00007a, 0 2px 16px 0 #ff000033;
  transform: translateY(-6px) scale(1.025);
}

.testimonial-quote {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-client {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  margin-top: 10px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #ff0000;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.testimonial-title {
  color: #b0b0b0;
  font-size: 0.95rem;
  font-weight: 400;
}

.testimonial-quote2 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 3rem;
}

.testimonial-client2 {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 #000a;
  background: #000;
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  background: #000;
}

.testimonial-card.landscape {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.landscape-content {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.landscape-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.landscape .testimonial-video {
  flex: 1;
  min-width: 50%;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .landscape-content {
    flex-direction: column;
  }

  .testimonial-card.landscape .testimonial-video {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0.5rem 3rem 0.5rem;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-grid {
    gap: 1.5rem;
    max-width: 98vw;
  }

  .testimonial-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 0.2rem 2rem 0.2rem;
  }

  .testimonials-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    padding: 1rem 0.5rem 1rem 0.5rem;
  }
}

.results-section {
  padding: 80px 20px;
  background: #000;
  color: white;
}

.results-section p {
  color: #b0b0b0;
  font-size: 1.15rem;
  font-weight: 650;
  font-size: 0.9rem;
  font-family: 'DM sans', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.results-header {
  text-align: center;
  margin-bottom: 60px;
}

.results-title {
  font-family: 'Poppins', 'Inter', 'Arial', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.collage-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: auto;
  aspect-ratio: 1920/900;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.chat-1 {
  top: 1.7%;
  right: 10.4%;
  transform: rotate(12deg);
  z-index: 1;
}

.chat-2 {
  top: 10.3%;
  right: 22.6%;
  transform: rotate(1deg);
  z-index: 1;
}

.chat-3 {
  top: 29.5%;
  right: 10.4%;
  transform: rotate(0deg);
  z-index: 1;
}

.chat-4 {
  top: 1.3%;
  left: 13.4%;
  transform: scale(0.9) rotate(-6deg);
  z-index: 1;
}

.chat-5 {
  top: 26.7%;
  right: 27.6%;
  transform: rotate(0deg);
  z-index: 1;
}

.chat-6 {
  top: 30.8%;
  left: 6.8%;
  transform: rotate(0deg);
  z-index: 1;
}

.chat-7 {
  top: 20%;
  left: 35%;
  transform: rotate(4deg);
  z-index: 1;
}

.chat-8 {
  bottom: 20%;
  right: 49.8%;
  transform: rotate(6deg);
  z-index: 1;
}

.chat-10 {
  top: 20%;
  left: 5.9%;
  transform: rotate(2deg);
  z-index: 1;
}

.chat-11 {
  bottom: 3.3%;
  left: 30%;
  transform: rotate(-2deg);
  z-index: 1;
}

.chat-12 {
  bottom: 30.2%;
  left: 20.5%;
  transform: rotate(-80deg);
  z-index: 1;
}

.chat-13 {
  top: 3%;
  left: 36.9%;
  transform: scale(1.2) rotate(-2deg);
  z-index: 1;
}

.chat-14 {
  top: 35.8%;
  left: 25.5%;
  transform: rotate(3deg);
  z-index: 1;
}

.chat-13:hover {
  transform: scale(1.3);
  filter: brightness(1.1);
  z-index: 2;
}

.chat-12:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  transform: rotate(-60deg);
  z-index: 2;
}

.chat-1:hover,
.chat-2:hover,
.chat-3:hover,
.chat-4:hover,
.chat-5:hover,
.chat-6:hover,
.chat-7:hover,
.chat-8:hover,
.chat-10:hover,
.chat-11:hover,
.chat-14:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
  z-index: 2;
}

.chat-2 {
  width: 4060px;
  height: auto;
}

.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;
}

.section-description {
  color: #bbb;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.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;
}

.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.3rem;
  margin-bottom: -1.3rem;

}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid #1e1e1e;
  width: 70px;
  height: 70px;
  justify-content: center;
}

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

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

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

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

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

@media (max-width: 1920px) {
  .collage-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1920/900;
    overflow: hidden;
  }
}

.packages-section {
  padding: 6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.booking-section {
  background: radial-gradient(ellipse 255% 100% at 100% 47%, rgba(255, 0, 0, 0.3) 0%, transparent 30%);
}

.packages-cards {
  display: flex;
  gap: 5.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
}

.package-card {
  background: rgba(107, 107, 107, 0.185);
  border: 0.1px solid #FF0000;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  width: 320px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 50px rgba(255, 60, 60, 0.301);
}

.package-card h3 {
  font-size: 2.7rem;
  color: #FF0000;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.shorts-count {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff5e5e, #ff0000, #ff5e5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(255, 60, 60, 0.3);
}

.price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ccc;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.package-features li {
  margin-bottom: 0.5rem;
  text-align: left;
  padding-left: 1.2rem;
  position: relative;
}

@media (max-width: 1024px) {
  .packages-cards {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    width: 90%;
    max-width: 420px;
  }
}