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

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.homePage {
  background: linear-gradient(175.88deg, #181C23 5.36%, #252B36 18.24%);
}

a {
  text-decoration: none !important;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 15px;
}

.thinTitle {
  font-weight: 300;
}

.boldTitle {
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-white {
  background: #FFFFFF !important;
  color: #252B36 !important;
}

.btn-white:hover {
  background: #F5C721 !important;
  color: #252B36 !important;
}

.btn-primary {
  background: #F5C721 !important; /* Sarı yaptık */
  color: #252B36 !important; /* Yazıyı koyu yaptık */
}

.btn-primary:hover {
  background: #f7d040 !important; /* Biraz daha açık sarı */
  color: #252B36 !important;
  box-shadow: 0 0 20px rgba(245, 199, 33, 0.6) !important; /* Sarı parlama efekti */
  transform: translateY(-2px); /* Hafif yukarı kalkma */
}

.btn-outline-primary {
  background: transparent !important;
  color: #252B36 !important;
  border: 2px solid #252B36 !important;
}

.btn-outline-primary:hover {
  background: #252B36 !important;
  color: #FFFFFF !important;
}

#topbar {
  min-height: 52px;
  background: linear-gradient(90deg, #343E4E 0%, #252B36 50%, #1A1E26 100%);
  position: relative;
  z-index: 101;
}

@media (max-width: 1200px) {
  #topbar {
    display: none;
  }
}

#topbar .topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  gap: 30px;
}

#topbar .counter-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1200px) {
  #topbar .counter-menu {
    flex-direction: column;
    gap: 5px;
  }
}

#topbar .campaignText a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  #topbar .campaignText a {
    font-size: 14px;
  }
}

#topbar .campaignTimerBox {
  padding: 0 0 0 10px;
}

#topbar .campaignTimerRow {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.2;
}

#topbar .campaignTimerRow .text-primary {
  color: #F5C721 !important;
  font-weight: bold;
}

#topbar .campaignTimerRow .text-secondary {
  color: #FFFFFF !important; /* Burası artık beyaz */
}

#topbar .campaignTimerRow.bold {
  font-weight: 800;
}

#topbar .btnCall {
  background: none;
  color: #FFFFFF;
  font-size: 17px;
  padding: 0;
  margin-right: 5px;
}

#topbar .btnCall:hover {
  color: #F5C721;
}

.gtag-header {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .gtag-header {
    top: 0;
  }
}

.gtag-header.sticky {
  position: fixed;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(37, 43, 54, 0.05);
}

.gtag-header.sticky .ticimaxLogo {
  filter: none;
}

.gtag-header.sticky .main-nav ul>li>a {
  color: #252B36;
}

.gtag-header.sticky .button-area .btnCall {
  color: #252B36;
}

.gtag-header.sticky .button-area .btnCall:hover {
  color: #F5C721;
}

.gtag-header.sticky .login-btn {
  color: #252B36;
}

.gtag-header.sticky .btn-white {
  background: #252B36;
  color: #FFFFFF;
}

.gtag-header.sticky .btn-white:hover {
  background: #F5C721;
  color: #252B36;
}

.gtag-header.sticky .mobile-toggle {
  color: #252B36;
}

.gtag-header .navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 90px !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
  background: transparent !important;
  border: none !important;
}

.gtag-header .ticimaxLogo {
  height: 45px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .gtag-header .main-nav {
    display: none;
  }
}

.gtag-header .main-nav>ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gtag-header .main-nav>ul>li {
  position: static;
  padding: 35px 0;
}

.gtag-header .main-nav>ul>li>a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gtag-header .main-nav>ul>li>a .nav-icon {
  font-size: 10px;
}

.gtag-header .main-nav>ul>li:hover .menuWrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto; /* Sadece hover olunca canlansın */
}

.gtag-header .menuWrapper .menuTopContent {
  padding: 40px 0;
  border-bottom: 1px solid #E5E7EB;
}

.gtag-header .menuWrapper .menuContent {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Bootstrap'in .dropdown-menu sınıfını burada eziyoruz */
.gtag-header .menuWrapper .dropdown-menu {
  display: block !important;
  position: static !important;
  flex: 1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  min-width: unset !important;
}

.gtag-header .menuWrapper .dropdown-menu li {
  margin-bottom: 15px;
}

.gtag-header .menuWrapper .dropdown-menu li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #252B36 !important;
  margin-bottom: 4px;
}

.gtag-header .menuWrapper .dropdown-menu li a:hover {
  color: #E3B610 !important;
}

.gtag-header .menuWrapper .dropdown-menu li a.premiumIcon {
  color: #E3B610 !important;
}

.gtag-header .menuWrapper .dropdown-menu li span {
  display: block;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
  font-weight: 400;
}

.gtag-header .menuWrapper .dropdown-menu li .menutitle {
  font-size: 16px;
  font-weight: 700;
  color: #252B36;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gtag-header .menuWrapper .menuBottomContent {
  padding: 20px 0 0;
  background: #F8F9FA;
  border-radius: 0 0 16px 16px;
}

.gtag-header .menuWrapper .horizontal-menu {
  display: flex !important;
  justify-content: space-around !important;
  flex-direction: row !important;
}

.gtag-header .menuWrapper .horizontal-menu li {
  text-align: center;
}

.gtag-header .menuWrapper .horizontal-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #252B36 !important;
}

.gtag-header .menuWrapper .horizontal-menu li a i {
  font-size: 20px;
  color: #F5C721;
}

.gtag-header .menuWrapper .horizontal-menu li span {
  font-size: 13px;
  color: #6B7280;
  margin-top: 5px;
}

.gtag-header .menuWrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 100%;
  max-width: 1200px;
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(37, 43, 54, 0.12);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Mouse etkileşimini kestik */
  transition: all 0.3s ease;
  padding-bottom: 20px;
  z-index: 1000;
  overflow: visible;
}

/* Pause marquee when Referanslar dropdown is open */
.gtag-header .main-nav>ul>li.dropdown:hover .menuWrapper~* .marquee-track,
.gtag-header .main-nav>ul>li.dropdown:hover~.hero-marquee .marquee-track {
  animation-play-state: paused;
}

.gtag-header .menuWrapper .menuTopContent {
  padding: 40px 0;
  border-bottom: 1px solid #E5E7EB;
}

.gtag-header .menuWrapper .menuContent {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.gtag-header .menuWrapper .dropdown-menu {
  flex: 1;
}

.gtag-header .menuWrapper .dropdown-menu li {
  margin-bottom: 15px;
}

.gtag-header .menuWrapper .dropdown-menu li a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 4px;
}

.gtag-header .menuWrapper .dropdown-menu li a:hover {
  color: #E3B610;
}

.gtag-header .menuWrapper .dropdown-menu li a.premiumIcon {
  color: #E3B610;
}

.gtag-header .menuWrapper .dropdown-menu li span {
  display: block;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
  font-weight: 400;
}

.gtag-header .menuWrapper .dropdown-menu li .menutitle {
  font-size: 16px;
  font-weight: 700;
  color: #252B36;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gtag-header .menuWrapper .menuBottomContent {
  padding: 20px 0 0;
  background: #F8F9FA;
  border-radius: 0 0 16px 16px;
}

.gtag-header .menuWrapper .horizontal-menu {
  display: flex;
  justify-content: space-around;
}

.gtag-header .menuWrapper .horizontal-menu li {
  text-align: center;
}

.gtag-header .menuWrapper .horizontal-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #252B36;
}

.gtag-header .menuWrapper .horizontal-menu li a i {
  font-size: 20px;
  color: #F5C721;
}

.gtag-header .menuWrapper .horizontal-menu li span {
  font-size: 13px;
  color: #6B7280;
  margin-top: 5px;
}

.gtag-header .menuWrapper .ref-menu {
  display: flex;
  gap: 40px;
  overflow: visible;
}

.gtag-header .menuWrapper .ref-menu .ref-col {
  flex: 1;
  border-right: 1px solid #E5E7EB;
  padding-right: 30px;
}

.gtag-header .menuWrapper .ref-menu .ref-col .menutitle {
  font-size: 20px;
  font-weight: 800;
  color: #252B36;
  display: block;
  margin-bottom: 10px;
  border: none;
}

.gtag-header .menuWrapper .ref-menu .ref-col p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
}

.gtag-header .menuWrapper .ref-menu .ref-col .menuButton {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #252B36;
  color: #252B36;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
}

.gtag-header .menuWrapper .ref-menu .ref-col .menuButton:hover {
  background: #252B36;
  color: #FFFFFF;
}

.gtag-header .menuWrapper .ref-menu .brandMenuLogos {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  overflow: visible;
}

.gtag-header .menuWrapper .ref-menu .brandMenuLogos .brandLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 8px 12px;
  overflow: visible;
  cursor: pointer;
}

.gtag-header .menuWrapper .ref-menu .brandMenuLogos .brandLogo img {
  display: block;
  width: auto;
  height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center center;
}

.gtag-header .menuWrapper .ref-menu .brandMenuLogos .brandLogo:hover img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.25) !important;
}

.gtag-header .button-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1200px) {
  .gtag-header .button-area {
    display: none;
  }
}

.gtag-header .button-area .btnCall {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
}

.gtag-header .button-area .btnCall:hover {
  color: #F5C721;
}

@media (max-width: 1200px) {
  .gtag-header .navbar-user {
    display: none;
  }
}

.gtag-header .navbar-user .login-btn {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gtag-header .mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .gtag-header .mobile-toggle {
    display: block;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: #252B36;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.is-active {
  transform: translateX(0);
}

.mobile-menu-overlay .mobile-menu-inner {
  padding: 30px 20px;
}

.mobile-menu-overlay .mobile-menu-inner ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay .mobile-menu-inner ul li a {
  display: block;
  padding: 15px 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.homeFrame {
  position: relative;
  height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 80px;
}

@media (min-width: 1540px) {
  .homeFrame {
    height: 800px;
  }
}

@media (max-width: 767px) {
  .homeFrame {
    height: 560px;
    padding-top: 90px;
    padding-bottom: 70px;
  }
}

.homeFrame .hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.homeFrame .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 43, 54, 0.9) 0%, rgba(37, 43, 54, 0.4) 100%);
  z-index: 2;
}

.homeFrame .banner {
  position: relative;
  z-index: 3;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.homeFrame .fullSliderWrapper {
  display: flex;
  align-items: center;
}

.homeFrame .fullSliderWrapper .sliderLeftWrapper {
  max-width: 800px;
}

@media (max-width: 767px) {
  .homeFrame .fullSliderWrapper .sliderLeftWrapper {
    text-align: center;
    margin: 0 auto;
  }
}

.homeFrame .fullSliderWrapper .topTitle {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 25px;
}

@media (min-width: 1540px) {
  .homeFrame .fullSliderWrapper .topTitle {
    font-size: 75px;
  }
}

@media (max-width: 900px) {
  .homeFrame .fullSliderWrapper .topTitle {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .homeFrame .fullSliderWrapper .topTitle {
    font-size: 32px;
  }
}

.homeFrame .fullSliderWrapper .popTitle {
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .homeFrame .fullSliderWrapper .popTitle {
    font-size: 16px;
    margin: 0 auto 30px;
  }
}

.homeFrame .fullSliderWrapper .btn-slider {
  padding: 15px 50px;
  font-size: 16px;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  padding: 20px 0;
}

.hero-marquee .marquee-track-wrapper {
  overflow-x: hidden;
  overflow-y: visible;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.hero-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
  align-items: center;
  will-change: transform;
  overflow: visible;
}

.hero-marquee .marquee-track:hover {
  animation-play-state: paused;
}

.hero-marquee .marqueeItem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  padding: 0 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .hero-marquee .marqueeItem {
    width: 130px;
    height: 50px;
    padding: 0 15px;
  }
}

.hero-marquee .marqueeItem img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center center;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-marquee .marqueeItem img {
    height: 28px;
    max-width: 80px;
  }
}

/* Hover effects: pause animation + scale up hovered logo */
.hero-marquee .marquee-track:has(.marqueeItem:hover) {
  animation-play-state: paused;
}

.hero-marquee .marqueeItem:hover img {
  transform: scale(1.25);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(245, 199, 33, 0.6));
}

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

  100% {
    transform: translateX(-25%);
  }
}

.reference-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .reference-section {
    margin-top: 20px;
  }
}

.tvc-reference-testimonials .referencewrapper {
  background: transparent;
}

.tvc-reference-testimonials .referenceTitle {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
  padding-top: 90px;
}

@media (max-width: 767px) {
  .tvc-reference-testimonials .referenceTitle {
    font-size: 20px;
    padding: 70px 15px 0;
  }
}

.tvc-reference-testimonials .testimonialSwiper {
  padding-bottom: 50px;
}

.tvc-reference-testimonials .testimonial-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 40px rgba(37, 43, 54, 0.12);
  cursor: pointer;
  background: #000;
}

.tvc-reference-testimonials .testimonial-card.is-playing .testimonial-poster {
  opacity: 0;
}

.tvc-reference-testimonials .testimonial-card.is-playing .play-button {
  opacity: 0;
}

.tvc-reference-testimonials .testimonial-card.is-playing .testimonial-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.tvc-reference-testimonials .testimonial-card .testimonial-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tvc-reference-testimonials .testimonial-card .testimonial-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tvc-reference-testimonials .testimonial-card .testimonial-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(37, 43, 54, 0.9) 0%, rgba(37, 43, 54, 0) 100%);
  z-index: 3;
  color: #FFFFFF;
  transition: background 0.3s ease;
}

.tvc-reference-testimonials .testimonial-card .testimonial-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}

.tvc-reference-testimonials .testimonial-card .testimonial-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tvc-reference-testimonials .testimonial-card .testimonial-name strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.tvc-reference-testimonials .testimonial-card .testimonial-name span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.tvc-reference-testimonials .testimonial-card .play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F5C721;
  border: none;
  color: #252B36;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.tvc-reference-testimonials .testimonial-card .play-button:hover {
  transform: scale(1.1);
}

.tvc-reference-testimonials .swiper-pagination-bullet {
  background: #FFFFFF;
  opacity: 0.5;
}

.tvc-reference-testimonials .swiper-pagination-bullet-active {
  background: #F5C721;
  opacity: 1;
}

.section-heavy {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-heavy .heavy-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-heavy .heavy-title-wrapper .heavy-title {
  font-size: 42px;
  font-weight: 800;
  color: #252B36;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .section-heavy .heavy-title-wrapper .heavy-title {
    font-size: 28px;
  }
}

.section-heavy .heavy-title-wrapper .heavy-subtitle {
  font-size: 18px;
  color: #6B7280;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section-heavy .heavy-title-wrapper .heavy-subtitle {
    font-size: 15px;
  }
}

.section-heavy .dense-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .section-heavy .dense-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-heavy .dense-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-heavy .dense-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.section-heavy .dense-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg,
      #252B36 0%,
      #1a3a5c 30%,
      #1e4d7b 55%,
      #252B36 80%,
      #F5C721 150%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
  animation: none;
}

.section-heavy .dense-card:hover::before {
  opacity: 1;
  animation: waveShift 3s ease infinite;
}

@keyframes waveShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.section-heavy .dense-card:hover {
  box-shadow: 0 20px 50px rgba(37, 43, 54, 0.25);
  border-color: transparent;
  transform: translateY(-6px) scale(1.01);
}

.section-heavy .dense-card:hover .dense-card-icon {
  background: rgba(245, 199, 33, 0.2);
  color: #F5C721;
  border: 1px solid rgba(245, 199, 33, 0.4);
}

.section-heavy .dense-card:hover .dense-card-content h3 {
  color: #FFFFFF;
}

.section-heavy .dense-card:hover .dense-card-content p {
  color: rgba(255, 255, 255, 0.75);
}

.section-heavy .dense-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #F8F9FA;
  color: #252B36;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}

.section-heavy .dense-card-content {
  position: relative;
  z-index: 1;
}

.section-heavy .dense-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #252B36;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.section-heavy .dense-card-content p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.info-blocks {
  padding: 100px 0;
  background: #F8F9FA;
}

.info-blocks .info-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.info-blocks .info-row:last-child {
  margin-bottom: 0;
}

.info-blocks .info-row.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .info-blocks .info-row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 60px;
  }
}

.info-blocks .info-text {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-blocks .info-image {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}

.info-blocks .info-row.is-visible .info-text,
.info-blocks .info-row.is-visible .info-image {
  opacity: 1;
  transform: translateY(0);
}

.info-blocks .info-text .info-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(37, 43, 54, 0.1);
  color: #252B36;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.info-blocks .info-text .info-title {
  font-size: 38px;
  font-weight: 800;
  color: #252B36;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .info-blocks .info-text .info-title {
    font-size: 28px;
  }
}

.info-blocks .info-text .info-desc {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 30px;
}

.info-blocks .info-text .info-list {
  margin-bottom: 40px;
}

.info-blocks .info-text .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #252B36;
  margin-bottom: 15px;
}

.info-blocks .info-text .info-list li i {
  color: #F5C721;
  font-size: 18px;
}



.info-blocks .info-image img {
  border-radius: 20px;

  width: 100%;
}

.aesthetic-tabs-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0f1420 0%, #1a2236 50%, #111827 100%);
  border-top: none;
  position: relative;
  overflow: hidden;
}

.aesthetic-tabs-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 199, 33, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.aesthetic-tabs-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.aesthetic-tabs-section .heavy-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.aesthetic-tabs-section .heavy-title-wrapper .heavy-title {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .aesthetic-tabs-section .heavy-title-wrapper .heavy-title {
    font-size: 30px;
  }
}

.aesthetic-tabs-section .heavy-title-wrapper .heavy-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  margin: 0 auto;
}

/* Premium Tab Wrapper */
.aesthetic-tabs-section .custom-tabs-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

/* Tab Nav */
.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav {
  display: flex;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 20px;
  gap: 8px;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav::-webkit-scrollbar {
  display: none;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 14px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 199, 33, 0.12), rgba(245, 199, 33, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn:hover::after {
  opacity: 1;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(245, 199, 33, 0.3);
  transform: translateY(-1px);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn:hover i {
  color: rgba(245, 199, 33, 0.7);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn.active {
  background: linear-gradient(135deg, #F5C721 0%, #e6b800 100%);
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(245, 199, 33, 0.35), 0 0 0 1px rgba(245, 199, 33, 0.2);
  transform: translateY(-2px);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn.active i {
  color: #1a1a1a;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-nav .tab-btn.active::after {
  opacity: 0;
}

/* Tab Content */
.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content {
  padding: 55px 60px;
}

@media (max-width: 767px) {
  .aesthetic-tabs-section .custom-tabs-wrapper .tabs-content {
    padding: 30px 24px;
  }
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane {
  display: none;
  animation: tabFadeIn 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane.active {
  display: block;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 991px) {
  .aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner {
    flex-direction: column;
    gap: 35px;
  }
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text {
  flex: 1;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text h3 {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.9;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text ul {
  margin-bottom: 35px;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text ul li:hover {
  background: rgba(245, 199, 33, 0.08);
  border-color: rgba(245, 199, 33, 0.2);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text ul li i {
  color: #F5C721;
  font-size: 16px;
  background: rgba(245, 199, 33, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text .btn-primary {
  background: linear-gradient(135deg, #F5C721 0%, #e6b800 100%);
  color: #1a1a1a;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(245, 199, 33, 0.3);
  transition: all 0.3s ease;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-text .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 199, 33, 0.45);
  background: linear-gradient(135deg, #f7d040 0%, #F5C721 100%);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-image {
  flex: 1;
  position: relative;
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 199, 33, 0.15), rgba(59, 130, 246, 0.1));
  z-index: -1;
  filter: blur(20px);
}

.aesthetic-tabs-section .custom-tabs-wrapper .tabs-content .tab-pane-inner .tab-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cargo-section-old,
.ai-mascot-section-old,
.ecosystem-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.cargo-section-old .row-flex,
.ai-mascot-section-old .row-flex,
.ecosystem-section .row-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cargo-section-old .row-flex.g-reverse,
.ai-mascot-section-old .row-flex.g-reverse,
.ecosystem-section .row-flex.g-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {

  .cargo-section-old .row-flex,
  .ai-mascot-section-old .row-flex,
  .ecosystem-section .row-flex {
    flex-direction: column !important;
    gap: 40px;
  }
}

.cargo-section-old .col-text,
.ai-mascot-section-old .col-text {
  flex: 1;
}

.cargo-section-old .col-text .badge-ai,
.ai-mascot-section-old .col-text .badge-ai {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(245, 199, 33, 0.1);
  color: #F5C721;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cargo-section-old .col-text .display-title,
.ai-mascot-section-old .col-text .display-title {
  font-size: 40px;
  font-weight: 800;
  color: #252B36;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cargo-section-old .col-text .display-title .text-yellow,
.ai-mascot-section-old .col-text .display-title .text-yellow {
  color: #F5C721;
}

@media (max-width: 767px) {

  .cargo-section-old .col-text .display-title,
  .ai-mascot-section-old .col-text .display-title {
    font-size: 30px;
  }
}

.cargo-section-old .col-text .h3-subtitle,
.ai-mascot-section-old .col-text .h3-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #343E4E;
  margin-bottom: 25px;
}

.cargo-section-old .col-text .desc-text,
.ai-mascot-section-old .col-text .desc-text {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 20px;
  line-height: 1.8;
}

.cargo-section-old .col-img,
.ai-mascot-section-old .col-img {
  flex: 1;
  text-align: center;
}

.cargo-section-old .col-img .img-responsive,
.ai-mascot-section-old .col-img .img-responsive {
  max-width: 100%;
  height: auto;
}

.cargo-section-old .col-img .floating-animate-y,
.ai-mascot-section-old .col-img .floating-animate-y {
  animation: floatY 4s ease-in-out infinite;
}

.cargo-section-old .col-img .floating-animate-y-slow,
.ai-mascot-section-old .col-img .floating-animate-y-slow {
  animation: floatY 6s ease-in-out infinite;
}

.cargo-section-old {
  background: #F8F9FA;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

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

.ecosystem-section {
  padding: 100px 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(to bottom, #ffffff, #F8F9FA);
  overflow: hidden;
  position: relative;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.circle-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .circle-container {
    width: 350px;
    height: 350px;
    margin-bottom: 40px;
  }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(37, 43, 54, 0.2);
  transform: translate(-50%, -50%);
}

.ring-inner {
  width: 280px;
  height: 280px;
  animation: spin 40s linear infinite;
}

@media (max-width: 991px) {
  .ring-inner {
    width: 180px;
    height: 180px;
  }
}

.ring-outer {
  width: 450px;
  height: 450px;
  animation: spin-reverse 60s linear infinite;
}

@media (max-width: 991px) {
  .ring-outer {
    width: 350px;
    height: 350px;
  }
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.orbit-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #252B36;
  margin-left: -30px;
  margin-top: -30px;
}

.orbit-icon img {
  max-width: 60%;
  height: auto;
}

.ring-inner .icon-1 {
  top: 0;
  left: 50%;
  animation: counter-rotate 40s linear infinite;
}

.ring-inner .icon-2 {
  top: 100%;
  left: 50%;
  animation: counter-rotate 40s linear infinite;
}

.ring-inner .icon-3 {
  top: 50%;
  left: 0;
  animation: counter-rotate 40s linear infinite;
}

.ring-inner .icon-4 {
  top: 50%;
  left: 100%;
  animation: counter-rotate 40s linear infinite;
}

.ring-outer .icon-1 {
  top: 14.65%;
  left: 14.65%;
  animation: counter-rotate-reverse 60s linear infinite;
}

.ring-outer .icon-2 {
  top: 14.65%;
  left: 85.35%;
  animation: counter-rotate-reverse 60s linear infinite;
}

.ring-outer .icon-3 {
  top: 85.35%;
  left: 14.65%;
  animation: counter-rotate-reverse 60s linear infinite;
}

.ring-outer .icon-4 {
  top: 85.35%;
  left: 85.35%;
  animation: counter-rotate-reverse 60s linear infinite;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.center-logo img {
  max-width: 80%;
  height: auto;

}

@keyframes counter-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes counter-rotate-reverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.blog-section-elite {
  padding: 100px 0;
  background: #FFFFFF;
}

.blog-section-elite .heavy-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.blog-section-elite .heavy-title-wrapper .heavy-title {
  font-size: 42px;
  font-weight: 800;
  color: #252B36;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .blog-section-elite .heavy-title-wrapper .heavy-title {
    font-size: 28px;
  }
}

.blog-section-elite .heavy-title-wrapper .heavy-subtitle {
  font-size: 18px;
  color: #6B7280;
  max-width: 800px;
  margin: 0 auto;
}

.blog-section-elite .blog-grid-elite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .blog-section-elite .blog-grid-elite {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-section-elite .blog-grid-elite {
    grid-template-columns: 1fr;
  }
}

.blog-section-elite .blog-card-elite {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 10px 30px rgba(37, 43, 54, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-section-elite .blog-card-elite:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37, 43, 54, 0.2);
}

.blog-section-elite .blog-card-elite:hover .blog-img-wrapper img {
  transform: scale(1.08);
}

.blog-section-elite .blog-card-elite .blog-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-section-elite .blog-card-elite .blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-section-elite .blog-card-elite .blog-overlay-elite {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 43, 54, 0.95) 0%, rgba(37, 43, 54, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
}

.blog-section-elite .blog-card-elite .blog-cat-elite {
  align-self: flex-start;
  background: #F5C721;
  color: #252B36;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-section-elite .blog-card-elite .blog-title-elite {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-section-elite .blog-card-elite .blog-date-elite {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-section-elite .blog-card-elite .blog-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.blog-section-elite .blog-center-btn {
  text-align: center;
}

.faq-section {
  padding: 80px 0;
  background: #252B36;
}

.faq-section .heavy-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .heavy-title-wrapper .heavy-title {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .faq-section .heavy-title-wrapper .heavy-title {
    font-size: 28px;
  }
}

.faq-section .heavy-title-wrapper .heavy-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.faq-section .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(37, 43, 54, 0.05);
}

.faq-section .faq-item .faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #252B36;
  cursor: pointer;
  text-align: left;
  transition: 0.3s ease;
}

@media (max-width: 767px) {
  .faq-section .faq-item .faq-btn {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.faq-section .faq-item .faq-btn i {
  color: #F5C721;
  transition: transform 0.3s ease;
}

.faq-section .faq-item .faq-btn:hover {
  color: #E3B610;
}

.faq-section .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FFFFFF;
}

.faq-section .faq-item .faq-content p {
  padding: 0 25px 25px;
  margin: 0;
  color: #6B7280;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-section .faq-item .faq-content p {
    padding: 0 20px 20px;
  }
}

.faq-section .faq-item.active .faq-btn i {
  transform: rotate(180deg);
}

.faq-section .faq-item.active .faq-content {
  max-height: 300px;
}

.main-footer {
  background: #252B36;
  color: #FFFFFF;
  padding: 80px 0 0;
}

.main-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .main-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .main-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .main-footer .brand-col {
    grid-column: 1 / -1;
  }
}

.main-footer .footer-logo {
  height: 40px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.main-footer .footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.8;
}

.main-footer .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.main-footer .footer-contact p i {
  color: #F5C721;
  width: 20px;
}

.main-footer .footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.main-footer .footer-col ul li {
  margin-bottom: 12px;
}

.main-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.main-footer .footer-col ul li a:hover {
  color: #F5C721;
  padding-left: 5px;
}

.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .main-footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.main-footer .footer-bottom .copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.main-footer .footer-bottom .socials {
  display: flex;
  gap: 15px;
}

.main-footer .footer-bottom .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
}

.main-footer .footer-bottom .socials a:hover {
  background: #F5C721;
  color: #252B36;
  transform: translateY(-3px);
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  color: #252B36;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #252B36;
  color: #F5C721;
  box-shadow: 0 12px 25px rgba(37, 43, 54, 0.15);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* --- Ruleway Marketing Premium Section (Eksiksiz Kodlar) --- */
.marketing-premium-section {
  position: relative;
  padding: 100px 0;
  background: #0F172A;
  overflow: hidden;
  color: #ffffff;
}

.marketing-premium-section .marketing-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 40%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.marketing-premium-section .badge-premium {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.marketing-premium-section .text-gradient-gold {
  background: linear-gradient(135deg, #FFF 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marketing-premium-section .marketing-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.marketing-premium-section .m-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.marketing-premium-section .icon-glass {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  flex-shrink: 0;
}

.marketing-premium-section .glass-dashboard-wrapper {
  position: relative;
  padding: 40px;
  perspective: 1000px;
}

.marketing-premium-section .glass-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
  height: 350px;
  display: flex;
  flex-direction: column;
}

.marketing-premium-section .glass-dashboard:hover {
  transform: rotateY(0) rotateX(0);
}

.marketing-premium-section .stat-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatAnim 6s ease-in-out infinite;
}

.marketing-premium-section .stat-floating.float-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.marketing-premium-section .stat-floating.float-2 {
  bottom: 60px;
  left: 0px;
  animation-delay: 3s;
}

.marketing-premium-section .marketing-graph {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.marketing-premium-section .graph-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: height 1s ease, background-color 0.3s ease;
}

.marketing-premium-section .graph-bar.active,
.marketing-premium-section .graph-bar:hover {
  background: linear-gradient(to top, rgba(255, 193, 7, 0.5), rgba(255, 193, 7, 0.8));
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.marketing-premium-section .bar-tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  color: #0F172A;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.marketing-premium-section .graph-bar.active .bar-tooltip,
.marketing-premium-section .graph-bar:hover .bar-tooltip {
  opacity: 1;
}

/* Yardımcı Sınıflar (Utilities) */
.bg-success-soft {
  background-color: rgba(40, 167, 69, 0.1) !important;
}

.font-xs {
  font-size: 0.75rem !important;
}

.font-sm {
  font-size: 0.875rem !important;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
  .marketing-premium-section .glass-dashboard-wrapper {
    padding: 20px 0;
    margin-top: 50px;
  }

  .marketing-premium-section .stat-floating.float-2 {
    left: 10px;
  }
}

/* Çerez Politikası */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(24, 28, 35, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 9999;
    display: none; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.cookie-text i {
    font-size: 24px;
    color: #F5C721;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.cookie-modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: cookieModalScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieModalScale {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #1A1C23;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-modal-header h3 i {
    color: #F5C721;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6B7280;
    transition: 0.2s;
}

.close-btn:hover { color: #1A1C23; }

.cookie-option-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.cookie-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.option-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1A1C23;
}

.option-info p {
    margin: 0;
    font-size: 13px;
    color: #6B7280;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #D1D5DB;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider { background-color: #F5C721; }
input:checked + .slider:before { transform: translateX(20px); }
.slider.round { border-radius: 24px; }
.slider.round:before { border-radius: 50%; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; flex-direction: column; }
    .cookie-modal-content { padding: 25px; }
}