* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Hündürlük vacibdir */
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); /* Daha vizual overlay üçün rgba istifadə et */
  z-index: -1;
}

.navbarContainer {
  background-color: black;
  width: 100%;
  padding: 25px 30px;
  position: fixed;
  z-index: 999;
}

.navbarContainer .navbarContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1940px;
  margin: 0 auto;
}

.navbarContent .languageContent {
  display: flex;
  align-items: center;
  gap: 18px;
}

.languageContent p {
  color: #898989;
  font-family: "helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
}

.languageContent p.active {
  color: #fff;
}

.languageContent p:hover {
  color: #fff;
}

.languageMobil p {
  display: none;
}

.navbarContent .siteLogoText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  left: -25.5px;
  cursor: pointer;
}

.siteLogoText img {
  width: 152px;
  height: 27.72px;
}

.mobileLogo img {
  width: 152px;
  height: 27.72px;
}

.fullscreenNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 120px 0;
  opacity: 0;
  transform: translateY(-100px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fullscreenNav.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navMenuBar svg {
  cursor: pointer;
}

.navMenuBar svg:hover {
  fill: #fff;
}

.fullscreenNav.active {
  display: flex;
}

.navInnerContent {
  text-align: center;
  color: white;
  animation: fadeIn 1s ease 0.4s forwards;
  opacity: 0;
}

.navInnerContent p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 7.8px;
  line-height: 100%;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.logoTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logoTop img {
  width: 214px;
  height: 39px;
  margin-bottom: 10px;
}

.logoTop p {
  font-size: 12px;
  color: #aaa;
}

.navLinks {
  list-style: none;
  margin: 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navLinks a {
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  color: #898989;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 2px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
}

.navLinks a:hover {
  color: #fff;
}

.socialIcons {
  display: flex;
  gap: 33px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 40px;
  color: white;
  position: relative;
  top: 120px;
}

.mobileLogoWithLang {
  display: none;
}

@media (max-width: 768px) {
  .siteLogoText {
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

 


  .navbarContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .languageContent p {
    display: none;
  }

  .languageMobil p {
    display: flex;
  }

  .letterLogo {
    display: none;
  }

.mobileLogoWithLang {
  display: flex;
  align-items: center;
  gap: 60px;
}

.mobileLanguageIndicator p {
  color: #fff;
  font-family: "helvetica", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
}


 

  .languageContent p {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .navLinks a {
    font-family: "Playfair Display", sans-serif;
    font-weight: 400;
    color: #898989;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 2px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    text-decoration: none;
  }

  .navLinks a:hover {
    color: #fff;
  }

  .fullscreenNav {
    padding: 30px 0;
    align-items: center;
    justify-content: flex-start;
  }

  .navInnerContent {
    margin-top: 60px;
    width: 100%;
  }

  .logoTop img {
    width: 50px;
  }

  .socialIcons {
    font-size: 20px;
    gap: 16px;
    margin-bottom: 30px;
  }

  .navInnerContent img {
    width: 200px;
  }

  .navInnerContent p {
    font-family: "helvetica", sans-serif;
    font-weight: 400;
    font-size: 7px;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
  }
  .siteLogoText .desktopLogo {
    display: none;
  }
}

.heroPageContainer {
  position: relative;
  top: unset;
  z-index: unset;
}

.heroPageContainer .heroImageAndIcon {
  width: 100%;
  height: 100vh;
}

.heroImageAndIcon .heroImage {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.heroImageAndIcon .playIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.playIcon svg:hover path {
  fill: #ecdfdf;
}

.heroVideoWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
}

.heroVideoWrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exitVideoBtn {
  position: absolute;
  top: 90px;
  right: 20px;
  z-index: 3;
  background: black;
  border: none;
  border-radius: 4px;
  padding: 8px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .heroPageContainer {
    height: calc(var(--vh, 1vh) * 100);
  }
  .heroImageAndIcon {
    height: calc(var(--vh, 1vh) * 100);
  }
  .heroImageAndIcon .heroImage,
  .heroVideoWrapper video {
    height: calc(var(--vh, 1vh) * 100);
  }

  .heroImageAndIcon .playIcon {
    width: 60px;
    height: 60px;
    top: 52%;
    left: 52%;
    
  }
  .heroImageAndIcon .playIcon svg{
    width: 45px;
    height: 45px;
    top: 50%;
    left: 50%;
    
  }

  .heroVideoWrapper {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .exitVideoBtn {
    top: 75px;
    right: 15px;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
  }
}

.aboutSection {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
}

.aboutContent {
  display: flex;
  width: 100%;
  height: 100%;
}

.aboutText {
  width: 50%;
  padding:  96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aboutText h5 {
  font-family: "Helvetica", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.aboutText h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}

.aboutText p {
  font-family: "Helvetica", sans-serif;
  width: 100%;
  font-size: 14px;
  line-height: 1.7;
  max-width: 90%;
  color: #ccc;
}

/* İki şəkil hissəsi */
.aboutImages {
  width: 50%;
  height: 819px;
  display: flex;
}

.aboutImages img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .aboutContent {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .aboutText {
    width: 100%;
    padding: 53px 20px 53px 20px;
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .aboutImages {
    width: 100%;
    height: 400px;
  }
  .aboutText h5 {
    font-family: "Helvetica", sans-serif;
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 152px;
    text-transform: uppercase;
    text-align: center;
  }

  .aboutText h2 {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: center;
  }

  .aboutText p {
    font-size: 11px;
    line-height: 1.7;
    max-width: 100%;
    color: #ccc;
    text-align: center;
  }
}

.servicesSection {
  background: white;
  padding: 96px 20px;
  text-align: center;
  width: 100%;
  max-width: 1940px;
  margin: 0 auto;
}

.servicesTitle {
  width: 87px;
  height: 10px;
  margin: 0 auto;
  margin-bottom: 70px;
}

.servicesTitle h5 {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.servicesGrid {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 186px; 
  justify-content: center;
  max-width: 1940px;
  margin: 0 auto;
}

.serviceBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  gap: 20px;
  text-align: center;
  max-width: 315px;
  margin: 0 auto;
}

.serviceBox img {
  width: 127px;
  height: 91px;
  margin-bottom: 20px;
}

.serviceBox h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  vertical-align: bottom;
}

.serviceBox p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  vertical-align: bottom;
}

@media (max-width: 1260px) {
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 10px !important;
  }
}

/* Mobil üçün CSS */
@media (max-width: 768px) {
  .servicesSection {
    padding: 40px 20px;
  }

  .servicesGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 40px 0;
     -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
    scrollbar-width: none; /* Firefox */
  }

  .servicesGrid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .serviceBox {
    flex: 0 0 100%;
    border-radius: 12px;
    margin: 0 10px;
  }

  .serviceBox img {
    width: 83px;
    height: 63px;
    margin-bottom: -20px;
  }

  .serviceBox h3 {
    font-size: 34px;
    line-height: 40px;
    margin: 15px 0;
  }

  .serviceBox p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 63px;
  }

  #paginationDots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .paginationDot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #898989;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .paginationDot.active {
    background: #000;
  }
}

.missionContainer {
  height: 810px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  padding: 96px 20px;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
}

.missionHead p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.missionMiddle p {
  max-width: 1145px;
  margin: 0 auto;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

.missionLogo {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .cannes-experience {
    display: none;
  }

  .missionContainer {
    padding: 40px 16px;
    height: 500px;
  }

  .missionHead p {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .missionMiddle p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
  }

  .missionLogo {
    margin-top: 40px;
  }

  .missionLogo svg {
    width: 36px;
    height: auto;
  }
}

.trustedBy {
  padding: 96px 20px;
  background: #fff;
  text-align: center;
}

.trustedByTitle {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;

  margin-bottom: 100px;
}

.trustedLogos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 50px 30px;
  justify-items: center;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

/* Mobile Styles (updated for your structure) */
@media (max-width: 768px) {
  .trustedBy {
    padding: 55px 16px;
    position: relative;
  }

  .trustedByTitle {
    margin-bottom: 65px;
  }

  .trustedLogos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .trustedLogos::-webkit-scrollbar {
    display: none;
  }

  .trustedLogos img {
    scroll-snap-align: center;
    height: 35px;
    width: 71px;
    flex: 0 0 33.33%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  /* Pagination - fixed 3 dots */
  .trusted-by-partners-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .trusted-by-partners-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .trusted-by-partners-dot.active {
    background: #000;
  }
}

/* Hide pagination on desktop */
@media (min-width: 481px) {
  .trusted-by-partners-pagination-dots {
    display: none !important;
  }
}

.benefitsHead {
    padding:96px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.benefitsHead p {
  color: #fff;
  position: absolute;
  top: 90px;
  z-index: 999;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.slider-container {
  width: 100%;
  max-width: 1900px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  user-select: none;
}

.slide {
  min-width: calc(100% / 3);
  padding: 40px 20px;
  text-align: center;
  height: 810px;
  transition: background 0.3s;
  background-color: #c4c4c4;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.slide.active {
  background-color: #000;
  color: #fff;
  position: relative;
}

.slide h3 {
  width: 284px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
  margin-bottom: 76px;
  position: relative;
  top: 150px;
}

.slide p {
  width: 284px;
  display: flex;
  flex-wrap: wrap;
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;

  margin: 0 auto;
  position: relative;
  top: 150px;
}

.pagination {
  position: absolute;
  bottom: 40px; /* kartın içində alt hissəyə yaxın */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
}

.pagination button {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  border: none;
  background: #898989;
  cursor: pointer;
}

.pagination button.active {
  background: #fff;
}

@media (max-width: 768px) {

  .benefitsHead p {
    top: 55px !important;
  }

  .slide {
    min-width: 100%; /* yalnız 1 slayd görünsün */
    height: auto;
    padding: 55px 20px;
  }

  .slider-container {
    max-width: 100%;
    padding: 0;
  }

  .slide h3,
  .slide p {
    top: 0;
    width: 90%;
  }

  .slide h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
    margin-top: 145px;
  }

  .slide p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 100px;
  }

  .pagination {
    bottom: 55px;
    
  }

  .pagination button {
    width: 8px;
    height: 8px;
  }
}

.experience-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.experience-card {
  flex: 1;
  min-width: 50%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.experience-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px;
  height: 100%;
  width: 100%;
}

.experience-content .experience-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.experience-content h5 {
  font-family: "helvetica", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.experience-content h3 {
  width: 389px;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0%;
  vertical-align: bottom;
}

.experience-content p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: bottom;
  width: 389px;
}

.experience-content button {
  background: white;
  border: none;
  width: 138px;
  height: 33px;
  border-radius: 7px;
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.experience-content button:hover {
  background-color: rgb(189, 188, 188);
}
.experience-content2 button:hover {
  background-color: rgb(189, 188, 188);
}

@media (max-width: 768px) {
  .experience-section {
    flex-direction: column;
  }

  .experience-card {
    min-width: 100%;
    height: auto;
    padding: 40px 20px;
    justify-content: center;
  }

  .experience-content h5 {
    font-family: "helvetica", sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    top: 0;
  }

  .experience-content h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .experience-content p {
    font-size: 12px;
    line-height: 18px;
    width: 250px;
  }

  .experience-content button {
    padding: 13px 30px;
    font-size: 10px;
  }
}

.cannes-experience {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  overflow: hidden;
}

.cannes-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); 
  z-index: -1;
}

.cannes-overlay {
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  text-align: center;
}

.experience-content h3 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 180px;
}

.experience-content p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0%;
  margin: 20px 0;
  text-align: center;
}

.experience-content button {
  background: white;
  border: none;
  padding: 13px 30px;
  border-radius: 7px;
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.experience-content button:hover {
  background-color: rgb(189, 188, 188);
}

@media (max-width: 768px) {
  .cannes-experience {
    display: none !important;
    height: auto;
    padding: 0 20px;
    align-items: flex-start;
    justify-content: center;
  }

  .experience-content {
    display: none;
  }

  .experience-content h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .experience-content p {
    font-size: 12px;
    line-height: 18px;
    margin: 15px 0;
  }

  .experience-content button {
    padding: 13px 30px;
    font-size: 10px;
  }
}

.experience-row {
  display: flex;
  width: 100%;
  height: 100vh;
}

.experience-box {
  flex: 1;
  min-width: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 20px;
  color: white;
  z-index: 0;
}

.experience-content2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*padding: 92px;*/
  height: 100%;
  width: 100%;
  z-index: 2;
}

.experience-content2 .experienceBottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
}

.experience-content2 h5 {
  font-family: "helvetica", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.experience-content2 h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 60px;
  margin-bottom: 20px;
  text-align: left;
  width: 389px;
}

.experience-content2 p {
  width: 389px;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.experience-content2 button {
  background: white;
  border: none;
  padding: 13px 30px;
  border-radius: 7px;
  font-family: "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.experience-content button:hover {
  background-color: rgb(189, 188, 188);
}

@media (max-width: 768px) {
  /* Digər box-ları və ümumi row-u gizlə */
  .experience-box {
    display: none !important;
  }

  .experience-row {
    display: none !important;
    height: 520px;
  }

  /* Sadəcə .experience-boxMobile olan görünsün */
  .experience-box.experience-boxMobile {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    align-items: center;
    justify-content: center;
  }

  /* Əgər ayrısa, parent konteyner */
  .experience-boxMobile-parent {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }

  /* İçindəki content sahəsi */
  .experience-content2 {
    padding: 20px;
    max-width: 100%;
    height: 100%; /* <== DƏYİŞDİ: artıq vh yoxdur */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .experience-content2 .experienceBottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .experience-content2 h5 {
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
  }

  .experience-content2 h3 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .experience-content2 p {
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .experience-content2 button {
    font-size: 10px;
    padding: 10px 20px;
    border-radius: 5px;
  }
}

.membership-form-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  font-family: "Playfair Display", serif;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
  margin-bottom: 20px;
}

.form-container p {
  font-family: "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}

.membership-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.membership-form input,
.membership-form select {
  background: black;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 10px 5px;
  font-size: 14px;
  outline: none;
  text-transform: capitalize;
  border-radius: 0;
}

.membership-form input::placeholder {
  color: #fff;
}

.membership-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.phone-wrapper select {
  width: 200px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #000;
  color: #fff;
  appearance: none;
  cursor: pointer;
}

.phone-wrapper input {
  flex: 1;
  padding: 10px;
  border-bottom: 1px solid #fff;
  background: #000;
  color: #fff;
}


.membership-form button {
  margin: 0 auto;
  background-color: #fff;
  color: #000;
  width: 138px;
  height: 33px;
  font-size: 10px;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  align-self: center;
  margin-top: 30px;
  transition: background 0.3s ease;
}

.membership-form button:hover {
  background-color: #c4c4c4;
}

.thank-you-message {
  display: none;
  text-align: center;
 position: relative;
  height: 685px;
}

.thank-you-message p {
  width: 625px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  line-height: 60px;
  font-family: "Playfair Display", sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
  .form-container h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .form-container p {
    max-width: 280px;
    font-size: 12px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .membership-form {
    gap: 20px;
  }

  .membership-form input,
  .membership-form select {
    font-size: 13px;
  }
}

.footer {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-bottom: 47px;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 10px;
  font-family: "Helvetica", sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: 2px;
}


.footer-links a:hover{
  color: #898989;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 33px;
}

.footer-socials a {
  color: #000;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #898989;
}

.close-menu-btn svg line {
  transition: stroke 0.3s ease;
}

.close-menu-btn:hover svg line {
  stroke: #ffffff;
}

/* ƏSAS STİLLƏR */
.contactContainer {
  width: 100%;
  display: flex;
  height: 100vh;
  padding-top: 78px;
}

.contactLeft {
  height: 100vh;
  width: 90%;
  background: #000;
  padding: 100px;
  display: flex;
}

.contactLeftMain {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.contactMainTop {
  width: 100%;
}

.contactMainTop p {
  font-family: "Helvetica", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #b0b0b0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contactMainBottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
}

.contactBottomTop p {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

.contactBottomMiddle p {
  font-family: "Helvetica", sans-serif;
  width: 100%;
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.socialIconsContact {
  display: flex;
  align-items: center;
  gap: 33px;
}

/* SAĞ HİSSƏ */
.contactRight {
  width: 100%;
  background: #f5f5f5;
}

.contactRight iframe {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .contactContainer {
    flex-direction: column;
    height: auto;
    padding-top: 60px;

  }

  .contactLeft {
    width: 100%;
    height: auto;
    padding: 60px 30px;
    align-items: center !important;
  }

  .contactLeftMain {
    gap: 40px;
    justify-content: center;

    align-items: center !important;
  }

  .contactMainBottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contactMainTop p {
    text-align: center;
    font-size: 9px;
    margin-bottom: 15px;
  }

  .contactBottomTop p {
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
  }

   .contactBottomMiddle{
    margin-bottom: 10px;
   }

  .contactBottomMiddle p {
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
  }

  .socialIconsContact {
    flex-wrap: wrap;
    gap: 40px;
  }

  .socialIconsContact a img {
    max-width: 28px;
    height: auto;
  }

  .contactRight {
    width: 100%;
    height: 300px;
  }

  .contactRight iframe {
    height: 100%;
    min-height: 300px;
  }
}
