/* ═══════════════════════════════════════════════════
   Nûr-ul Esmâ — Bileşen Stilleri
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   ANA SAYFA — Durum Analizi
   ═══════════════════════════════════════ */

.home-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.home-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-bismillah {
  font-family: var(--font-arabic);
  font-size: 2.2rem;
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow-subtle);
  margin-bottom: 1.5rem;
  direction: rtl;
  animation: pulse-gold 5s ease-in-out infinite;
}

/* Durum Giriş */
.situation-input-container {
  padding: 2rem;
  margin-bottom: 2rem;
}

.input-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.input-icon {
  font-size: 1.5rem;
}

.input-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
}

.situation-textarea {
  width: 100%;
  min-height: 150px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.situation-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-subtle);
}

.situation-textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

/* Analiz Butonu */
.analyze-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gold-glow-subtle);
}

.analyze-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.analyze-btn:active {
  transform: translateY(0);
}

.analyze-btn.analyzing {
  opacity: 0.8;
  cursor: wait;
}

/* Hızlı Erişim */
.quick-access {
  margin-top: 3rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
}

.quick-icon {
  font-size: 2rem;
}

.quick-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Öneri Sonuçları */
.recommendation-container {
  margin-top: 2rem;
}

.recommendation-header {
  text-align: center;
  margin-bottom: 2rem;
}

.rec-icon-circle {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.rec-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rec-category-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.rec-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.rec-section {
  margin-bottom: 2rem;
}

.rec-section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

/* Esma Öneri Kartları */
.rec-esma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.rec-esma-grid.secondary {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.esma-recommendation {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.esma-recommendation.primary {
  border-color: rgba(212, 168, 83, 0.2);
}

.esma-rec-number {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
}

.esma-rec-arabic {
  margin-bottom: 0.5rem;
}

.esma-rec-transliteration {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.esma-rec-meaning {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.esma-rec-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.esma-rec-source {
  margin-bottom: 0.5rem;
}

.start-dhikr-mini-btn {
  padding: 0.4rem 0.8rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
}

.start-dhikr-mini-btn:hover {
  background: rgba(212, 168, 83, 0.25);
  transform: scale(1.05);
}

/* Duygu Mesajı */
.emotion-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.emotion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.emotion-message p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Ek Zikir Tavsiyesi */
.dhikr-recommendation {
  padding: 1.5rem;
  text-align: center;
}

.dhikr-rec-arabic {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.dhikr-rec-meaning {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.dhikr-rec-source {
  margin-top: 0.5rem;
}

/* Kombinasyon Önizleme */
.rec-combinations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.combination-preview {
  padding: 1.2rem;
  cursor: pointer;
}

.combo-prev-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.combo-prev-esmas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.combo-prev-chip {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--gold-light);
  padding: 0.2rem 0.5rem;
  background: rgba(212, 168, 83, 0.08);
  border-radius: var(--radius-sm);
}

.combo-prev-chip small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.combo-prev-separator {
  color: var(--gold-dark);
  font-weight: 600;
}

.combo-prev-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Uyarı */
.rec-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.disclaimer-icon {
  flex-shrink: 0;
}

.rec-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mesaj Kartı */
.message-card {
  padding: 1.5rem;
  text-align: center;
}

.message-card.warning {
  border-color: rgba(255, 200, 50, 0.2);
}

/* Günün Esması */
.daily-esma-container {
  margin-top: 3rem;
}

.daily-esma {
  padding: 2rem;
  text-align: center;
}

.daily-header {
  margin-bottom: 1rem;
}

.daily-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold);
}

.daily-arabic {
  margin: 1rem 0 0.5rem;
  font-size: 3rem;
}

.daily-transliteration {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.daily-meaning {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1rem;
}

.daily-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   ZİKİR MATİK
   ═══════════════════════════════════════ */

.dhikr-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Kategori Butonları */
.dhikr-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.dhikr-cat-btn {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.dhikr-cat-btn:hover {
  background: var(--glass-bg-hover);
  color: var(--gold-light);
}

.dhikr-cat-btn.active {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.3);
  color: var(--gold);
}

/* Zikir Grid */
.dhikr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.dhikr-option {
  padding: 1rem;
  cursor: pointer;
  text-align: center;
  border-radius: var(--radius-md);
}

.dhikr-option-arabic {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.dhikr-option-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.dhikr-option-meaning {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.dhikr-option-source {
  font-size: 0.65rem;
  color: var(--gold-dark);
  margin-top: 0.3rem;
}

/* Sayaç Alanı */
.dhikr-counter-area {
  max-width: 500px;
  margin: 0 auto;
}

.dhikr-current-info {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.dhikr-current-arabic {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.dhikr-current-name {
  font-size: 1rem;
  color: var(--text-secondary);
}

.dhikr-current-meaning {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Hedef Ayarı */
.dhikr-target-setting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dhikr-target-setting label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.target-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.target-btn {
  padding: 0.3rem 0.7rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.target-btn:hover {
  border-color: var(--gold-dark);
  color: var(--gold-light);
}

.target-btn.active {
  background: rgba(212, 168, 83, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Dairesel Sayaç */
.dhikr-counter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dhikr-circle-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s;
}

.dhikr-circle-wrapper:active {
  transform: scale(0.97);
}

.dhikr-circle-wrapper.tap-pulse {
  animation: tapPulse 0.5s ease-out;
}

.dhikr-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dhikr-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 4;
}

.dhikr-circle-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.dhikr-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.dhikr-count {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px var(--gold-glow-subtle);
}

.dhikr-target-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
}

.dhikr-tap-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0.5;
}

/* Kontrol Butonları */
.dhikr-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.dhikr-btn-reset,
.dhikr-btn-back {
  padding: 0.7rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.dhikr-btn-reset:hover,
.dhikr-btn-back:hover {
  background: var(--glass-bg-hover);
  color: var(--gold-light);
  border-color: var(--glass-border-hover);
}

/* Tamamlanma */
.dhikr-complete-msg {
  text-align: center;
  margin-top: 1.5rem;
  padding: 2rem;
}

.complete-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

.complete-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.complete-dua {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* ═══════════════════════════════════════
   BİRLİKTE OKUNAN ESMALAR
   ═══════════════════════════════════════ */

.combinations-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Kategori Filtreleri */
.combination-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.combination-filter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.combination-filter:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  color: var(--gold-light);
}

.combination-filter.active {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.3);
  color: var(--gold);
}

.filter-icon {
  font-size: 1rem;
}

/* Kombinasyon Kartları */
.combinations-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.combination-card {
  padding: 2rem;
  border-left: 3px solid var(--gold-dark);
}

.combination-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.combination-category-icon {
  font-size: 1.3rem;
}

.combination-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}

/* Esma Grubu */
.combination-esma-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(212, 168, 83, 0.04);
  border-radius: var(--radius-md);
}

.combination-esma-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.8rem;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: var(--radius-sm);
}

.chip-arabic {
  font-size: 1.3rem;
}

.chip-name {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.chip-plus {
  color: var(--gold-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Detaylar */
.combination-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.combination-details {
  margin-bottom: 1rem;
}

.combination-how {
  margin-bottom: 0.5rem;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.detail-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-left: 0.3rem;
}

.combination-source {
  margin-top: 0.5rem;
}

.start-dhikr-btn {
  padding: 0.7rem 1.5rem;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.start-dhikr-btn:hover {
  background: rgba(212, 168, 83, 0.2);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   99 İLAHİ İSİM
   ═══════════════════════════════════════ */

.names-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* Arama */
.names-search-container {
  max-width: 500px;
  margin: 0 auto 2rem;
}

.names-search-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
}

.search-icon {
  font-size: 1.1rem;
  opacity: 0.5;
}

.names-search {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.names-search::placeholder {
  color: var(--text-muted);
}

/* İsim Grid */
.names-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

/* Flip Kart */
.name-card {
  perspective: 1000px;
  height: 220px;
  cursor: pointer;
}

.name-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.name-card:hover .name-card-inner {
  transform: rotateY(180deg);
}

.name-card-front,
.name-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.name-card-back {
  transform: rotateY(180deg);
}

.name-card-number {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.12);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
}

.name-card-arabic {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.name-card-transliteration {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.name-card-meaning {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.name-card-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.name-card-more {
  font-size: 0.65rem;
  color: var(--gold-dark);
  margin-top: auto;
}

/* Modal */
.name-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.name-modal.modal-active {
  opacity: 1;
}

.name-modal-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-active .name-modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.modal-esma-detail {
  text-align: center;
}

.modal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(212, 168, 83, 0.12);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-arabic {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.modal-transliteration {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.modal-meaning {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.modal-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  margin: 0 auto 1.5rem;
}

.modal-section {
  text-align: left;
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-description,
.modal-benefits {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.modal-count {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.modal-verses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.verse-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--emerald-light);
}

.modal-source {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-style: italic;
}

/* ═══════════════════════════════════════
   RESPONSIVE DÜZENLEMELER
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-bismillah {
    font-size: 1.6rem;
  }

  .situation-input-container {
    padding: 1.2rem;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .quick-card {
    padding: 1rem 0.5rem;
  }

  .quick-icon {
    font-size: 1.5rem;
  }

  .quick-label {
    font-size: 0.7rem;
  }

  .rec-esma-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .dhikr-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .dhikr-circle-wrapper {
    width: 220px;
    height: 220px;
  }

  .dhikr-count {
    font-size: 2.8rem;
  }

  .combination-card {
    padding: 1.2rem;
  }

  .names-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .name-card {
    height: 190px;
  }

  .name-card-arabic {
    font-size: 1.5rem;
  }

  .modal-arabic {
    font-size: 2.5rem;
  }

  .name-modal-content {
    padding: 1.5rem;
  }

  .daily-arabic {
    font-size: 2.2rem;
  }

  .dhikr-current-arabic {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .rec-esma-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dhikr-grid {
    grid-template-columns: 1fr 1fr;
  }

  .names-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .name-card {
    height: 170px;
  }

  .combination-esma-group {
    padding: 0.75rem;
  }
}
