/* ========================================
   ISM-E-AZAM CALCULATOR - STYLESHEET
   Professional Islamic Calculator UI
   ======================================== */

:root {
  /* Color Palette */
  --primary-color: #2c5282;
  --primary-dark: #1a365d;
  --primary-light: #ebf8ff;
  --accent-color: #d69e2e;
  --success-color: #22863a;
  --error-color: #cb2431;
  --warning-color: #e67e22;

  /* Neutral Colors */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #2d3748;
  --text-gray: #718096;
  --border-color: #e2e8f0;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Typography */
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-arabic: "Arial", "Simplified Arabic", "Traditional Arabic", sans-serif;
  --font-size-sm: 0.675rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-modal: 1000;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.header-titles {
  text-align: left;
  flex: 1;
}

[dir="rtl"] .header-titles {
  text-align: right;
}

.creator-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.creator-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.creator-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-xs);
  object-fit: cover;
}

.creator-name {
  font-size: var(--font-size-sm);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  opacity: 0.9;
}

.header h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.urdu-title {
  font-size: var(--font-size-2xl);
  font-family: var(--font-arabic);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  font-weight: 300;
}

.main-content {
  flex: 1;
  margin-bottom: var(--spacing-lg);
}

.footer {
  background-color: var(--primary-dark);
  color: white;
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-lg);
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

/* ========================================
   CARDS & SECTIONS
   ======================================== */

.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 2px 4px var(--shadow-color);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: var(--primary-color);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: var(--spacing-sm);
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

.input-group {
  margin-bottom: var(--spacing-md);
}

.input-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--font-size-base);
}

.name-input {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-lg);
  font-family: var(--font-arabic);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  direction: rtl;
  text-align: right;
}

.name-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.name-input::placeholder {
  color: #bbb;
}

.help-text {
  display: block;
  color: var(--text-gray);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
}

/* ========================================
   BUTTONS
   ======================================== */

.button-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  flex: 1;
  min-width: 150px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--border-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #cbd5e0;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   ERROR & MESSAGES
   ======================================== */

.error-message {
  background-color: #fdeaea;
  border-left: 4px solid var(--error-color);
  color: var(--error-color);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  font-size: var(--font-size-base);
}

/* ========================================
   INPUT SUMMARY
   ======================================== */

.input-summary {
  display: grid;
  gap: var(--spacing-md);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-color);
}

.summary-item label {
  font-weight: 600;
  color: var(--text-dark);
}

.summary-item .value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-arabic);
}

/* ========================================
   CHARACTER BREAKDOWN TABLE
   ======================================== */

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--spacing-md);
}

.breakdown-table th {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: var(--spacing-md);
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
}

.breakdown-table td {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.breakdown-table tbody tr:hover {
  background-color: var(--bg-light);
}

.breakdown-table tbody tr:last-child td {
  border-bottom: none;
}

.breakdown-table .character {
  font-size: var(--font-size-lg);
  font-family: var(--font-arabic);
  font-weight: 600;
}

.breakdown-table .value {
  color: var(--primary-color);
  font-weight: 700;
}

/* ========================================
   TOTAL VALUE DISPLAY
   ======================================== */

.total-value-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #e6f4ff 100%);
  border: 2px solid var(--primary-color);
}

.total-value-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-lg);
}

.value-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(44, 82, 130, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.total-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 16px rgba(44, 82, 130, 0.3);
  }

  50% {
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.5);
  }
}

/* ========================================
   MATCH RESULT
   ======================================== */

.match-result {
  margin-top: var(--spacing-md);
}

.direct-match {
  background-color: #f0fdf4;
  border-left: 4px solid var(--success-color);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
}

.direct-match h4 {
  color: var(--success-color);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
}

.divine-names-list {
  display: grid;
  gap: var(--spacing-md);
}

.divine-name-item {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 2px solid #dcfce7;
  transition: all 0.3s ease;
}

.divine-name-item:hover {
  box-shadow: 0 4px 12px rgba(34, 134, 58, 0.2);
  border-color: var(--success-color);
}

.divine-name-item .name-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.divine-name-item .arabic-name {
  font-family: var(--font-arabic);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
}

.divine-name-item .english-name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-dark);
}

.divine-name-item .value-badge {
  background-color: var(--success-color);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 20px;
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.divine-name-item .meaning {
  color: var(--text-gray);
  font-style: italic;
}

/* Two-Name Combination */
.combination-match {
  background-color: #fef3c7;
  border-left: 4px solid var(--warning-color);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
}

.combination-match h4 {
  color: var(--warning-color);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
}

.combinations-list {
  display: grid;
  gap: var(--spacing-md);
}

.combination-item {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 2px solid #fde68a;
  transition: all 0.3s ease;
}

.combination-item:hover {
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
  border-color: var(--warning-color);
}

.combination-formula {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.combination-name {
  flex: 1;
  min-width: 120px;
}

.combination-name .arabic-name {
  font-family: var(--font-arabic);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color);
}

.combination-name .english-name {
  font-size: var(--font-size-base);
  color: var(--text-dark);
}

.combination-name .value {
  font-weight: 700;
  color: var(--warning-color);
}

.plus-sign {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-gray);
}

.equals-sign {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-gray);
}

.total-sum {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--warning-color);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.empty-state {
  text-align: center;
  color: var(--text-gray);
  padding: var(--spacing-xl);
}

.empty-state p {
  font-size: var(--font-size-lg);
}

/* ========================================
   LOADING INDICATOR
   ======================================== */

.loading {
  text-align: center;
  padding: var(--spacing-xl);
}

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-md);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading p {
  color: var(--text-gray);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  :root {
    --spacing-lg: 1.5rem;
    --font-size-2xl: 1.5rem;
  }

  .container {
    padding: 0 var(--spacing-xs);
  }

  .header {
    padding: var(--spacing-lg) var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .header-titles {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }

  [dir="rtl"] .header-titles {
    text-align: center;
  }

  .creator-img {
    width: 80px;
    height: 80px;
  }

  .header h1 {
    font-size: var(--font-size-xl);
  }

  .subtitle {
    font-size: var(--font-size-base);
  }

  .card {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .summary-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-circle {
    width: 140px;
    height: 140px;
  }

  .total-number {
    font-size: 2.5rem;
  }

  .combination-formula {
    flex-direction: column;
    align-items: flex-start;
  }

  .plus-sign,
  .equals-sign {
    align-self: flex-start;
  }

  .breakdown-table {
    font-size: var(--font-size-sm);
  }

  .breakdown-table th,
  .breakdown-table td {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-lg: 1.1rem;
    --font-size-base: 0.95rem;
  }

  .header h1 {
    font-size: var(--font-size-lg);
  }

  .card h3 {
    font-size: var(--font-size-base);
  }

  .name-input {
    font-size: var(--font-size-base);
  }

  .value-circle {
    width: 120px;
    height: 120px;
  }

  .total-number {
    font-size: 2rem;
  }
}

/* ========================================
   RTL SUPPORT
   ======================================== */

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .summary-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .divine-name-item .name-header {
  flex-direction: row-reverse;
}

/* ========================================
   VISITOR WIDGET (PREMIUM)
   ======================================== */

.visitor-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--primary-color);
}

.visitor-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.widget-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 10px;
  color: var(--primary-color);
}

.widget-icon svg {
  width: 22px;
  height: 22px;
}

.widget-stats {
  display: flex;
  flex-direction: column;
}

.stats-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  margin-bottom: 2px;
  font-weight: 600;
}

.stats-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.widget-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  margin-left: 8px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background: var(--success-color);
  border-radius: 50%;
  position: relative;
}

.status-pulse::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--success-color);
  border-radius: 50%;
  animation: status-pulse-anim 2s infinite;
}

@keyframes status-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.status-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--success-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .visitor-widget {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 10px 16px;
    border-radius: 12px;
    border-left-width: 3px;
  }

  .widget-content {
    justify-content: space-between;
  }

  .stats-value {
    font-size: 16px;
  }
}

/* ========================================
   URDU KEYBOARD
   ======================================== */

.btn-keyboard {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin-top: 24px;
  flex-shrink: 0;
}

.btn-keyboard:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-keyboard:active {
  transform: translateY(0);
}

.keyboard-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none; /* hidden by default; JS toggles .open */
  flex-direction: column;
  justify-content: flex-end;
}

.keyboard-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease;
  z-index: calc(var(--z-modal) + 0);
}

.keyboard-modal.open {
  display: flex !important;
  align-items: center; /* Center horizontally */
  justify-content: flex-end; /* Align to bottom */
}

.keyboard-container {
  background-color: #d1d5db; /* Light gray keyboard base */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 8px 4px 20px 4px; /* Padding for keys */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.25s ease;
  width: 100%;
  max-width: 800px; /* Limit width on desktop */
  position: relative;
  z-index: calc(var(--z-modal) + 2);
  margin: 0;
}

/* Optional header inside keyboard if needed, otherwise hide or style minimal */
.keyboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 8px;
}

.keyboard-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
  opacity: 0.6;
}

.keyboard-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  opacity: 0.6;
  padding: 4px;
}

/* Row Layout */
.keyboard-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px; /* Vertical gap between rows */
}

.keyboard-row {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 4px; /* Horizontal gap between keys */
}

/* Key Styles */
.keyboard-key {
  flex: 1; /* Distribute evenly */
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 5px;
  height: 48px; /* Standard touch target height */
  font-size: 1.25rem;
  font-family: var(--font-arabic);
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); /* Key shadow */
  transition: background-color 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  padding: 0;
}

.keyboard-key:active {
  background-color: #e5e7eb;
  box-shadow: none;
  transform: translateY(1px);
}

/* Special Keys */
.key-backspace {
  flex: 1.5; /* Slightly wider */
  background-color: #a3a3a3; /* Darker gray for functional keys */
  color: white;
  font-size: 1.2rem;
}

.key-backspace:active {
  background-color: #737373;
}

.key-enter {
  flex: 2;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-family: var(--font-family);
  border-radius: 20px; /* Pill shape for enter */
}

.key-space {
  flex: 4; /* Wide space bar */
  font-size: 1rem;
  color: #9ca3af;
  font-family: var(--font-family);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .keyboard-container {
    padding: 6px 3px 10px 3px;
  }

  .keyboard-row {
    gap: 3px;
  }

  .keyboard-key {
    height: 42px;
    font-size: 1.1rem;
    border-radius: 4px;
  }

  .key-backspace {
    flex: 1.2;
  }
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
/* ========================================
   INFO LINK SECTION
   ======================================== */
.info-link-section {
  text-align: center;
  border: 1px dashed var(--primary-color);
  background-color: var(--primary-light);
  margin-top: var(--spacing-xl);
}

.info-link-section h3 {
  border-bottom: none;
  margin-bottom: var(--spacing-xs);
}

.info-link-section p {
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  color: var(--text-dark);
}

.info-link-section .btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-link-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-buttons-container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.info-btn-ur {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  direction: rtl;
}

.info-btn-en {
  text-transform: none;
}

/* ========================================
   INFO PAGE COMPONENTS
   ======================================== */
.info-list {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-sm);
}

.info-list li {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.info-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.benefit-item {
  background-color: var(--primary-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--success-color);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 5px;
}
