:root {
  --primary-color: #03eb69;
  --secondary-color: #131316;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  margin: 0 !important;
  padding: 0 !important;
  /* overflow-x: hidden; */
}
[class*="-hero"],
.hero-banner {
  margin-top: 0 !important;
  position: relative;
}
.section-premium {
  padding: 100px 0;
  position: relative;
}
.section-tag-premium {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.premium-title {
  font-weight: 900;
  margin-bottom: 25px;
  font-size: 3rem;
  line-height: 1.2;
}
.feature-card-premium {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.feature-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}
.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(3, 235, 105, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}
.feature-card-premium:hover .feature-icon-wrapper {
  background: var(--primary-color);
  transform: rotate(90deg) scale(1.1);
}
.feature-card-premium:hover .feature-icon-wrapper img {
  filter: brightness(0) invert(1);
}
.benefit-item-premium {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
}
.benefit-icon-premium {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(3, 235, 105, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.benefit-item-premium:hover .benefit-icon-premium {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}
.team-card-premium {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}
.team-card-premium:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-10px);
}
.team-card-premium .thumb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  border: 4px solid rgba(3, 235, 105, 0.2);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.gap-extra {
  display: flex !important;
  gap: 20px !important;
}
.row-gap-extra {
  row-gap: 50px !important;
}
.glow-bg {
  position: relative;
}
.glow-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(3, 235, 105, 0.05) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.contact-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1557682224-5b8590cd9ec5?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  color: white;
  text-align: center;
}
.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1px solid #f0f0f0;
  height: 100%;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f9fbfd;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.info-item:hover {
  background: rgba(3, 235, 105, 0.05);
  transform: translateX(10px);
}
.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.info-content h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--secondary-color);
}
.info-content p {
  margin-bottom: 0;
  color: var(--text-muted);
}
.form-control-premium {
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fbfd;
  width: 100%;
}
.form-control-premium:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(3, 235, 105, 0.1);
  background: #fff;
  outline: none;
}
.btn-premium-contact {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(3, 235, 105, 0.3);
  cursor: pointer;
}
.btn-premium-contact:hover {
  background: #02d45e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 235, 105, 0.4);
  color: white;
}
.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}
.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-weight: 800;
  color: var(--secondary-color);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: calc(100% - 30px);
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(3, 235, 105, 0.15);
  border-color: var(--primary-color);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(3, 235, 105, 0.1);
  color: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: white;
}
.mission-section {
  padding: 80px 0;
  background: #f9fbfd;
}
.mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.creative-section {
  background: var(--secondary-color);
  color: white;
  padding: 80px 0;
  border-radius: 40px;
  margin: 60px 0;
}
.creative-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.creative-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}
.premium-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--secondary-color);
}
.premium-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
  font-size: 1.2rem;
}
.dating-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 200px 0 120px;
  color: white;
  text-align: center;
}
.dating-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
}
.img-premium-hold {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: transform 0.3s ease;
}
.img-premium-hold:hover {
  transform: scale(1.02);
}
.btn-premium-action {
  background: var(--primary-color);
  color: white;
  padding: 15px 35px;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-premium-action:hover {
  background: #02d45e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(3, 235, 105, 0.2);
  color: white;
}
.btn-outline-premium {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 13px 35px;
  border-radius: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-premium:hover {
  background: var(--primary-color);
  color: white;
}
.blog-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1550684848-fac1c5b4e853?q=80&w=2000&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
  padding: 180px 0 100px;
  color: white;
  text-align: center;
}
.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.search-container {
  margin-top: -32px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.search-box {
  background: #fff;
  padding: 6px 6px 6px 20px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  border: 1px solid #eee;
}
.search-box i {
  color: #adb5bd;
  font-size: 1.1rem;
}
.search-box input {
  border: none;
  padding: 10px 0;
  flex-grow: 1;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: var(--secondary-color);
}
.btn-search {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-search:hover {
  background: #02d45e;
  transform: scale(1.05);
  color: white;
}
.filter-section {
  padding: 25px 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #eee;
}
.category-select {
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-weight: 600;
  color: var(--secondary-color);
  outline: none;
  cursor: pointer;
  background-color: #fff;
  min-width: 200px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 16px 12px;
}
.category-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(3, 235, 105, 0.1);
}
.view-toggle {
  display: flex;
  align-items: center;
}
.view-toggle button {
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 10px 18px;
  border-radius: 12px;
  margin-left: 8px;
  color: var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-toggle button:hover {
  background: #eee;
}
.view-toggle button.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(3, 235, 105, 0.2);
}
.blog-card {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: #fff;
}
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.blog-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-card .card-body {
  padding: 40px !important;
}
.list-view .blog-post {
  width: 100% !important;
}
.list-view .blog-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  min-height: 350px;
}
.list-view .blog-card .overflow-hidden {
  width: 40% !important;
  min-width: 350px !important;
  flex-shrink: 0;
}
.list-view .blog-card img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}
.list-view .card-body {
  padding: 40px 60px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (max-width: 991px) {
  .list-view .blog-card {
    flex-direction: column !important;
  }
  .list-view .blog-card .overflow-hidden {
    width: 100% !important;
    min-width: 100% !important;
  }
  .list-view .card-body {
    padding: 30px !important;
  }
}
.blog-meta {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-title {
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--secondary-color);
  line-height: 1.4;
  font-size: 1.4rem;
}
.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-read-more {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 15px;
}
.btn-read-more:hover {
  gap: 12px;
  color: #02d45e;
  text-decoration: none;
}
.modal-content {
  border: none;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1050;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--secondary-color);
  font-size: 1.2rem;
}
.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--primary-color);
  color: #fff;
}
.modal-img-container {
  height: 100%;
  min-height: 500px;
  position: relative;
}
.modal-img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.modal-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}
.modal-content-section {
  padding: 60px;
  overflow-y: auto;
}
.modal-meta-premium {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  font-size: 0.9rem;
}
.modal-title-premium {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 30px;
}
.modal-text-premium {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.modal-list-premium {
  padding-left: 0;
  list-style: none;
  margin-top: 35px;
}
.modal-list-premium li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.modal-list-premium li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
  font-size: 1.4rem;
}
@media (max-width: 991px) {
  .modal-img-container {
    min-height: 350px;
    height: 350px;
  }
  .modal-content-section {
    padding: 40px;
  }
  .modal-title-premium {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .modal-content-section {
    padding: 30px 20px;
  }
  .modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
.pricing-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 200px 0 120px;
  color: white;
  text-align: center;
}
.pricing-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px 40px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.pricing-card.featured {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: scale(1.05);
  z-index: 2;
}
.policy-hero,
.terms-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  color: white;
  text-align: center;
}
.policy-nav,
.terms-nav {
  position: sticky;
  top: 120px;
  height: fit-content;
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #eee;
}
.policy-card,
.terms-card {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  line-height: 1.8;
  color: var(--text-muted);
}
