/*******************************************************/
/******************** SEO Pages ***********************/
/*******************************************************/

.seo-page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(201, 243, 29, 0.06) 0%, transparent 55%);
}

.seo-page-hero .seo-badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1px solid rgba(201, 243, 29, 0.35);
  border-radius: 50px;
  background: rgba(201, 243, 29, 0.08);
}

.seo-page-hero .page-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 22px;
  color: #fff;
}

.seo-page-hero .page-title span {
  color: var(--primary-color);
}

.seo-page-hero .seo-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.seo-page-hero .breadcrumb {
  margin-bottom: 28px;
}

.seo-page-hero .breadcrumb li span {
  color: var(--primary-color);
}

.seo-page-main {
  padding: 50px 0 90px;
}

.seo-page-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .seo-page-grid {
    grid-template-columns: 1fr;
  }
}

.seo-page-sidebar {
  position: sticky;
  top: 120px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.seo-page-sidebar h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.seo-page-sidebar nav a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.seo-page-sidebar nav a:hover,
.seo-page-sidebar nav a.active {
  color: var(--primary-color);
  padding-left: 6px;
}

.seo-page-sidebar .sidebar-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-page-sidebar .sidebar-cta .theme-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.seo-page-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.seo-page-content > p:first-child {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 24px 28px;
  margin-bottom: 36px;
  border-radius: 14px;
  border-left: 4px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.04);
}

.seo-page-content h2 {
  font-size: 1.55rem;
  margin: 42px 0 16px;
  padding-bottom: 12px;
  color: #fff;
  border-bottom: 1px solid rgba(201, 243, 29, 0.2);
}

.seo-page-content h2:first-of-type {
  margin-top: 0;
}

.seo-page-content p {
  margin-bottom: 18px;
}

.seo-page-content ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.seo-page-content ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-page-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-color);
  font-size: 14px;
}

.seo-page-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-page-content a:hover {
  color: #fff;
}

.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

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

.seo-feature-card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.seo-feature-card:hover {
  border-color: rgba(201, 243, 29, 0.35);
  transform: translateY(-4px);
}

.seo-feature-card .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  font-size: 22px;
  color: var(--primary-color);
  background: rgba(201, 243, 29, 0.12);
}

.seo-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fff;
}

.seo-feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.seo-pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .seo-pricing-strip {
    grid-template-columns: 1fr;
  }
}

.seo-pricing-strip .pricing-item {
  height: 100%;
}

.seo-faq-wrap .accordion-item {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.seo-faq-wrap .accordion-button {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 22px 28px;
  color: #fff;
  background: transparent;
  box-shadow: none !important;
}

.seo-faq-wrap .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: rgba(201, 243, 29, 0.06);
}

.seo-faq-wrap .accordion-body {
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

.seo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 991px) {
  .seo-contact-grid {
    grid-template-columns: 1fr;
  }
}

.seo-contact-cards {
  display: grid;
  gap: 16px;
}

.seo-contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.seo-contact-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary-color);
  background: rgba(201, 243, 29, 0.12);
  font-size: 20px;
}

.seo-contact-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.seo-contact-card p,
.seo-contact-card a {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.seo-contact-form {
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.seo-contact-form h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}

.seo-contact-form .form-control,
.seo-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.seo-contact-form .form-control:focus,
.seo-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(201, 243, 29, 0.15);
}

.seo-contact-form .form-control::placeholder,
.seo-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.seo-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.seo-city-links a {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.seo-city-links a:hover {
  color: #0a0a0a;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.seo-page-cta {
  padding: 0 0 100px;
}

.seo-page-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 40px 44px;
  border-radius: 20px;
  border: 1px solid rgba(201, 243, 29, 0.25);
  background: linear-gradient(135deg, rgba(201, 243, 29, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

@media (max-width: 767px) {
  .seo-page-cta-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

.seo-page-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #fff;
}

.seo-page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.seo-page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.seo-page-cta-actions .theme-btn {
  text-align: center;
  justify-content: center;
}

.seo-en-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}
