﻿/* style.css */
body {
  font-family: "Tahoma", sans-serif;
  line-height: 1.8;
  direction: rtl;
  background: #f5f7fa;
  color: #333;
  padding: 20px;
  margin: 0;
}

h1 {
  text-align: center;
  color: #002b55;
  font-size: 2rem;
  margin-bottom: 25px;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-3px); }
.card h2 {
  color: #004080;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-right: 5px solid #004080;
  padding-right: 10px;
}

ul { margin: 10px 20px; padding: 0; list-style: none; }
ul li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 22px;
  font-size: 1rem;
}
ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: #00a04a;
  font-size: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.specs-table th, .specs-table td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: center;
}
.specs-table th {
  background: #004080;
  color: #fff;
  font-weight: bold;
}
.specs-table tr:nth-child(even) { background: #f7f7f7; }

.video-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}
.video-box:hover { transform: translateY(-3px); }
.video-box iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  border: none;
}

.products-section {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.products-section h2 {
  margin-bottom: 20px;
  color: #004080;
  font-size: 1.4rem;
}
.product-boxes {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.product-box {
  flex: 0 0 160px;
  padding: 22px 12px;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.green { background: #28a745; }
.orange { background: #ff7a33; }
.blue { background: #007bff; }

.benefits-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.benefit-box {
  flex: 1;
  min-width: 210px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #28a745;
}
.benefit-box:nth-child(2) .benefit-icon { color: #ff7a33; }
.benefit-box:nth-child(3) .benefit-icon { color: #007bff; }
.benefit-box:nth-child(4) .benefit-icon { color: #6f42c1; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #004080, #28a745);
  color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.cta-section h2 { font-size: 1.8rem; margin-bottom: 15px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 20px; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cta-btn.phone { background: #ff6b6b; }
.cta-btn.whatsapp { background: #25d366; }
.cta-btn.telegram { background: #0088cc; }
.cta-btn.instagram { background: #e4405f; }

/* ریسپانسیو */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  .card { padding: 20px; }
  .specs-table th, .specs-table td { font-size: 0.85rem; padding: 10px; }
  .video-box iframe { height: 250px; }
  .product-boxes { flex-direction: column; align-items: center; }
  .benefits-section { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  .cta-section h2 { font-size: 1.5rem; }
}
