/* خط Cairo */
* {
  font-family: "Cairo", sans-serif;
}

/* الحاوي الرئيسي */
.iptv-movie-request-container {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  min-height: 100vh;
  color: #ffffff;
  direction: rtl;
  text-align: right;
}

/* Header Section */
.iptv-header {
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.iptv-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.iptv-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.iptv-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.iptv-subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 30px;
  font-weight: 500;
}

.iptv-decorative-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

/* Content Wrapper */
.iptv-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Form Section */
.iptv-form-section {
  padding: 80px 0;
  background: #111111;
}

.iptv-form {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #333333;
}

.iptv-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.iptv-form-group {
  display: flex;
  flex-direction: column;
}

.iptv-form-group.iptv-full-width {
  grid-column: 1 / -1;
}

.iptv-form-group label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
  display: block;
}

.iptv-form-group input,
.iptv-form-group textarea,
.iptv-form-group select {
  background: #000000;
  border: 2px solid #333333;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
}

.iptv-form-group input:focus,
.iptv-form-group textarea:focus,
.iptv-form-group select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  background: #1a1a1a;
}

.iptv-form-group input::placeholder,
.iptv-form-group textarea::placeholder {
  color: #888888;
}

.iptv-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffd700" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 12px;
  padding-left: 45px;
}

.iptv-form-group select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px;
  border: none;
}

.iptv-form-group select option:hover,
.iptv-form-group select option:checked {
  background: #ffd700;
  color: #000000;
}

/* Submit Button */
.iptv-form-submit {
  text-align: center;
}

.iptv-submit-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #000000;
  border: none;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  font-family: "Cairo", sans-serif;
  position: relative;
  overflow: hidden;
}

.iptv-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.iptv-submit-btn:active {
  transform: translateY(-1px);
}

/* Features Section */
.iptv-features-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.iptv-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.iptv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.iptv-feature-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #333333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.iptv-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.iptv-feature-card:hover::before {
  left: 100%;
}

.iptv-feature-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.iptv-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: grayscale(100%) sepia(100%) hue-rotate(35deg) saturate(200%);
}

.iptv-feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 15px;
}

.iptv-feature-card p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* FAQ Section */
.iptv-faq-section {
  padding: 80px 0;
  background: #111111;
}

.iptv-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.iptv-faq-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid #333333;
  overflow: hidden;
  transition: all 0.3s ease;
}

.iptv-faq-item:hover {
  border-color: #ffd700;
}

.iptv-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.iptv-faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.iptv-faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffd700;
  margin: 0;
}

.iptv-faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  transition: transform 0.3s ease;
}

.iptv-faq-item.active .iptv-faq-toggle {
  transform: rotate(45deg);
}

.iptv-faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.iptv-faq-item.active .iptv-faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.iptv-faq-answer p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Modal */
.iptv-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iptv-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 2px solid #ffd700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.iptv-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #000000;
  margin: 0 auto 20px;
  font-weight: bold;
}

.iptv-modal-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.iptv-modal-body p {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.iptv-modal-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #000000;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
}

.iptv-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .iptv-main-title {
    font-size: 2.5rem;
  }

  .iptv-subtitle {
    font-size: 1.2rem;
  }

  .iptv-form {
    padding: 30px 20px;
  }

  .iptv-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .iptv-features-grid {
    grid-template-columns: 1fr;
  }

  .iptv-section-title {
    font-size: 2rem;
  }

  .iptv-content-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .iptv-main-title {
    font-size: 2rem;
  }

  .iptv-form {
    padding: 20px 15px;
  }

  .iptv-modal-content {
    padding: 30px 20px;
  }
}
