@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
  --primary-color: #1a56db; /* Logo Primary Blue */
  --secondary-color: #1e429f; /* Darker Blue */
  --accent-color: #3b82f6; /* Accent Blue */
  --accent-light: #eff6ff;
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  
  color-scheme: light;
  color: var(--text-main);
  background-color: var(--bg-color);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* User requested to avoid dark colors for website colors, so we'll soften the dark theme or keep it light-focused */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #f8fafc; /* Keep it light as requested */
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --border-color: #e2e8f0;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#root {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.app-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--accent-light) 100%);
  position: relative;
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .app-container {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--accent-light) 100%);
  }
}

/* Background animated shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  top: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background-color: var(--accent-color);
  bottom: -150px;
  right: -150px;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.support-card {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  width: 100%;
  max-width: 800px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-header {
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(to bottom, rgba(49, 130, 206, 0.05), transparent);
}

.logo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-title {
  font-family: 'Cairo', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.app-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-body {
  padding: 3rem 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  background: rgba(247, 250, 252, 0.5);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (prefers-color-scheme: dark) {
  .contact-item {
    background: var(--bg-color);
  }
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.contact-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap; 
}

.contact-icon {
  color: var(--accent-color);
}

.contact-val-placeholder {
  height: 24px;
  width: 70%;
  background: var(--border-color);
  border-radius: 4px;
  opacity: 0.5;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.2; }
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  min-height: 27px;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

a.contact-value:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.phone-number {
  unicode-bidi: plaintext;
  text-align: left;
}

[dir="rtl"] .phone-number {
  text-align: right;
}

.description-section {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Language Switcher Styles */
.lang-switcher {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

[dir="rtl"] .lang-switcher {
  right: auto;
  left: 2rem;
}

.lang-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-family: 'Cairo', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lang-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .lang-switcher {
    top: 1rem;
    right: 1rem;
  }
  
  [dir="rtl"] .lang-switcher {
    left: 1rem;
  }
  
  .app-container {
    padding: 1rem;
  }
  
  .card-header {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}
