@font-face {
  font-family: "yekan";
  src: url("/srcSite/assets/font/Yekan.woff") format("woff");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "yekan";
}

:root {
  --primary: #108BB9;
  --secondary: #056296;
  --dark: #1f2937;
  --darker: #111827;
  --gray: #9ca3af;
  --gray-dark: #374151;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--darker);
  color: white;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

button,
a {
  font-family: "yekan" !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #374151;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 28px;
  color: var(--primary);
}

.logo span {
  font-size: 24px;
  font-weight: bold;
}

.logo span span {
  color: var(--primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  font-size: 15px;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary.active {
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: white;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background-color: var(--dark);
  border-top: 1px solid #374151;
  padding: 20px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #374151;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

header a.active {
  color: var(--primary);
}

.page-header {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  overflow: hidden;
  text-align: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.page-header-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 139, 185, 0.3);
  top: -200px;
  right: -100px;
}

.page-header-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.2);
  bottom: -150px;
  left: -100px;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(16, 139, 185, 0.15);
  border: 1px solid rgba(16, 139, 185, 0.3);
  border-radius: 50px;
  color: #108BB9;
  font-size: 14px;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
}

.page-header h1 span {
  color: var(--primary);
}

.page-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--darker);
  border: 1px solid #374151;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Vazir", Tahoma, sans-serif;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--secondary);
}

.submit-btn i {
  margin-left: 8px;
}

footer {
  background-color: var(--dark);
  border-top: 1px solid #374151;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray);
  max-width: 400px;
  line-height: 1.7;
}

.footer-links h4,
.footer-services h4 {
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services li {
  color: var(--gray);
  font-size: 14px;
}

.footer-links a:hover,
.footer-services li:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 48px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 14px;
}

.footer-bottom span {
  color: var(--primary);
  font-weight: bold;
}

.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: #108BB9;
  top: -100px;
  right: -100px;
  animation: float 5s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  bottom: -50px;
  left: -50px;
  animation: float 5s ease-in-out infinite reverse;
}

.cta-shape-3 {
  width: 200px;
  height: 200px;
  background: #8b5cf6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-70px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(16, 139, 185, 0.15);
  border: 1px solid rgba(16, 139, 185, 0.3);
  border-radius: 50px;
  color: #108BB9;
  font-size: 14px;
  margin-bottom: 24px;
}

.cta-badge i {
  font-size: 16px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.cta-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-highlight {
  background: linear-gradient(135deg, #108BB9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #108BB9 0%, #059669 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(16, 139, 185, 0.35);
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(16, 139, 185, 0.45);
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary i {
  transition: transform 0.3s ease;
}

.cta-primary:hover i {
  transform: translateX(5px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  border: 2px solid #374151;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  border-color: #108BB9;
  color: #108BB9;
  transform: translateY(-4px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
}

.cta-feature i {
  color: #108BB9;
  font-size: 14px;
}
