/* ==========================================================================
   Dijla Tech SaaS Landing Page Styling (CSS) - Polish Edition
   ========================================================================== */

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

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  
  --primary: #38bdf8;
  --primary-hover: #0ea5e9;
  --secondary: #6366f1;
  --secondary-hover: #4f46e5;
  --danger: #ef4444;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --font-en: 'Outfit', 'Inter', sans-serif;
  --font-ar: 'Cairo', sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-en);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}

body.rtl {
  font-family: var(--font-ar);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* Header & Nav */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  background: linear-gradient(135deg, #fff 30%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav.main-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Lang switcher */
.btn-lang {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-lang:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  border: none;
  gap: 8px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--secondary-hover));
  box-shadow: 0 4px 25px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

/* Hero Section */
section.hero {
  padding: 160px 0 100px 0;
  position: relative;
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.15), transparent 60%);
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

body.rtl .hero h1 {
  font-size: 3.2rem;
  line-height: 1.3;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Features Grid */
section.features {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px auto;
  font-size: 1.05rem;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
section.pricing {
  padding: 80px 0;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-weight: 600;
  font-size: 1rem;
}

.pricing-toggle-label.active {
  color: var(--primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-tertiary);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-color);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--secondary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

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

.price-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.price-card.popular {
  border-color: var(--secondary);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.price-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
}

body.rtl .price-card.popular::before {
  content: "الأكثر طلبًا";
  font-family: var(--font-ar);
}

.price-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 40px;
}

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.price-discount-wrap {
  min-height: 24px;
  margin-bottom: 20px;
  text-align: left;
}

body.rtl .price-discount-wrap {
  text-align: right;
}

.price-was {
  font-size: 0.85rem;
  color: var(--danger);
  text-decoration: line-through;
  font-weight: 600;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 6px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: var(--primary);
  font-size: 1rem;
}

/* Documentation / Guide Section with Tabs */
section.guide {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

/* Prerequisites steps */
.prereqs-wrap {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 24px 30px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

body.rtl .prereqs-wrap {
  text-align: right;
}

.prereqs-wrap h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.prereqs-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.prereq-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.prereq-step i {
  color: var(--secondary);
}

.prereq-arrow {
  color: var(--text-muted);
}

body.rtl .prereq-arrow i {
  transform: rotate(180deg);
}

.guide-tabs-nav {
  display: inline-flex;
  background: var(--bg-primary);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

body.rtl .tab-btn {
  font-family: var(--font-ar);
}

.tab-btn.active {
  background: var(--bg-secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Stack manual steps vertically for code blocks */
.guide-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

body.rtl .guide-steps-stack {
  text-align: right;
}

/* Horizontal display for 3-column steps setup */
.guide-steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

body.rtl .guide-steps-horizontal {
  text-align: right;
}

.guide-step-row {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.guide-step-row:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.06);
}

.guide-step-header {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 12px;
  margin-bottom: 4px;
  gap: 8px;
}

.guide-step-number-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.guide-step-row h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0px;
  text-align: center;
}

.guide-step-row p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0px;
  min-height: 60px;
  text-align: center;
}

/* AI Prompt Container */
.ai-prompt-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.ai-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.ai-title i {
  color: #a855f7;
}

/* Beautiful dark theme code blocks */
.code-block-wrapper {
  position: relative;
  margin-top: 14px;
}

.ai-code-block {
  background: #030712;
  padding: 20px 105px 20px 24px;
  border-radius: 10px;
  font-family: 'Consolas', 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 0.88rem;
  color: #e5e7eb;
  white-space: pre-wrap;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow-x: auto;
  line-height: 1.5;
}

.code-block-box {
  background: #060913;
  padding: 16px 105px 16px 20px;
  border-radius: 8px;
  font-family: 'Consolas', 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #e5e7eb;
  white-space: pre;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
  overflow: auto;
  height: 260px;
  line-height: 1.5;
}

body.rtl .ai-code-block, body.rtl .code-block-box {
  text-align: left;
  direction: ltr;
}

/* Sleek custom scrollbars for code boxes and prompt boxes */
.code-block-box::-webkit-scrollbar,
.ai-code-block::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.code-block-box::-webkit-scrollbar-track,
.ai-code-block::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.code-block-box::-webkit-scrollbar-thumb,
.ai-code-block::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.2));
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.code-block-box::-webkit-scrollbar-thumb:hover,
.ai-code-block::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

/* Custom scrollbar for the entire page */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.3), rgba(56, 189, 248, 0.3));
  border-radius: 10px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

/* Support Firefox scrollbar styles */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 102, 241, 0.3) var(--bg-primary);
}

/* Copy button inside code block */
.btn-copy-code {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  transition: all 0.2s ease;
}

.btn-copy-code:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

/* Token Highlights simulating syntax colors */
.token-keyword { color: #f43f5e; font-weight: 600; }
.token-string { color: #10b981; }
.token-property { color: #a855f7; }
.token-number { color: #f59e0b; }
.token-comment { color: #6b7280; font-style: italic; }

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.modal-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  padding: 36px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

body.rtl .modal-close {
  right: auto;
  left: 20px;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.checkout-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 12px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  text-align: left;
}

body.rtl .checkout-section-title {
  text-align: right;
}

/* Form layouts */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

body.rtl .form-group {
  text-align: right;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-control.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Trust Badges */
.payment-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.trust-badge-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge-text i {
  color: #10b981;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icons i {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.payment-icons i.fa-cc-visa { color: #1a1f71; }
.payment-icons i.fa-cc-mastercard { color: #eb001b; }
.payment-icons i.fa-cc-amex { color: #007bc1; }
.payment-icons i.fa-cc-stripe { color: #635bff; }

/* Footer styling */
footer.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Responsive constraints */
@media (max-width: 768px) {
  nav.main-nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .prereqs-steps {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .prereq-arrow {
    display: none;
  }
  
  .guide-steps-horizontal {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Legal Modal styles */
.legal-modal-container {
  max-width: 680px;
}

.legal-modal-body {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

body.rtl .legal-modal-body {
  text-align: right;
  font-family: var(--font-ar);
}

.legal-section {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.legal-section h5 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

body.rtl .legal-section h5 {
  font-family: var(--font-ar);
}

.legal-section p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.legal-modal-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

.btn-close-modal {
  background: #f3f4f6;
  color: #111827;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-close-modal:hover {
  background: #e5e7eb;
}

.btn-close-modal:active {
  transform: scale(0.97);
}

/* Contact Cards inside Modal */
.contact-card {
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-card:hover {
  border-color: #25d366 !important;
  background: rgba(37, 211, 102, 0.12) !important;
}

.email-card:hover {
  border-color: var(--primary) !important;
  background: rgba(99, 102, 241, 0.12) !important;
}

body.rtl .contact-card {
  text-align: right;
}
