.select-display {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  cursor: pointer;
  gap: 0.6rem;
}

.select-display i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease;
}

.select-display.open i {
  transform: rotate(180deg);
}
i[class^="fa-"],
i[class*=" fa-"] {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

i.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f3449;
  background: #f5f7fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 80%;
  margin: 0 auto;
}

.announcement-bar {
  background: #0d1116;
  color: #d9dce1;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  gap: 1rem;
}

.announcement-left a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f4f5f7;
  transition: color 0.3s ease;
}

.announcement-left a:hover {
  color: #59c4ff;
}

.announcement-center {
  text-align: center;
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: #f4f5f7;
}

.announcement-right a {
  color: inherit;
  transition: color 0.3s ease;
}

.announcement-right a:hover {
  color: #59c4ff;
}

.announcement-right .divider {
  color: rgba(255, 255, 255, 0.25);
}

.main-header {
  background: #050608;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.header-main {
  background: rgba(8, 13, 20, 0.96);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-main .container {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.brand-logo {
  width: 270px;
}

.partner-logo {
  width: 80px;
}

.header-slogan {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  min-height: 2rem;
}

.slogan-container {
  position: relative;
  width: 100%;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slogan-item {
  position: absolute;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slogan-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 992px) {
  .header-slogan {
    display: none;
  }
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 1rem;
  background: rgba(89, 196, 255, 0.1);
  border: 1px solid rgba(89, 196, 255, 0.25);
  border-radius: 14px;
  color: #e9f4ff;
}

.contact-phone .icon {
  font-size: 1.4rem;
  color: #59c4ff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.contact-details .label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(233, 244, 255, 0.75);
}

.phone-number {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.header-whatsapp {
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(27, 215, 65, 0.35);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-nav-bar {
  background: #040507;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.primary-nav li {
  position: relative;
  padding: 0.3rem 0.6rem;
}

.primary-nav li.has-dropdown {
  padding-right: 0.8rem;
}

.primary-nav li + li::before {
  content: '';
  position: absolute;
  left: -0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}
.primary-nav ul li ul li::before{
    display: none;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
}

.primary-nav a:hover {
  color: #59c4ff;
}

.primary-nav .has-dropdown i {
  font-size: 0.65rem;
  margin-left: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(8, 13, 20, 0.96);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 28px;
  width: 16px;
  height: 16px;
  background: inherit;
  transform: rotate(45deg);
  z-index: -1;
}

.dropdown-menu li {
  padding: 0;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.85);
}

.dropdown-menu a:hover {
  background: rgba(89, 196, 255, 0.12);
  color: #59c4ff;
}

.primary-nav li.has-dropdown:hover .dropdown-menu,
.primary-nav li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
  background: linear-gradient(135deg, #2d60ff, #19b8ff);
  color: #fff;
  box-shadow: 0 15px 30px rgba(45, 96, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f5f7fb;
  color: #1f3449;
  border: 1px solid rgba(31, 52, 73, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 31, 55, 0.07);
}

.btn-whatsapp {
  background: #1bd741;
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 215, 65, 0.3);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 97%), rgb(255 255 255 / 0%));
  z-index: -1;
}

.hero .container {
  padding: 4rem 0;
}

.hero__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero__form {
  display:  flex;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.hero__form .form-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 35, 63, 0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  z-index: 9999999;
}

.hero__form .form-field:focus-within {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.field-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero__form input,
.hero__form select {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
}

.hero__form input::placeholder,
.hero__form select {
  color: rgba(255, 255, 255, 0.75);
}

.hero__form input:focus,
.hero__form select:focus {
  outline: none;
}

.select-field {
  position: relative;
}

.select-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background: transparent;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.4rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(15, 31, 55, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.select-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.select-dropdown li {
  list-style: none;
}

.select-dropdown button {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0c233f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.select-dropdown button:hover,
.select-dropdown button[aria-selected="true"] {
  background: rgba(45, 96, 255, 0.12);
  color: #2d60ff;
}

.select-chevron {
  position: absolute;
  right: 1rem;
  pointer-events: none;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero__form button {
  border-radius: 14px;
  border: none;
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

.brands {
  background: #fff;
  padding: 1.5rem 0;
  margin-top: -60px;
  box-shadow: 0 5px 19px rgba(15, 31, 55, 0.08);
  border-radius: 20px;
  width: min(1060px, 85%);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-bottom: 20px;
}

.brand-carousel {
  position: relative;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 2.5rem;
  animation: brand-scroll 18s linear infinite;
}

.brand-slide {
  display: inline-flex;
  gap: 2.5rem;
}

.brand-slide img {
  filter: grayscale(100%);
  opacity: 0.65;
  transition: opacity 0.3s ease;
  width: 130px;
  height: 45px;
  object-fit: contain;
}

.brand-slide img:hover {
  opacity: 1;
  filter: none;
}

@keyframes brand-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.section-lead {
  max-width: 760px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
  color: #637089;
  font-size: 1.05rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
  color: #10253f;
}

.section-heading.align-left {
  text-align: left;
  margin: 0 0 3rem;
}

.section-heading .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #59c4ff;
  font-weight: 600;
}

.section-heading p {
  color: #637089;
  margin: 0;
}

section {
  padding: 5rem 0;
}

.services {
  background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%);
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  overflow: hidden;
}

.service-tabs {
  display: grid;
  gap: 1rem;
  background: rgba(12, 35, 63, 0.04);
  padding: 1.4rem;
  border-radius: 28px;
  position: sticky;
  top: 120px;
  box-shadow: 0 20px 45px rgba(15, 31, 55, 0.08);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.2rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(45, 96, 255, 0.08);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  color: #0c1b33;
}

.service-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 96, 255, 0.3);
}

.service-tab strong {
  display: block;
  font-size: 0.95rem;
}

.service-tab small {
  font-size: 0.75rem;
  color: #637089;
}

.service-tab .tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-tab.is-active {
  border-color: rgba(45, 96, 255, 0.45);
  box-shadow: 0 18px 40px rgba(45, 96, 255, 0.22);
}

.service-tab.is-active small {
  color: #2d60ff;
}

/* Yatay Slider Menü Wrapper */
.service-tabs-wrapper {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  height: fit-content;
}

.service-tabs-scroll {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 96, 255, 0.3) transparent;
  padding: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 20px 45px rgba(15, 31, 55, 0.08);
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  max-height: 600px;
  box-sizing: border-box;
}

.service-tabs-scroll::-webkit-scrollbar {
  width: 8px;
}

.service-tabs-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.service-tabs-scroll::-webkit-scrollbar-thumb {
  background: rgba(45, 96, 255, 0.3);
  border-radius: 10px;
}

.service-tabs-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 96, 255, 0.5);
}

.service-tabs-scroll .service-tab {
  display: flex !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  white-space: normal;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Slider Navigation Buttons */
.service-tabs-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(45, 96, 255, 0.15);
  color: #2d60ff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(15, 31, 55, 0.1);
}

.service-tabs-nav:hover {
  background: #2d60ff;
  color: #fff;
  border-color: #2d60ff;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(45, 96, 255, 0.3);
}

.service-tabs-nav:active {
  transform: translateX(-50%) scale(0.95);
}

.service-tabs-prev {
  top: -20px;
}

.service-tabs-prev i {
  transform: rotate(90deg);
}

.service-tabs-next {
  bottom: -20px;
}

.service-tabs-next i {
  transform: rotate(90deg);
}

.service-tabs-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .service-tabs-prev {
    top: -10px;
  }

  .service-tabs-next {
    bottom: -10px;
  }

  .service-tabs-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

.service-panels {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(45, 96, 255, 0.06);
}

.service-panel {
  display: none;
  animation: panel-fade 0.35s ease forwards;
}

.service-panel.is-active {
  display: block;
}

.panel-header {
  padding: 2.6rem 3rem 0;
  display: grid;
  gap: 1.2rem;
}

.panel-header h3 {
  font-size: 1.8rem;
  color: #0c1b33;
  line-height: 1.25;
}

.panel-header p {
  font-size: 0.98rem;
  color: #4a5873;
  max-width: 640px;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 96, 255, 0.12);
  color: #2d60ff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 2rem;
  padding: 2.2rem 3rem 2.8rem;
  align-items: start;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  color: #485570;
}

.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.97rem;
  line-height: 1.65;
}

.panel-list i {
  color: #2d60ff;
  margin-top: 0.2rem;
}

.panel-side {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.metric-chip {
  background: rgba(45, 96, 255, 0.08);
  color: #2d60ff;
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  display: grid;
  gap: 0.2rem;
  font-weight: 600;
}

.metric-chip span {
  font-size: 1.4rem;
}

.metric-chip small {
  font-weight: 500;
  font-size: 0.8rem;
  color: #4a5873;
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq {
  background: radial-gradient(circle at top left, rgba(45, 96, 255, 0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(25, 184, 255, 0.1), transparent 45%),
              #ffffff;
  position: relative;
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-card {
  background: linear-gradient(160deg, #111d3f 0%, #1f3c7a 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2.6rem 2.2rem;
  display: grid;
  gap: 1.2rem;
  box-shadow: 0 28px 46px rgba(15, 31, 55, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-card p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.faq-card li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.95rem;
}

.faq-card li i {
  color: #59c4ff;
}

.faq-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.faq-item {
  width: 49%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(15, 31, 55, 0.08);
  border: 1px solid rgba(45, 96, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at top, rgba(45, 96, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(45, 96, 255, 0.16);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0c1b33;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.faq-trigger span {
  display: inline-flex;
  gap: 0.75rem;
  text-align: left;
  line-height: 25px;
  align-items: center;
}

.faq-trigger span::before {
  content: '';
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: rgba(45, 96, 255, 0.2);
  border: 2px solid rgba(45, 96, 255, 0.55);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-trigger i {
  transition: transform 0.3s ease, color 0.3s ease;
  color: #2d60ff;
  font-size: 0.85rem;
}

.faq-trigger:hover {
  color: #2d60ff;
}

.faq-trigger:hover span::before {
  background: rgba(45, 96, 255, 0.35);
  border-color: rgba(45, 96, 255, 0.65);
}

.faq-trigger[aria-expanded="true"] {
  color: #2d60ff;
}

.faq-trigger[aria-expanded="true"] span::before {
  background: #2d60ff;
  border-color: #2d60ff;
}

.faq-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: #0c1b33;
}

.faq-panel {
  padding: 0 1.8rem 1.6rem;
  color: #4a5873;
  border-top: 1px solid rgba(45, 96, 255, 0.08);
  position: relative;
  z-index: 1;
}

.faq-panel p {
  margin-top: 1rem;
  line-height: 1.65;
}

.how-we-work {
  background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}

.process-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: #fff;
  border-radius: 22px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 96, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-icon {
  font-size: 2rem;
  color: #2d60ff;
  background: rgba(45, 96, 255, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-carousel .carousel-track {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 2.4rem 2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: grid;
  gap: 1.1rem;
  pointer-events: none;
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
  pointer-events: auto;
}

.testimonial-slide p {
  color: #10253f;
  font-size: 1rem;
  line-height: 1.7;
}

.slide-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slide-header .avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2d60ff, #19b8ff);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slide-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.slide-header span {
  font-size: 0.85rem;
  color: #637089;
}

.rating {
  margin-left: auto;
  display: inline-flex;
  gap: 0.2rem;
  color: #ffc860;
}

.carousel-control {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 15px 35px rgba(15, 31, 55, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #10253f;
}

.carousel-control:hover {
  transform: translateY(-2px);
}

.carousel-dots {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(45, 96, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.is-active {
  background: #2d60ff;
  transform: scale(1.1);
}

.contact {
  background: linear-gradient(180deg, #0c233f 0%, #132c52 100%);
  color: #fff;
}
.contact h2{color:#fff}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(6px);
  display: grid;
  gap: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
  font-size: 1.4rem;
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-card li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.contact-card li .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-card strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.contact-card span,
.contact-card a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.working-hours {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.working-hours i {
  margin-right: 0.4rem;
  color: #59c4ff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 12, 22, 0.75) 0%, rgba(5, 12, 22, 0.2) 100%);
  color: #fff;
  padding: 2rem;
  display: grid;
  gap: 0.8rem;
  align-content: end;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #59c4ff;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form {
  background: #fff;
  color: #10253f;
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: 0 20px 45px rgba(15, 31, 55, 0.35);
}

.contact-form h3 {
  color: #0c233f;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 1.2rem;
  margin-bottom: 1.3rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #46556b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(31, 52, 73, 0.12);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  background: #f7f9fc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(45, 96, 255, 0.35);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
}

.site-footer {
  background: #050c16;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: #2d60ff;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background: #2d60ff;
  border: none;
  color: #fff;
  width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.privacy {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.3rem 0;
  }

  .announcement-bar .container {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
  }

  .announcement-left,
  .announcement-right {
    font-size: 0.7rem;
  }

  .announcement-center {
    width: 100%;
    text-align: center;
    order: -1;
    font-size: 0.75rem;
  }

  .header-main .container {
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    width: 180px;
  }

  .partner-logo {
    width: 70px;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .header-contact {
    order: 3;
    width: 100%;
    gap: 0.8rem;
    display: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .header-contact.active {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .contact-phone {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.8rem;
  }

  .header-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .header-nav-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #040507;
    z-index: 1000;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .header-nav-bar .container-fluid {
    padding: 0;
  }

  .header-nav-bar .primary-nav {
    width: 100%;
  }

  .header-nav-bar.active {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: stretch;
    text-align: left;
  }

  .primary-nav li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .primary-nav li + li::before {
    display: none;
  }

  .primary-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 0.9rem;
    cursor: pointer;
    user-select: none;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
  }

  .primary-nav .has-dropdown > a {
    position: relative;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: block;
    min-width: auto;
    width: 100%;
    left: auto;
    top: auto;
  }

  .dropdown-menu::before {
    display: none;
  }

  .primary-nav li.has-dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .primary-nav li.has-dropdown.active > a i {
    transform: rotate(180deg);
  }

  .primary-nav li.has-dropdown > a i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
    margin-left: auto;
    display: inline-block;
    flex-shrink: 0;
  }

  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
  }

  .dropdown-menu a {
    padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    font-size: 0.85rem;
    text-align: left;
    width: 100%;
    display: block;
  }

  .brands {
    width: 92%;
  }

  .services-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-tabs {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .service-tabs-wrapper {
    position: static !important;
    top: auto !important;
    margin-top: 0;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    order: 1;
  }

  .service-panels {
    order: 2;
  }

  .service-tabs-nav {
    display: none;
  }

  .service-tabs-scroll {
    padding: 1rem;
    gap: 0.875rem;
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
  }

  .service-tabs-scroll .service-tab {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }

  .service-tabs-scroll .service-tab .tab-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }

  .service-tabs-scroll .service-tab strong {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .service-tabs-scroll .service-tab span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .testimonial-carousel {
    flex-direction: column;
  }

  .carousel-control {
    order: 2;
    position: absolute;
    bottom: -70px;
  }
  .carousel-control.prev{
    left: 0;
}
  .carousel-control.next{
    right: 0;
}
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 40px 40px;
    min-height: 480px;
    z-index: 9;
  }
.hero__content{
    display: flex;
    align-items: flex-start;
}
  .hero .container{
    padding: 0px;
}
  .hero__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  }

  .brands {
    margin-top: -30px;
    padding: 1.5rem 1rem;
  }

  section {
    padding: 4rem 0;
  }
  .faq-list .faq-item{
    width: 100%;
}

  .panel-body {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .announcement-bar {
    font-size: 0.7rem;
    padding: 0.25rem 0;
  }

  .announcement-bar .container {
    padding: 0.25rem 0.8rem;
    gap: 0.3rem;
  }

  .announcement-left a,
  .announcement-right a {
    font-size: 0.65rem;
  }

  .announcement-center {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .header-main {
    padding: 0.8rem 0;
  }

  .header-main .container {
    gap: 0.8rem;
    width: 95%;
  }

  .brand-logo {
    width: 209px;
    height: auto;
  }

  .partner-logo {
    width: 60px;
  }

  .site-brand {
    gap: 0.8rem;
  }

  .mobile-menu-toggle {
    padding: 0.4rem;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .contact-phone {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }

  .contact-phone .icon {
    font-size: 1.2rem;
  }

  .contact-details .label {
    font-size: 0.7rem;
  }

  .phone-number {
    font-size: 0.9rem;
  }

  .header-whatsapp {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .primary-nav a {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }

  .dropdown-menu a {
    padding: 0.7rem 1.2rem 0.7rem 2rem;
    font-size: 0.8rem;
    text-align: left;
  }

  .hero__content h1 {
    font-size: 2.1rem;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    gap: 1.5rem;
  }

  .service-tabs-wrapper {
    position: static !important;
    top: auto !important;
    margin-top: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
    order: 1;
  }

  .service-panels {
    order: 2;
  }

  .service-tabs-scroll {
    padding: 0.875rem;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
  }

  .service-tabs-scroll .service-tab {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0.75rem 0.875rem;
    gap: 0.75rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
  }

  .service-tabs-scroll .service-tab .tab-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .service-tabs-scroll .service-tab strong {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .service-tabs-scroll .service-tab span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
  }

  .testimonial-slide {
    padding: 2rem 1.4rem;
  }
}
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #a8b5ff 0%, #c5a8e8 100%);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #8fd3f4 0%, #84fab0 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #cfd9df 0%, #e2ebf0 100%);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}

.feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.feature-card:nth-child(9) .feature-icon {
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.feature-card:nth-child(10) .feature-icon {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}


/* Mobile Pricing Cards */
.pricing-section {
    position: relative;
    padding: 4rem 0;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
}

.mobile-pricing-cards {
    display: none;
}

.mobile-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.mobile-card.featured-mobile {
    border: 2px solid #ff6b9d;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.mobile-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.mobile-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.mobile-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.mobile-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.mobile-price .currency {
    font-size: 45px;
    font-weight: 600;
    color: #6fd26f;
    margin-left: 5px;
}

.mobile-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.mobile-period {
    font-size: 0.85rem;
    color: #868e96;
    margin-bottom: 1.5rem;
}

.mobile-cta {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.featured-mobile .mobile-cta {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
}

.featured-mobile .mobile-cta:hover {
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.45);
}

.featured-mobile .mobile-price .currency {
}

/* Mobile Features List */
.mobile-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.mobile-features li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-features li:last-child {
    border-bottom: none;
}

.mobile-features li i {
    color: #51cf66;
    margin-right: 0.8rem;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Pricing Table Container */
.pricing-table-container {
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(15, 31, 55, 0.10);
}

.pricing-table-container::-webkit-scrollbar {
    height: 6px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 10px;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
}

.comparison-table {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    min-width: 900px;
    border: 1px solid rgb(229 229 229 / 80%);
}

/* Table Row */
.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-row:hover {
    background: linear-gradient(90deg, #fafbfc 0%, #f5f9ff 100%);
    transform: translateX(5px);
}

.comparison-table .table-row:last-child {
    border-bottom: none;
}

/* Table Cell */
.table-cell {
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
    color: #495057;
}

.table-cell i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.table-cell i.fa-check-circle {
    color: #51cf66;
    background: #ebfbee;
    padding: 0.3rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(81, 207, 102, 0.2);
}

.table-cell i.fa-times {
    color: #dee2e6;
    background: #f8f9fa;
    padding: 0.3rem;
    border-radius: 50%;
}

.table-cell.featured {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
}

/* Feature Cell (First Column) */
.feature-cell {
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    font-weight: 600;
    color: #2c3e50;
    justify-content: flex-start;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.feature-cell h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Package Cell (Header Columns) */
.package-cell {
    flex-direction: column;
    padding: 1.5rem 1.5rem;
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
}

.package-cell:hover {
}

.package-cell.featured {
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f8 100%);
    box-shadow: inset 0 0 40px rgba(255, 107, 157, 0.05);
}

.package-cell h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.package-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-price {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-price .currency {
    font-size: 35px;
    font-weight: 600;
    color: #6fd26f;
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.package-period {
    font-size: 0.8rem;
    color: #868e96;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-detail {
    font-size: 0.8rem;
    color: #ff6b9d;
    margin-left: 0.5rem;
    font-weight: 600;
    background: #fff0f4;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Popular Badge for Table */
.package-cell .popular-badge {
    position: absolute;
    top: 10px;
    right: 0px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    letter-spacing: 0.5px;
    border-radius: 10px 0px 0px 10px;
}

/* Table Header */
.table-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

/* Plan Icon */
.plan-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.35);
    position: relative;
    transition: all 0.4s ease;
}

.plan-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(167, 139, 250, 0.45);
}

.package-cell.featured .plan-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 50%, #ffb3c6 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.package-cell.featured .cta-button {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8cab 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
}

.package-cell.featured .cta-button:hover {
    background: linear-gradient(135deg, #ff8cab 0%, #ff6b9d 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.45);
}

/* Additional Info */
.additional-info {
    background: #ffffff;
    border-radius: 25px;
    padding: 2rem 2rem;
    box-shadow: 0 10px 60px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.additional-info h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f3f5;
}

.info-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
    border-color: #e7f3ff;
}

.info-item i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (min-width: 1080px) {
    .pricing-wrapper {
    }

    .mobile-pricing-cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    }

    .pricing-table-container {
        margin-bottom: 0;
    }
}

@media (max-width: 1080px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .mobile-pricing-cards {
        display: grid;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .comparison-table {
        min-width: 800px;
    }
}

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

    .mobile-pricing-cards {
        display: grid;
        gap: 1.2rem;
    }
    
    .pricing-table-container {
        display: none;
    }
    
    .additional-info {
        padding: 1.5rem 1rem;
        border-radius: 15px;
        margin: 0;
    }
    
    .additional-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.2rem 1rem;
    }
    
    .info-item i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .package-cell {
        padding: 1rem 0.6rem;
    }
    
    .package-cell h3 {
        font-size: 1rem;
    }
    
    .package-subtitle {
        font-size: 0.7rem;
    }
    
    .package-price .currency {
        font-size: 0.9rem;
    }
    
    .package-price .amount {
        font-size: 1.6rem;
    }
    
    .package-period {
        font-size: 0.65rem;
    }
    
    .plan-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .table-cell {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .feature-cell {
        padding-left: 0.8rem;
        font-size: 0.8rem;
    }
    
    .feature-cell h3 {
        font-size: 0.95rem;
    }
    
    .table-cell i {
        font-size: 1rem;
    }
    
    .additional-info {
        padding: 1.2rem 0.8rem;
        margin: 0;
    }
    
    .additional-info h2 {
        font-size: 1.3rem;
    }
    
    .info-item {
        padding: 1rem 0.8rem;
    }
    
    .info-item i {
        font-size: 1.5rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    .brand-track{animation: brand-scroll 4s linear infinite;}
    .container{
      width: 95%;
    }
    .panel-header{padding: 2.6rem 1rem 0;}
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }