/* استفاده از فونت موجود */
@import url("/css/Vazirmatn-font-face.css");

/* ریست ضروری برای هماهنگی ابعاد */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #121212;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
  direction: rtl;
  line-height: 1.8;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

h1, h2, h3 {
  color: #ffd700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

p, ul, li {
  font-size: 1.05rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li::before {
  content: "✔️ ";
  color: #ffd700;
  margin-left: 0.5rem;
}

/* سکشن کاور */
.hero-banner {
  position: relative;
  width: 100%;
  height: 360px;
  background-image: url('/images/france-cover.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner h1 {
  color: #ffd700;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* سکشن‌ها */
section {
  background-color: #1b1b1b;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

ul li {
  background: #222;
  margin-bottom: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border-right: 4px solid #ffd700;
}

/* فرم مشاوره */
.consult-form {
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid #2c2c2c;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  display: block;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid #444;
  border-radius: 12px;
  background-color: #181818;
  color: #fff;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.consult-form input:focus,
.consult-form textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4), inset 0 0 3px rgba(255, 215, 0, 0.1);
  outline: none;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #999;
}

.consult-form textarea {
  resize: vertical;
  min-height: 130px;
  max-height: 300px;
  line-height: 1.6;
}

/* دکمه طلایی شیک */
.gold-btn {
  background: linear-gradient(45deg, #ffda44, #ffc107);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 213, 0, 0.5);
  display: block;
  margin: 0 auto;
}

.gold-btn:hover {
  background: linear-gradient(45deg, #ffe066, #ffcc00);
  transform: translateY(-3px) scale(1.03);
}

/* وضعیت ارسال فرم */
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #00ffae;
  font-weight: bold;
  text-align: center;
}
