





/* ===============================
   🌐 بوتان‌شاپ - استایل مخصوص index.html
   رنگ برند: #c00
   فونت: IRANSans
   =============================== */

/* 🎯 فونت و تنظیمات پایه */
@font-face {
  font-family: "IRANSans";
  src: url("../fonts/IRANSans.woff2") format("woff2"),
       url("../fonts/IRANSans.woff") format("woff");
  font-display: swap;
}

body {
  font-family: "IRANSans", Tahoma, sans-serif;
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  direction: rtl;
  line-height: 1.9;
  scroll-behavior: smooth;
}

/* ===============================
   🔹 نوار تماس بالا
   =============================== */
.top-bar {
  background: #c00;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  font-size: 15px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.top-bar a:hover { text-decoration: underline; }

/* ===============================
   🔹 منوی اصلی (دسکتاپ)
   =============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #c00;
}
.logo img { height: 45px; margin-left: 10px; }

.menu-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.menu-list a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.menu-list a:hover,
.menu-list a.active {
  color: #c00;
}

/* ===============================
   🔹 زیرمنو (دسکتاپ)
   =============================== */
.submenu {
  position: relative;
}
.submenu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  z-index: 999;
}
.submenu:hover .dropdown { display: block; }
.submenu .dropdown li a {
  display: block;
  padding: 8px 15px;
  color: #333;
}
.submenu .dropdown li a:hover {
  background: #f5f5f5;
  color: #c00;
}

/* ===============================
   🔹 منوی موبایل
   =============================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #c00;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .menu-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 65px;
    right: 5%;
    width: 90%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    padding: 15px 0;
  }

  .menu-list.show { display: flex; }

  .submenu .dropdown {
    display: none;
    background: #fafafa;
  }

  .submenu.open .dropdown { display: block; }

  body.menu-open { overflow: hidden; }
}

/* ===============================
   🔹 بخش بنر اصلی
   =============================== */
.hero {
  text-align: center;
  background: #fafafa;
  padding: 40px 15px;
}
.hero-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.call-btn {
  background: #c00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.call-btn:hover { background: #a00; }

/* ===============================
   🔹 تیترها و متن‌ها
   =============================== */
h1, h2, h3 {
  text-align: center;
  line-height: 1.6;
  margin: 25px 0 15px;
}
h1 {
  font-size: 28px;
  font-weight: bold;
  color: #c00;
}
h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
h3 { font-size: 18px; color: #444; }

p {
  color: #444;
  text-align: justify;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.9;
}

a { color: #c00; text-decoration: none; }
a:hover { color: #ff4d4d; text-decoration: underline; }

/* ===============================
   🔹 نقل‌قول (blockquote)
   =============================== */
blockquote {
  background: #fff8f8;
  border-right: 5px solid #c00;
  margin: 25px 0;
  padding: 15px 20px;
  border-radius: 10px;
  color: #444;
  font-style: italic;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
blockquote::before {
  content: "❝";
  font-size: 36px;
  color: #c00;
  position: absolute;
  top: -5px;
  right: 10px;
  opacity: 0.7;
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #c00;
  text-align: left;
}

/* ===============================
   🔹 فوتر
   =============================== */
.main-footer {
  background: #c00;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.social-links a:hover {
  background: #fff;
  color: #c00;
}
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
  font-size: 14px;
}

/* ===============================
   🔹 دکمه واتساپ
   =============================== */
#whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 999;
}
#whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); }

/* ===============================
   🔹 واکنش‌گرا (موبایل)
   =============================== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-content img { max-width: 90%; }
  .footer-map iframe { height: 180px; }
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
}
@media (max-width: 768px) {
  .contact-section form {
    width: 100%;
  }
  .contact-section input,
  .contact-section textarea {
    font-size: 15px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== فرم تماس بوتان شاپ ===== */
.contact-form-section {
  background: #fff;
  padding: 30px;
  margin: 30px auto;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: right;
}

.contact-form-section h2 {
  color: #d50000;
  font-size: 22px;
  margin-bottom: 10px;
  border-right: 5px solid #ff3b30;
  padding-right: 10px;
}

.contact-form-section p {
  margin-bottom: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: "IRANSans", Tahoma, sans-serif;
  font-size: 15px;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff3b30;
  outline: none;
  box-shadow: 0 0 5px rgba(255,59,48,0.3);
}

.contact-form button {
  background: #ff3b30;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.contact-form button:hover {
  background: #e32b22;
}

/* 🔹 ریسپانسیو موبایل */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 20px;
    margin: 15px;
  }
  .contact-form-section h2 {
    font-size: 20px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}
/* ===== جملات سئو پسند در صفحه تماس ===== */
.seo-text {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.seo-text p {
  margin-bottom: 15px;
}

.seo-text a {
  color: #d50000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.seo-text a:hover {
  color: #ff3b30;
  text-decoration: underline;
}

/* 🔹 واکنش‌گرا */
@media (max-width: 768px) {
  .seo-text {
    padding: 15px;
    font-size: 14px;
  }
}

/* ===== فوتر بوتان شاپ ===== */
.main-footer {
  background: #222;
  color: #fff;
  padding: 30px 20px;
  font-family: IRANSans, sans-serif;
}

.main-footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-logo span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.social-links {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.social-links a.whatsapp { background: #25D366; }
.social-links a.telegram { background: #0088cc; }
.social-links a.instagram { background: #C13584; }
.social-links a.linkedin { background: #0077B5; }

.footer-map {
  margin-top: 25px;
}

.footer-map h3 {
  margin-bottom: 10px;
}

.footer-map iframe {
  border: 0;
  border-radius: 8px;
}

.footer-map p {
  margin-top: 10px;
  text-align: center;
}

.footer-bottom {
  margin-top: 15px;
  font-size: 14px;
  color: #bbb;
  text-align: center;
}

/* ===== ریسپانسیو موبایل ===== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    min-width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
/* 🎨 فوتر بوتان شاپ | نسخه نهایی */
.main-footer {
  background: #222; /* پس‌زمینه خاکستری تیره */
  color: #f5f5f5; /* رنگ عمومی متن */
  text-align: center;
  padding: 40px 20px;
  line-height: 1.8;
}

/* لینک‌ها عمومی */
.main-footer a {
  color: #00bcd4; /* آبی ملایم */
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: #ffcc00; /* زرد در حالت هاور */
}

/* ساختار اصلی */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
}

/* لوگو و توضیحات */
.footer-logo img {
  width: 90px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer-logo h2 {
  color: #ffcc00;
  margin: 10px 0 5px;
  font-size: 20px;
}

.footer-logo p {
  color: #ddd;
  font-size: 14px;
  margin: 0;
}

/* لینک‌های مفید */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* اطلاعات تماس */
.footer-contact p,
.footer-contact a {
  color: #ccc;
  font-size: 14px;
}

.footer-contact i {
  color: #ffcc00;
  margin-left: 5px;
}

/* شبکه‌های اجتماعی */
.social-links {
  margin: 20px 0;
}

.social-links a {
  display: inline-block;
  margin: 5px 10px;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00bcd4;
}

/* نقشه گوگل */
.footer-map {
  margin-top: 20px;
  background: #111;
  padding: 15px;
  border-radius: 10px;
}

.footer-map h3 {
  color: #ffcc00;
}

.footer-map p {
  color: #ccc;
  font-size: 14px;
}

/* کپی‌رایت پایین */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 15px;
  color: #aaa;
  font-size: 13px;
}

/* واکنش‌گرا (موبایل) */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    width: 70px;
  }
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.service-list li {
  margin-bottom: 8px;
  padding-right: 20px;
  background: url("images/check-icon.svg") no-repeat right center;
  background-size: 16px;
}
/* 🎯 استایل عمومی هدر */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

/* 🔹 لوگو */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-picture {
  display: inline-block;
}

.logo-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 🔹 منوی اصلی */
.menu-list {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.menu-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu-list a:hover,
.menu-list a.active {
  color: #d62828;
}

/* 🔹 زیرمنو */
.submenu .dropdown {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  list-style: none;
}

.submenu:hover .dropdown {
  display: block;
}

/* 🔹 دکمه منو موبایل */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/* 🔹 بخش hero */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
}

.hero-content h1 {
  font-size: 1.8rem;
  color: #d62828;
}

.hero-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 700px;
  margin: 10px auto;
}

.call-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  background-color: #d62828;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.call-btn:hover {
  background-color: #b91c1c;
}

.hero-img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
}

/* 🔹 واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
  .menu-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .menu-toggle {
    display: block;
  }

  .menu-list.active {
    display: flex;
  }

  .logo img {
    width: 58px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }
}
/* 🎯 ساختار اصلی هدر */
.main-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
}

/* 🔹 لوگو */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-width: 100%;
  height: auto;
}

/* 🔹 منوی اصلی */
.menu-list {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu-list li a:hover,
.menu-list li a.active {
  color: #d62828;
}

/* 🔹 زیرمنو */
.submenu {
  position: relative;
}

.submenu .dropdown {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  list-style: none;
  top: 100%;
  right: 0;
  z-index: 1001;
}

.submenu:hover .dropdown {
  display: block;
}

/* 🔹 دکمه منو موبایل */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* 🔹 حالت واکنش‌گرا برای موبایل */
@media (max-width: 768px) {
  .menu-list {
    display: none; /* در حالت پیش‌فرض پنهان */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px; /* 👈 عرض کمتر برای موبایل */
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .menu-list.active {
    display: flex; /* وقتی دکمه فشرده شد، نمایش داده می‌شود */
  }

  .menu-toggle {
    display: block;
  }

  .submenu .dropdown {
    position: static;
    box-shadow: none;
    margin-top: 5px;
  }

  .submenu:hover .dropdown {
    display: none;
  }

  .submenu .submenu-toggle:focus + .dropdown,
  .submenu .submenu-toggle:active + .dropdown {
    display: block;
  }

  .menu-list li a {
    padding: 6px 8px;
    border-radius: 4px;
  }

  .menu-list li a:hover {
    background: #f5f5f5;
  }
}
/* ================================
   🔹 فوتر بوتان شاپ | طراحی سبک و ریسپانسیو
=================================== */

footer,
.main-footer {
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid #ddd;
  font-family: "IRANSans", sans-serif;
  line-height: 1.8;
}

footer a,
.main-footer a {
  color: #c30000; /* رنگ قرمز برند بوتان */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover,
.main-footer a:hover {
  color: #ff0000;
  text-decoration: underline;
}

footer p,
.main-footer p {
  margin: 10px 0;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  footer,
  .main-footer {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
}
/* ================================
   🎨 فوتر بوتان شاپ | نسخه اصلاح‌شده برای کنتراست بالا
=================================== */

footer,
.main-footer {
  background-color: #000; /* پس‌زمینه مشکی */
  color: #f5f5f5;         /* نوشته سفید ملایم */
  text-align: center;
  padding: 30px 15px;
  border-top: 2px solid #c30000;
  line-height: 1.8;
  font-family: "IRANSans", sans-serif;
}

/* لینک‌ها */
footer a,
.main-footer a {
  color: #ff4444; /* قرمز روشن برند بوتان */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover,
.main-footer a:hover {
  color: #ffffff; /* در هاور سفید می‌شود برای تضاد بهتر */
  text-decoration: underline;
}

/* لینک‌های شبکه اجتماعی */
.social-links a {
  display: inline-block;
  background-color: #111;
  color: #fff;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: #c30000;
  color: #fff;
}

/* فوتر پایین */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

/* واکنش‌گرا */
@media (max-width: 768px) {
  footer,
  .main-footer {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
  .social-links a {
    margin: 3px;
    padding: 6px 10px;
  }
}
/* دکمه واتس‌اپ */
.whatsapp {
  position: fixed;
  bottom: 20px; /* فاصله از پایین صفحه */
  right: 20px;  /* فاصله از راست */
  background-color: #25D366; /* رنگ واتساپ */
  color: #fff;
  font-size: 18px; /* اندازه متن */
  font-weight: bold;
  padding: 12px 20px; /* فاصله داخلی */
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px; /* فاصله آیکون با متن */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
}

/* هاور */
.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* آیکون داخل دکمه */
.whatsapp i {
  font-size: 22px; /* اندازه آیکون */
}

/* نسخه موبایل */
@media (max-width: 768px) {
  .whatsapp {
    font-size: 16px;
    padding: 10px 16px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp i {
    font-size: 20px;
  }
}



























