/* 
 * Ad Campaign Management Page Styles
 * Glass Morphism Design for Saqqr Digital Agency
 * Version: 1.0
 */



/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--saqqr-dark-blue) 0%, var(--brand-dark) 50%, var(--saqqr-teal) 100%);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}


/* ===== CSS VARIABLES ===== */
:root {
  /* Saqqr Brand Colors */
  --saqqr-dark-blue: #083B66;
  --saqqr-turquoise: #00A7B4;
  --saqqr-gold: #C8A14F;
  --saqqr-light-blue: #0E4A7D;
  --saqqr-dark-hover: #062A4A;
  --saqqr-accent: #00A7B4;
  --saqqr-highlight: #FFD700;
  
  /* Glass Morphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --glass-backdrop: blur(20px);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--saqqr-dark-blue) 0%, var(--saqqr-turquoise) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--saqqr-turquoise) 0%, var(--saqqr-gold) 100%);
  --gradient-hero: linear-gradient(135deg, #083B66 0%, #00A7B4 50%, #C8A14F 100%);
  --gradient-glass: linear-gradient(135deg, rgba(8, 59, 102, 0.1) 0%, rgba(0, 167, 180, 0.1) 100%);
  
  /* Typography */
  --font-primary: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --card-padding: 2rem;
  --border-radius: 16px;
  --border-radius-large: 24px;
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-small: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow-x: hidden;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ===== GLASS MORPHISM COMPONENTS ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--saqqr-dark-blue);
  border: 2px solid var(--saqqr-turquoise);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--saqqr-turquoise);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(-3px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.9;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.facebook-icon {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.instagram-icon {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.tiktok-icon {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.google-icon {
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.snapchat-icon {
  bottom: 20%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.hero-text {
  color: white;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--saqqr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.title-highlight {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--saqqr-gold);
  margin-top: 1rem;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;

  /* 1. إنشاء التدرج اللوني للخلفية */
  background: linear-gradient(135deg, var(--saqqr-turquoise), #FFFFFF);

  /* 2. قص الخلفية لتظهر على شكل النص فقط */
  -webkit-background-clip: text;
  background-clip: text;

  /* 3. جعل لون النص الأصلي شفافًا */
  -webkit-text-fill-color: transparent;

  /* 4. إضافة تأثير التوهج الأبيض */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-large);
  width: 100%;
  max-width: 400px;
}



.card-header h3 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--saqqr-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--saqqr-dark-blue);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== CHALLENGES SECTION ===== */
.challenges-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.challenge-card {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.challenge-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.challenge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}

.challenge-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.challenge-card h3 {
  color: var(--saqqr-dark-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.challenge-card p {
  color: #666;
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-medium);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.service-card h3 {
  color: var(--saqqr-dark-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.why-us-section .section-title,
.why-us-section .section-subtitle {
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.feature-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.feature-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saqqr-gold);
}

.feature-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== COMPLEMENTARY SERVICES SECTION ===== */
.complementary-services-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.complementary-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.complementary-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.card-content {
  padding: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-medium);
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.complementary-card h3 {
  color: var(--saqqr-dark-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.complementary-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--saqqr-turquoise);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.card-link:hover {
  color: var(--saqqr-dark-blue);
}

.complementary-note {
  text-align: center;
  padding: 2rem;
  background: rgba(200, 161, 79, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(200, 161, 79, 0.2);
}

.complementary-note p {
  color: var(--saqqr-dark-blue);
  font-weight: 500;
  margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.faq-item {
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 59, 102, 0.05);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(8, 59, 102, 0.1);
}

.faq-question h3 {
  color: var(--saqqr-dark-blue);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--saqqr-turquoise);
}

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

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: 1.5rem 2rem;
  max-height: 200px;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.cta-content {
  position: relative;
  z-index: 1;
  color: white;
}

.cta-title {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--saqqr-gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --card-padding: 1.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .challenges-grid,
  .services-grid,
  .features-grid,
  .complementary-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon::before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-card,
  .challenge-card,
  .service-card,
  .feature-card,
  .complementary-card {
    padding: 1.5rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.faq-question:focus {
  outline: 2px solid var(--saqqr-gold);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .glass-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--saqqr-dark-blue);
  }
  
  .btn-primary {
    border: 2px solid var(--saqqr-dark-blue);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .floating-elements,
  .floating-shapes,
  .cta-section {
    display: none;
  }
  
  .glass-card {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
  }
  
  .hero-section {
    background: white;
    color: black;
  }
  
  .hero-gradient {
    display: none;
  }
}

/* ============================================= */
/* ===== SOCIAL MEDIA BADGES (WHITE BG) ====== */
/* ============================================= */
.social-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa; /* خلفية رمادية فاتحة جدًا */
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6; /* إطار رمادي خفيف */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ظل ناعم */
}

.social-badge:hover {
    background-color: #ffffff; /* يصبح أبيض عند التمرير */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* ظل أكثر بروزًا */
    border-color: #ced4da;
}

.social-badge i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-badge:hover i {
    transform: scale(1.1);
}

.social-badge span {
    font-size: 0.875rem;
    color: #495057; /* لون نص داكن ليتناسب مع الخلفية الفاتحة */
    font-weight: 600; /* خط أعرض قليلاً للوضوح */
    transition: color 0.3s ease;
}


