﻿@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800&display=swap");

.ht-lp {
  --ht-primary: #00b5a5 ;
  --ht-primary-dark: #009688 ;
  --ht-primary-light: #e6f9f7 ;
  --ht-primary-muted: rgba(0, 181, 165, 0.12) ;
  --ht-cyan-bg: #eef9f8 ;
  --ht-cyan-section: #e8f6f5 ;
  --ht-foreground: #1e293b ;
  --ht-muted: #64748b ;
  --ht-border: #e2e8f0 ;
  --ht-card: #ffffff ;
  --ht-gradient-hero: linear-gradient(135deg, #dff5f3 0%, #f0faf9 35%, #ffffff 72%) ;
  --ht-gradient-cta: linear-gradient(90deg, #00b5a5 0%, #00a3c4 55%, #0099cc 100%) ;
  --ht-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) ;
  --ht-shadow-lg: 0 12px 40px rgba(0, 181, 165, 0.15) ;
  --ht-radius: 16px ;
  --ht-radius-lg: 20px ;
  --ht-radius-pill: 999px ;
  direction: rtl ;
  font-family: Vazirmatn, Tahoma, system-ui, sans-serif ;
  font-size: 16px ;
  line-height: 1.7 ;
  color: var(--ht-foreground) ;
  background: #ffffff ;
  -webkit-font-smoothing: antialiased ;
  box-sizing: border-box ;
  text-align: right ;
}

.ht-lp *,
.ht-lp *::before,
.ht-lp *::after {
  box-sizing: border-box ;
}

.ht-lp img {
  max-width: 100% ;
  height: auto ;
  display: block ;
}

.ht-lp a {
  text-decoration: none ;
  color: inherit ;
}

.ht-lp button,
.ht-lp input,
.ht-lp select {
  font-family: inherit ;
}

.ht-lp .ht-container {
  max-width: 1140px ;
  margin-left: auto ;
  margin-right: auto ;
  padding-left: 20px ;
  padding-right: 20px ;
}

.ht-lp .ht-kicker {
  display: inline-block ;
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--ht-primary) ;
  margin-bottom: 12px ;
}

.ht-lp .ht-kicker--center {
  display: block ;
  text-align: center ;
}

.ht-lp .ht-h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem) ;
  font-weight: 800 ;
  line-height: 1.35 ;
  color: var(--ht-foreground) ;
  margin: 0 0 10px ;
}

.ht-lp .ht-h2--center {
  text-align: center ;
}

.ht-lp .ht-sub {
  font-size: 15px ;
  color: var(--ht-muted) ;
  margin: 0 ;
  line-height: 1.75 ;
}

.ht-lp .ht-sub--center {
  text-align: center ;
}

.ht-lp .ht-section-head {
  text-align: center ;
  margin-bottom: 40px ;
}

.ht-lp .ht-section-head .ht-sub {
  max-width: 520px ;
  margin-left: auto ;
  margin-right: auto ;
}

/* Hero */
.ht-lp .ht-hero {
  background: var(--ht-gradient-hero) ;
  padding: 48px 0 56px ;
}

.ht-lp .ht-hero-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 36px ;
  align-items: center ;
}

@media (min-width: 992px) {
  .ht-lp .ht-hero-grid {
    grid-template-columns: 1fr 1fr ;
    gap: 48px ;
  }
}

.ht-lp .ht-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem) ;
  font-weight: 800 ;
  line-height: 1.3 ;
  color: var(--ht-foreground) ;
  margin: 0 0 16px ;
}

.ht-lp .ht-hero-desc {
  font-size: 15px ;
  color: var(--ht-muted) ;
  margin: 0 0 28px ;
  line-height: 1.85 ;
  max-width: 480px ;
}

.ht-lp .ht-hero-btns {
  display: flex ;
  flex-wrap: wrap ;
  gap: 12px ;
  margin-bottom: 32px ;
}

.ht-lp .ht-btn {
  display: inline-flex ;
  align-items: center ;
  justify-content: center ;
  gap: 8px ;
  padding: 13px 28px ;
  font-size: 14px ;
  font-weight: 700 ;
  border-radius: var(--ht-radius-pill) ;
  border: 2px solid transparent ;
  cursor: pointer ;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s ;
}

.ht-lp .ht-btn:focus-visible {
  outline: 2px solid var(--ht-primary) ;
  outline-offset: 3px ;
}

.ht-lp .ht-btn--primary {
  background: var(--ht-primary) ;
  color: #fff ;
  border-color: var(--ht-primary) ;
  box-shadow: 0 8px 24px rgba(0, 181, 165, 0.28) ;
}

.ht-lp .ht-btn--primary:hover {
  background: var(--ht-primary-dark) ;
  border-color: var(--ht-primary-dark) ;
  color: #fff ;
}

.ht-lp .ht-btn--outline {
  background: #fff ;
  color: var(--ht-primary) ;
  border-color: var(--ht-primary) ;
}

.ht-lp .ht-btn--outline:hover {
  background: var(--ht-primary-light) ;
  color: var(--ht-primary-dark) ;
}

.ht-lp .ht-hero-trust {
  display: flex ;
  flex-wrap: wrap ;
  gap: 20px 28px ;
}

.ht-lp .ht-hero-trust-item {
  display: flex ;
  align-items: center ;
  gap: 10px ;
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--ht-foreground) ;
}

.ht-lp .ht-hero-trust-icon {
  width: 40px ;
  height: 40px ;
  border-radius: 50% ;
  background: var(--ht-primary-muted) ;
  color: var(--ht-primary) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  flex-shrink: 0 ;
}

.ht-lp .ht-hero-trust-icon svg {
  width: 20px ;
  height: 20px ;
}

.ht-lp .ht-hero-visual {
  position: relative ;
}

.ht-lp .ht-hero-img-wrap {
  border-radius: var(--ht-radius-lg) ;
  overflow: hidden ;
  box-shadow: var(--ht-shadow-lg) ;
}

.ht-lp .ht-hero-img-wrap img {
  width: 100% ;
  aspect-ratio: 4 / 3.2 ;
  object-fit: cover ;
}

.ht-lp .ht-hero-caption {
  position: absolute ;
  top: 16px ;
  right: 16px ;
  left: 16px ;
  font-size: 12px ;
  font-weight: 600 ;
  color: #fff ;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45) ;
  text-align: center ;
  pointer-events: none ;
}

.ht-lp .ht-hero-badge {
  position: absolute ;
  bottom: 20px ;
  right: 20px ;
  background: #fff ;
  border-radius: 14px ;
  padding: 14px 18px ;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12) ;
  text-align: right ;
}

.ht-lp .ht-hero-badge strong {
  display: block ;
  font-size: 15px ;
  font-weight: 800 ;
  color: var(--ht-primary) ;
  margin-bottom: 2px ;
}

.ht-lp .ht-hero-badge span {
  font-size: 12px ;
  color: var(--ht-muted) ;
  font-weight: 500 ;
}

/* Benefits */
.ht-lp .ht-benefits {
  padding: 56px 0 ;
  background: #fff ;
}

.ht-lp .ht-benefits-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 20px ;
}

@media (min-width: 576px) {
  .ht-lp .ht-benefits-grid {
    grid-template-columns: repeat(2, 1fr) ;
  }
}

@media (min-width: 992px) {
  .ht-lp .ht-benefits-grid {
    grid-template-columns: repeat(4, 1fr) ;
  }
}

.ht-lp .ht-benefit-card {
  background: var(--ht-card) ;
  border-radius: var(--ht-radius) ;
  padding: 28px 22px ;
  box-shadow: var(--ht-shadow) ;
  border: 1px solid rgba(226, 232, 240, 0.6) ;
  transition: box-shadow 0.25s, transform 0.2s ;
}

.ht-lp .ht-benefit-card:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08) ;
}

.ht-lp .ht-benefit-icon {
  width: 52px ;
  height: 52px ;
  border-radius: 50% ;
  background: var(--ht-primary-muted) ;
  color: var(--ht-primary) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  margin-bottom: 18px ;
}

.ht-lp .ht-benefit-icon svg {
  width: 26px ;
  height: 26px ;
}

.ht-lp .ht-benefit-card h3 {
  font-size: 16px ;
  font-weight: 800 ;
  margin: 0 0 10px ;
  color: var(--ht-foreground) ;
}

.ht-lp .ht-benefit-card p {
  font-size: 13px ;
  color: var(--ht-muted) ;
  margin: 0 ;
  line-height: 1.75 ;
}

/* Portfolio */
.ht-lp .ht-portfolio {
  padding: 56px 0 ;
  background: var(--ht-cyan-section) ;
}

.ht-lp .ht-portfolio-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 20px ;
}

@media (min-width: 768px) {
  .ht-lp .ht-portfolio-grid {
    grid-template-columns: repeat(3, 1fr) ;
  }
}

.ht-lp .ht-portfolio-item {
  position: relative ;
  border-radius: var(--ht-radius) ;
  overflow: hidden ;
  box-shadow: var(--ht-shadow) ;
}

.ht-lp .ht-portfolio-item img {
  width: 100% ;
  aspect-ratio: 4 / 3 ;
  object-fit: cover ;
}

.ht-lp .ht-portfolio-tag {
  position: absolute ;
  bottom: 14px ;
  right: 14px ;
  background: #fff ;
  color: var(--ht-primary) ;
  font-size: 12px ;
  font-weight: 700 ;
  padding: 6px 14px ;
  border-radius: var(--ht-radius-pill) ;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) ;
}

/* Process */
.ht-lp .ht-process {
  padding: 56px 0 ;
  background: #fff ;
}

.ht-lp .ht-process-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 20px ;
}

@media (min-width: 576px) {
  .ht-lp .ht-process-grid {
    grid-template-columns: repeat(2, 1fr) ;
  }
}

@media (min-width: 992px) {
  .ht-lp .ht-process-grid {
    grid-template-columns: repeat(4, 1fr) ;
  }
}

.ht-lp .ht-process-card {
  position: relative ;
  background: var(--ht-card) ;
  border-radius: var(--ht-radius) ;
  padding: 28px 22px 24px ;
  border: 1px solid var(--ht-border) ;
  overflow: hidden ;
}

.ht-lp .ht-process-num {
  position: absolute ;
  top: 8px ;
  right: 12px ;
  font-size: 3.5rem ;
  font-weight: 800 ;
  color: rgba(148, 163, 184, 0.2) ;
  line-height: 1 ;
  pointer-events: none ;
}

.ht-lp .ht-process-icon {
  width: 44px ;
  height: 44px ;
  border-radius: 12px ;
  background: var(--ht-primary-muted) ;
  color: var(--ht-primary) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  margin-bottom: 16px ;
  margin-right: auto ;
}

.ht-lp .ht-process-icon svg {
  width: 22px ;
  height: 22px ;
}

.ht-lp .ht-process-card h3 {
  font-size: 15px ;
  font-weight: 800 ;
  margin: 0 0 8px ;
}

.ht-lp .ht-process-card p {
  font-size: 13px ;
  color: var(--ht-muted) ;
  margin: 0 ;
  line-height: 1.7 ;
}

/* Testimonials */
.ht-lp .ht-testimonials {
  padding: 56px 0 40px ;
  background: linear-gradient(180deg, #eef9f8 0%, #f5fcfb 100%) ;
}

.ht-lp .ht-testimonials-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 20px ;
  margin-bottom: 40px ;
}

@media (min-width: 768px) {
  .ht-lp .ht-testimonials-grid {
    grid-template-columns: repeat(3, 1fr) ;
  }
}

.ht-lp .ht-testimonial-card {
  background: var(--ht-card) ;
  border-radius: var(--ht-radius) ;
  padding: 26px 22px ;
  box-shadow: var(--ht-shadow) ;
}

.ht-lp .ht-stars {
  display: flex ;
  gap: 3px ;
  margin-bottom: 14px ;
  color: var(--ht-primary) ;
}

.ht-lp .ht-stars svg {
  width: 16px ;
  height: 16px ;
  fill: currentColor ;
}

.ht-lp .ht-testimonial-quote {
  font-size: 14px ;
  font-style: italic ;
  color: var(--ht-foreground) ;
  line-height: 1.85 ;
  margin: 0 0 16px ;
}

.ht-lp .ht-testimonial-author {
  font-size: 13px ;
  font-weight: 700 ;
  color: var(--ht-muted) ;
}

.ht-lp .ht-trust-logos {
  display: flex ;
  flex-wrap: wrap ;
  align-items: center ;
  justify-content: center ;
  gap: 28px 40px ;
  padding-top: 8px ;
}

.ht-lp .ht-trust-logo {
  display: flex ;
  flex-direction: column ;
  align-items: center ;
  gap: 8px ;
  opacity: 0.55 ;
  filter: grayscale(1) ;
  transition: opacity 0.25s ;
}

.ht-lp .ht-trust-logo:hover {
  opacity: 0.75 ;
}

.ht-lp .ht-trust-logo-icon {
  width: 48px ;
  height: 48px ;
  border: 2px solid #94a3b8 ;
  border-radius: 50% ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
}

.ht-lp .ht-trust-logo-icon svg {
  width: 24px ;
  height: 24px ;
  color: #64748b ;
}

.ht-lp .ht-trust-logo span {
  font-size: 11px ;
  font-weight: 600 ;
  color: var(--ht-muted) ;
  text-align: center ;
}

/* FAQ */
.ht-lp .ht-faq {
  padding: 56px 0 ;
  background: #fff ;
}

.ht-lp .ht-faq-list {
  max-width: 720px ;
  margin: 0 auto ;
  display: flex ;
  flex-direction: column ;
  gap: 12px ;
}

.ht-lp .ht-faq-item {
  border: 1px solid var(--ht-border) ;
  border-radius: var(--ht-radius) ;
  background: var(--ht-card) ;
  overflow: hidden ;
}

.ht-lp .ht-faq-item[open] {
  border-color: rgba(0, 181, 165, 0.35) ;
}

.ht-lp .ht-faq-item summary {
  list-style: none ;
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  gap: 16px ;
  padding: 18px 20px ;
  font-size: 15px ;
  font-weight: 600 ;
  color: var(--ht-foreground) ;
  cursor: pointer ;
  transition: background 0.2s ;
}

.ht-lp .ht-faq-item summary::-webkit-details-marker {
  display: none ;
}

.ht-lp .ht-faq-item summary:hover {
  background: var(--ht-primary-light) ;
}

.ht-lp .ht-faq-toggle {
  width: 32px ;
  height: 32px ;
  border-radius: 50% ;
  background: var(--ht-primary-muted) ;
  color: var(--ht-primary) ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
  flex-shrink: 0 ;
  transition: transform 0.25s, background 0.25s ;
}

.ht-lp .ht-faq-item[open] .ht-faq-toggle {
  background: var(--ht-primary) ;
  color: #fff ;
  transform: rotate(45deg) ;
}

.ht-lp .ht-faq-toggle svg {
  width: 18px ;
  height: 18px ;
}

.ht-lp .ht-faq-answer {
  padding: 0 56px 18px 20px ;
  font-size: 14px ;
  color: var(--ht-muted) ;
  line-height: 1.8 ;
  margin: 0 ;
}

/* Booking CTA */
.ht-lp .ht-booking {
  padding: 56px 0 ;
  background: #fff ;
}

.ht-lp .ht-booking-box {
  background: var(--ht-gradient-cta) ;
  border-radius: var(--ht-radius-lg) ;
  padding: 40px 28px ;
  box-shadow: var(--ht-shadow-lg) ;
}

@media (min-width: 992px) {
  .ht-lp .ht-booking-box {
    padding: 48px 44px ;
  }
}

.ht-lp .ht-booking-grid {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 32px ;
  align-items: center ;
}

@media (min-width: 992px) {
  .ht-lp .ht-booking-grid {
    grid-template-columns: 1fr 1fr ;
    gap: 40px ;
  }
}

.ht-lp .ht-booking-text h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem) ;
  font-weight: 800 ;
  color: #fff ;
  margin: 0 0 14px ;
}

.ht-lp .ht-booking-text p {
  font-size: 14px ;
  color: rgba(255, 255, 255, 0.92) ;
  margin: 0 0 24px ;
  line-height: 1.8 ;
}

.ht-lp .ht-booking-phone {
  display: inline-flex ;
  align-items: center ;
  gap: 10px ;
  background: #fff ;
  color: var(--ht-primary) ;
  font-size: 15px ;
  font-weight: 800 ;
  padding: 14px 24px ;
  border-radius: var(--ht-radius-pill) ;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) ;
  transition: transform 0.2s ;
}

.ht-lp .ht-booking-phone:hover {
  transform: translateY(-2px) ;
  color: var(--ht-primary-dark) ;
}

.ht-lp .ht-booking-phone svg {
  width: 20px ;
  height: 20px ;
  flex-shrink: 0 ;
}

.ht-lp .ht-form-card {
  background: #fff ;
  border-radius: var(--ht-radius) ;
  padding: 28px 24px ;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) ;
}

.ht-lp .ht-form-group {
  margin-bottom: 16px ;
}

.ht-lp .ht-form-group label {
  display: block ;
  font-size: 13px ;
  font-weight: 600 ;
  color: var(--ht-foreground) ;
  margin-bottom: 8px ;
}

.ht-lp .ht-form-group input,
.ht-lp .ht-form-group select {
  width: 100% ;
  padding: 12px 16px ;
  font-size: 14px ;
  border: 1px solid var(--ht-border) ;
  border-radius: 10px ;
  background: #fff ;
  color: var(--ht-foreground) ;
  transition: border-color 0.2s, box-shadow 0.2s ;
}

.ht-lp .ht-form-group input:focus,
.ht-lp .ht-form-group select:focus {
  outline: none ;
  border-color: var(--ht-primary) ;
  box-shadow: 0 0 0 3px var(--ht-primary-muted) ;
}

.ht-lp .ht-form-group input::placeholder {
  color: #94a3b8 ;
}

.ht-lp .ht-form-submit {
  width: 100% ;
  margin-top: 8px ;
  padding: 14px ;
  font-size: 15px ;
}

.ht-lp .ht-form-note {
  font-size: 11px ;
  color: var(--ht-muted) ;
  text-align: center ;
  margin: 14px 0 0 ;
}

/* SEO content */
.ht-lp .ht-content {
  padding: 48px 0 56px ;
  background: #fff ;
}

.ht-lp .ht-content p {
  font-size: 14px ;
  color: var(--ht-muted) ;
  line-height: 1.9 ;
  margin: 0 0 18px ;
  text-align: justify ;
}

.ht-lp .ht-content h2 {
  font-size: 1.25rem ;
  font-weight: 800 ;
  color: var(--ht-foreground) ;
  margin: 32px 0 14px ;
}

.ht-lp .ht-content h2:first-of-type {
  margin-top: 8px ;
}

.ht-lp .ht-content ul {
  list-style: none ;
  padding: 0 ;
  margin: 0 ;
}

.ht-lp .ht-content li {
  font-size: 14px ;
  color: var(--ht-muted) ;
  line-height: 1.9 ;
  margin-bottom: 16px ;
  text-align: justify ;
}

.ht-lp .ht-content li strong {
  display: block ;
  color: var(--ht-foreground) ;
  font-weight: 700 ;
  margin-bottom: 4px ;
}

.ht-lp .hidden {
  display: none !important;
}

.ht-lp .ht-form-feedback {
  font-size: 13px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
}

.ht-lp .ht-form-feedback--success {
  background: #ecfdf5;
  color: #047857;
}

.ht-lp .ht-form-group input.required,
.ht-lp .ht-form-group select.required {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.ht-lp .ht-portfolio-trigger {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
}

.ht-lp .ht-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.55));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ht-lp .ht-portfolio-item:hover .ht-portfolio-overlay {
  opacity: 1;
}

.ht-lp .ht-portfolio-zoom {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  font-size: 18px;
  font-weight: bold;
}

.ht-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
}

.ht-lightbox.is-open {
  display: flex;
}

.ht-lightbox-content {
  width: min(980px, 100%);
  position: relative;
  animation: htZoomIn 0.25s ease;
}

.ht-lightbox-image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  background: #0f172a;
}

.ht-lightbox-caption {
  margin-top: 10px;
  color: #e5e7eb;
  text-align: center;
  font-size: 14px;
}

.ht-lightbox-close {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 9999px;
  background: #ef4444;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

@keyframes htZoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

