.hero-premium-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url("../images/slider/slider4-1.png") no-repeat center
    center/cover;
  overflow: hidden;
}

.hero-premium-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 41, 26, 0.98) 0%,
    rgba(51, 51, 51, 0.79) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
  z-index: 1;
}

.hero-content-card {
  position: relative;
  z-index: 2;
  padding: 60px;
  background: rgba(125, 165, 129, 0.35);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  animation: fadeInSlideLeft 1s ease-out;
}

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

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--success);
  background: linear-gradient(90deg, #37cc8e, #8bf7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.premium-btn {
  padding: 18px 42px;
  background: var(--success);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(10, 61, 39, 0.3);
}

.premium-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(10, 61, 39, 0.5);
  background: #11ab6e;
  color: var(--white);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-content-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero-premium-section {
    height: auto;
    padding: 100px 0;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-content-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  .hero-premium-section::before {
    background: rgba(10, 28, 18, 0.85);
  }
}

.service-premium-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
}

.service-premium-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--success);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(10, 61, 39, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.service-premium-card:hover .service-icon-wrapper {
  background: var(--success);
  transform: scale(1.1) rotate(5deg);
}

.service-premium-card:hover .service-icon-wrapper i {
  color: var(--white);
}

.service-premium-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--on-surface);
}

.service-premium-card p {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.5;
}

.service-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: var(--success);
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-premium-card:hover .service-glow {
  opacity: 0.15;
}

.premium-cta {
  background: url("../images/cta/cta_premium.png") no-repeat center center/cover;
  padding: 120px 0;
  position: relative;
  text-align: center;
  border-radius: 40px;
  margin: 0 16px 100px;
  overflow: hidden;
}

.premium-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 18, 0.7);
  z-index: 1;
}

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

.cta-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.cta-glass-btn {
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-glass-btn:hover {
  background: var(--success);
  border-color: var(--success);
  transform: scale(1.05);
  color: var(--white);
}

@media (max-width: 768px) {
  .premium-cta {
    padding: 80px 20px;
    border-radius: 20px;
  }
  .cta-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .cta-glass-btn {
    width: 100%;
    text-align: center;
  }
}

.blog-premium-item {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}

.blog-premium-item .img-wrapper {
  overflow: hidden;
  height: 250px;
}

.blog-premium-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-premium-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--success);
}

.blog-premium-item:hover img {
  transform: scale(1.1);
}

.blog-premium-item .content {
  padding: 24px;
}

.blog-premium-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-premium-item:hover h3 {
  color: var(--success);
}

/* --- FAQ Section 100vw & Premium Polish --- */
.faqs-block.style-one {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--surface);
}

.faqs-block.style-one > .row {
  width: 100% !important;
  margin: 0 !important;
  min-height: 720px;
}

.faqs-block.style-one > .row > div:first-child .bg-img {
  height: 60% !important;
}

.faqs-block.style-one > .row > div:first-child .desc {
  height: 40% !important;
  padding: 40px !important;
}

.faqs-block.style-one > .row > div:first-child .desc .content {
  width: 90% !important;
  max-width: 600px !important;
}

.faqs-block.style-one > .row > div:last-child .content-main {
  width: 100% !important;
  max-width: 800px !important;
  padding: 80px 60px !important;
  margin: 0 auto;
}

/* Premium FAQ items */
.question-item {
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--line) !important;
  margin-bottom: 20px;
  border-radius: 16px !important;
}

.question-item:hover {
  border-color: var(--success) !important;
  box-shadow: 0 15px 35px rgba(10, 61, 39, 0.1) !important;
  transform: translateY(-2px);
}

.question-item.open {
  border-color: var(--success) !important;
  box-shadow: 0 10px 30px rgba(10, 61, 39, 0.05) !important;
}

.question-item .question-item-main {
  color: var(--on-surface) !important;
  font-weight: 700 !important;
  transition: color 0.3s ease;
}

.question-item:hover .question-item-main {
  color: var(--success) !important;
}

.question-item i.ph-plus {
  transition: transform 0.4s ease;
  color: var(--secondary);
}

.question-item.open i.ph-plus {
  transform: rotate(45deg);
  color: var(--success);
}

.faqs-block.style-one > .row > div:first-child .bg-img img {
  max-height: none !important;
  height: 100% !important;
}

.faqs-block.style-one .heading3 {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: var(--on-surface);
  margin-bottom: 24px;
}

@media (max-width: 1169px) {
  .faqs-block.style-one > .row > div:last-child .content-main {
    padding: 60px 20px !important;
  }
  .faqs-block.style-one .heading3 {
    font-size: 32px !important;
  }
}

.most-popular {
  position: absolute;
  background-color: #f7f7f7;
  padding: 7px 20px;
  border: 1px solid #000;
  border-radius: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
  /* font-weight: bold; */
  font-size: 18px;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(10deg);
}

.price-save {
  font-size: 14px;
  font-weight: bold;
  /* color: #000; */
  display: flex;
  align-items: center;
  gap: 10px;
}

.save-amount {
  font-size: 16px;
  /* color: #000; */
  text-decoration: line-through;
}

.save-percent {
  font-size: 14px;
  padding: 8px;
  background-color: #b7e4c7;
  border: 0.2px solid rgba(0, 0, 0, 0.5);
  color: #1b4332;
  border-radius: 20px;
}

/* --- Navigation Active States --- */
.nav-link {
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
  position: relative;
  padding-bottom: 4px; /* Space for indicator */
}

.nav-link.active,
.nav-link-mobile.active {
  color: var(--success) !important;
  font-weight: 700 !important;
}

/* Desktop indicator */
@media (min-width: 1170px) {
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 4;
    width: 0;
    height: 2px;
    background-color: var(--success);
    border-radius: 2px;
    transition: width 0.3s ease;
  }

  .nav-link.active::after {
    width: 100%;
  }
}

/* --- Antigravity Utility Classes --- */
.flex-columns { display: flex; flex-direction: column; }
.flex-item-center { display: flex; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }

.rounded-8 { border-radius: 8px; }
.rounded-12 { border-radius: 12px; }
.rounded-16 { border-radius: 16px; }
.rounded-24 { border-radius: 24px; }
.rounded-pill { border-radius: 100px; }
.rounded-circle { border-radius: 50%; }

.bg-surface { background: var(--surface) !important; }
.bg-white { background: var(--white) !important; }
.bg-blue { background: var(--blue) !important; }
.bg-success { background: var(--success) !important; }

.border-line { border: 1px solid var(--line) !important; }
.border-bottom-line { border-bottom: 1px solid var(--line) !important; }
.border-top-line { border-top: 1px solid var(--line) !important; }

.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.text-uppercase { text-transform: uppercase; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.italic { font-style: italic; }
.fw-700 { font-weight: 700; }
