/*
Theme Name: A Plan
Theme URI: https://a-plan.agency
Author: A Plan Team
Author URI: https://a-plan.agency
Description: Custom theme for A Plan Agency
Version: 1.0
Text Domain: aplan
*/

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

/* ==========================================
   1. Root Variables & Base Styles
   ========================================== */
:root {
  /* Brand Colors */
  --brand-red: #E31E24 !important;
  --brand-red-dark: #BB1418 !important;
  --brand-red-light: #FF4D52 !important;
  
  /* Neutrals */
  --neutral-100: #FFFFFF !important;
  --neutral-200: #F8F9FA !important;
  --neutral-300: #E9ECEF !important;
  --neutral-400: #DEE2E6 !important;
  --neutral-500: #ADB5BD !important;
  --neutral-600: #6C757D !important;
  --neutral-700: #495057 !important;
  --neutral-800: #343A40 !important;
  --neutral-900: #212529 !important;
  
  /* Supporting Colors */
  --whatsapp-green: #25D366 !important;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  line-height: 1.6;
  color: var(--neutral-900);
  direction: rtl;
  background: var(--neutral-100);
  font-size: 16px;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--neutral-900);
}

/* ==========================================
   2. Header & Navigation
   ========================================== */
header {
  background-color: rgba(51, 51, 51, 0.8);
  color: var(--neutral-100);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.sticky {
  background-color: rgba(51, 51, 51, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
  padding: 5px 0;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--neutral-100);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--brand-red-light);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--neutral-100);
  transition: all 0.3s linear;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; 
  right: 0;
  width: 100%; 
  height: 100%;
  background-color: var(--neutral-900);
  z-index: 1001;
  padding-top: 60px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--neutral-100);
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Nav Links Underline */
.nav-links a {
  position: relative;
  padding-bottom: 5px;
  font-weight: 550;
}

.nav-links a:not(.contac-cta)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand-red);
  transition: width 0.3s ease;
}

.nav-links a:not(.contac-cta):hover::after {
  width: 100%;
}

/* Contact Button Border Radius */
.contac-cta {
  background-color: var(--brand-red);
  color: var(--neutral-100);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--brand-red);
  transition: all 0.3s ease;
}

.contac-cta:hover {
  background-color: var(--neutral-100);
  border: 2px solid var(--neutral-100);
  color: var(--neutral-100);
}

/* ==========================================
   3. Hero Section
   ========================================== */
.hero {
  background: 
    linear-gradient(
      rgba(40, 15, 15, 0.35),
      rgba(227, 30, 36, 0.25),
      rgba(25, 10, 10, 0.3)
    ),
    url('../assets/images/hero-bg.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--neutral-100);
  padding: 6rem 0 4rem;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Creative Hero for Homepage */
.creative-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../assets/images/hero-bg.jpg') no-repeat center center/cover;
  color: var(--neutral-100);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(227, 30, 36, 0.2), transparent 40%),
              radial-gradient(circle at 70% 20%, rgba(227, 30, 36, 0.2), transparent 40%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.creative-hero-content {
  flex: 1 1 500px;
  position: relative;
  margin-top: 40px;
  animation: fadeInUp 1s ease;
  margin-left: 2rem;
}

.creative-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.creative-hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
}

.creative-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.creative-hero-form {
  flex: 1 1 350px;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 1.2s ease;
  max-width: 450px;
}

.creative-hero-form h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--neutral-100);
  font-weight: 600;
}

/* Hero Form Styles */
#aplan-audit-form input {
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 1.2rem;
  border: none;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.1);
  color: var(--neutral-100);
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

#aplan-audit-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

#aplan-audit-form input:focus {
  outline: none;
  background-color: rgba(255,255,255,0.15);
  border-color: var(--brand-red);
}

#aplan-audit-form .aplan-fancy-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#aplan-audit-form .aplan-fancy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(227, 30, 36, 0.3);
}

/* ==========================================
   4. Buttons & CTAs
   ========================================== */
.cta-button,
.aplan-fancy-btn,
.fancy-btn {
  display: inline-block;
  color: var(--neutral-100);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  text-align: center;
  background-color: var(--brand-red);
}

.cta-button:hover,
.aplan-fancy-btn:hover,
.fancy-btn:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.read-more-btn {
  display: inline-block;
  background-color: var(--brand-red);
  color: var(--neutral-100);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.read-more-btn:hover {
  background-color: var(--brand-red-dark);
  transform: scale(1.05);
}

/* ==========================================
   5. About Section - Homepage
   ========================================== */
.premium-about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #05103B 0%, #0A1745 100%);
  position: relative;
  color: #ffffff;
  overflow: hidden;
  direction: rtl;
}

/* Background Elements */
.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
}

.shape-2 {
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
}

.bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.line-1 {
  top: 20%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: rotate(-5deg);
}

.line-2 {
  bottom: 30%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: rotate(3deg);
}

/* Container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.about-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.title-underline {
  position: relative;
  width: 120px;
  height: 4px;
  background: #E31E24;
  margin: 0 auto;
  border-radius: 2px;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E31E24;
  transform: translateY(-50%);
}

.title-underline::before {
  left: -10px;
}

.title-underline::after {
  right: -10px;
}

/* Content Layout */
.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Image Column */
.about-image-column {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-container:hover img {
  transform: scale(1.03);
}

.image-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transform: translate(15px, 15px);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 120px;
  height: 120px;
  background: #E31E24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
  z-index: 2;
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 500;
}

/* Text Column */
.about-text-column {
  padding-right: 20px;
}

.company-signature {
  margin-bottom: 25px;
  font-weight: 700;
}

.signature-letter {
  font-size: 3.5rem;
  color: #E31E24;
}

.signature-word {
  font-size: 2.5rem;
  color: #ffffff;
  position: relative;
  top: -5px;
}

.about-paragraphs {
  margin-bottom: 40px;
}

.highlight-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-right: 20px;
}

.highlight-paragraph::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: #E31E24;
  border-radius: 2px;
}

.about-text-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(227, 30, 36, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E31E24;
  font-size: 1.2rem;
  margin-left: 15px;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* CTA Button */
.about-cta-button {
  display: inline-flex;
  align-items: center;
  background: #E31E24;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-cta-button i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.about-cta-button:hover {
  background: #c11a1f;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227, 30, 36, 0.4);
}

.about-cta-button:hover i {
  transform: translateX(-5px);
}

/* ==========================================
   6. Services Section - Homepage
   ========================================== */
.ap-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #212529, #343A40);
  color: #ffffff;
  text-align: center;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.ap-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.ap-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.ap-section-title {
  font-size: 3.5rem;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ap-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E31E24;
  border-radius: 4px;
}

.ap-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.ap-service-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ap-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background-color: rgba(227, 30, 36, 0.15);
  border: 1px solid rgba(227, 30, 36, 0.3);
}

.ap-service-icon {
  margin: 0 auto 25px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 2px solid rgba(227, 30, 36, 0.5);
  border-radius: 50%;
  font-size: 30px;
  color: #ffffff;
  transition: all 0.3s ease;
  background-color: rgba(227, 30, 36, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-service-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.ap-service-card:hover .ap-service-icon {
  transform: scale(1.1);
  background-color: rgba(227, 30, 36, 0.25);
  border-color: rgba(227, 30, 36, 0.8);
}

.ap-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.ap-service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
  flex-grow: 1;
  font-size: 1rem;
}

.ap-service-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: rgba(227, 30, 36, 0.9);
  color: #ffffff;
  border: 1px solid rgba(227, 30, 36, 0.5);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.ap-service-btn:hover {
  background-color: #ffffff;
  color: #E31E24;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.ap-cta-container {
  margin-top: 30px;
}

.ap-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: #E31E24;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.ap-cta-btn:hover {
  background-color: #ffffff;
  color: #E31E24;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

/* ==========================================
   7. Results Showcase
   ========================================== */
.premium-results-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
  direction: rtl;
}

/* Background decorative elements */
.premium-results-showcase::before,
.premium-results-showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.premium-results-showcase::before {
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
}

.premium-results-showcase::after {
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section header styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.title-decoration {
  position: relative;
  width: 80px;
  height: 3px;
  background: #E31E24;
  margin: 0 auto;
  border-radius: 2px;
}

.title-decoration::before,
.title-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E31E24;
  transform: translateY(-50%);
}

.title-decoration::before {
  left: -15px;
}

.title-decoration::after {
  right: -15px;
}

/* Tabs styling */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.showcase-tab {
  padding: 12px 25px;
  background: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.showcase-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E31E24, #BB1418);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.showcase-tab.active {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(227, 30, 36, 0.2);
}

.showcase-tab.active::before {
  opacity: 1;
}

.showcase-tab:hover:not(.active) {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Content area */
.showcase-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Slider styling */
.showcase-slider {
  display: none;
  position: relative;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.showcase-slider.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

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

/* Slider navigation arrows */
.slider-arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(227, 30, 36, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #BB1418;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  right: 20px;
}

.next-arrow {
  left: 20px;
}

/* Slider wrapper and slides */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
}

.slider-slide.active {
  display: block;
  opacity: 1;
}

/* Slide image */
.slide-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.slider-slide:hover .slide-image img {
  transform: scale(1.05);
}

/* Slide number */
.slide-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #E31E24;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(227, 30, 36, 0.3);
  z-index: 5;
}

/* Slide caption */
.slide-caption {
  background: #212529;
  color: white;
  padding: 25px 30px;
  border-top: 3px solid #E31E24;
}

.slide-caption h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.slide-caption p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ==========================================
   8. Testimonials Section
   ========================================== */
.premium-testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #E31E24, #981115);
  position: relative;
  overflow: hidden;
  direction: rtl;
  color: #fff;
}

/* Container */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.quote-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transform: rotate(-10deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rating {
  display: flex;
  gap: 3px;
}

.rating i {
  color: #FFD700;
}

/* Testimonial Content */
.testimonial-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-content p {
  line-height: 1.7;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.author-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* CTA Button */
.testimonials-cta {
  text-align: center;
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #E31E24;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.premium-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.premium-cta-button:hover::before {
  transform: translateX(100%);
}

.premium-cta-button i {
  transition: transform 0.3s ease;
}

.premium-cta-button:hover i {
  transform: translateX(-5px);
}

/* Background Elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 10%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.5) 0%, transparent 10%);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(0, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(-15px, -10px) rotate(3deg);
  }
}

/* ==========================================
   9. Success Stories Section
   ========================================== */
.elite-success-stories {
  padding: 120px 0;
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  direction: rtl;
}

/* Distinctive Geometric Background Elements */
.elite-success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 35%;
  background: radial-gradient(circle at top right, rgba(227, 30, 36, 0.08), transparent 70%);
  z-index: 1;
}

.elite-success-stories::after {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: 
    linear-gradient(135deg, transparent 49.5%, rgba(227, 30, 36, 0.03) 49.5%, rgba(227, 30, 36, 0.03) 50.5%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(227, 30, 36, 0.03) 49.5%, rgba(227, 30, 36, 0.03) 50.5%, transparent 50.5%);
  background-size: 30px 30px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  opacity: 0.5;
  transform: rotate(-15deg);
}

.stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Sophisticated Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 3px;
  background: #E31E24;
}

.title-accent {
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  width: 120px;
  height: 1px;
  background: rgba(227, 30, 36, 0.3);
}

/* Innovative Navigation */
.stories-navigator {
  margin-bottom: 60px;
}

.nav-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-indicator {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  position: relative;
  color: #495057;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 30px;
  overflow: hidden;
}

.nav-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
  border-radius: 30px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.5;
}

.nav-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #E31E24, #BB1418);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.nav-indicator.active {
  color: white;
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.25);
  transform: translateY(-2px);
}

.nav-indicator.active::before {
  opacity: 0;
}

.nav-indicator.active::after {
  opacity: 1;
}

.nav-indicator:hover:not(.active) {
  transform: translateY(-2px);
}

.nav-indicator:hover:not(.active)::before {
  opacity: 0.8;
}

.indicator-icon {
  margin-left: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-indicator.active .indicator-icon {
  background: rgba(255, 255, 255, 0.25);
}

.indicator-text {
  font-size: 1rem;
}

/* Showcase Content */
.stories-showcase {
  position: relative;
}

.story-category {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.story-category.active {
  display: grid;
  animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Distinctive Card Design */
.case-card-wrapper {
  perspective: 1500px;
}

.case-card {
    position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  transform: translateY(0) rotateY(0);
}

.case-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px) rotateY(2deg);
}

.case-media {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-card:hover .case-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(145deg, #E31E24, #BB1418);
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
  z-index: 2;
}

.case-content {
  padding: 30px;
  position: relative;
}

.case-title {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 3em;
}

/* Results Showcase */
.case-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-item {
  text-align: center;
  flex: 1;
}

.result-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #E31E24;
  margin-bottom: 5px;
}

.result-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
}

.result-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.case-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-link {
  display: inline-flex;
  align-items: center;
  color: #E31E24;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 3px;
}

.case-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #E31E24;
  transition: width 0.3s ease;
}

.case-link:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.case-link i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.case-link:hover i {
  transform: translateX(-5px);
}

/* ==========================================
   10. FAQ Section
   ========================================== */
.crypto-faq-section {
  background: linear-gradient(135deg, #0F1A33 0%, #1A1047 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  direction: rtl;
}

/* Background Animation */
.crypto-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.crypto-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: 0 0 15px rgba(227, 30, 36, 0.3);
  opacity: 0.3;
  animation: float 15s infinite linear;
}

.crypto-particle:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation-duration: 25s;
}

.crypto-particle:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 70%;
  left: 5%;
  animation-duration: 18s;
}

.crypto-particle:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-duration: 30s;
}

.crypto-particle:nth-child(4) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 20%;
  animation-duration: 22s;
}

.crypto-particle:nth-child(5) {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 30%;
  animation-duration: 27s;
}

.crypto-particle:nth-child(6) {
  width: 70px;
  height: 70px;
  bottom: 10%;
  left: 40%;
  animation-duration: 20s;
}

.crypto-particle:nth-child(7) {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 30%;
  animation-duration: 24s;
}

.crypto-particle:nth-child(8) {
  width: 50px;
  height: 50px;
  top: 30%;
  right: 5%;
  animation-duration: 19s;
}

.crypto-particle:nth-child(9) {
  width: 110px;
  height: 110px;
  bottom: 30%;
  left: 20%;
  animation-duration: 26s;
}

.crypto-particle:nth-child(10) {
  width: 75px;
  height: 75px;
  top: 50%;
  right: 40%;
  animation-duration: 23s;
}

/* Container */
.crypto-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.crypto-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.crypto-title-decoration {
  margin-bottom: 20px;
}

.crypto-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(227, 30, 36, 0.1);
  color: #E31E24;
  font-size: 36px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
  animation: pulse 3s infinite;
}

.crypto-title-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(227, 30, 36, 0.05);
  border-radius: 28px;
  z-index: -1;
}

.crypto-title-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(227, 30, 36, 0.02);
  border-radius: 32px;
  z-index: -2;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
  }
  50% {
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
  }
}

.crypto-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 15px rgba(227, 30, 36, 0.3);
}

.crypto-title-shape {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, transparent, #E31E24, transparent);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.crypto-title-shape::before,
.crypto-title-shape::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #E31E24;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(227, 30, 36, 0.6);
}

.crypto-title-shape::before {
  left: -15px;
}

.crypto-title-shape::after {
  right: -15px;
}

/* FAQ Container */
.crypto-faq-container {
  position: relative;
}

.crypto-faq-container::before {
  content: '?';
  position: absolute;
  font-size: 400px;
  font-weight: bold;
  color: rgba(227, 30, 36, 0.02);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* FAQ Items */
.crypto-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
}

.crypto-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), transparent);
  border-radius: 0 16px 0 60px;
  z-index: 1;
  transition: all 0.4s ease;
  opacity: 0.3;
}

.crypto-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.crypto-faq-item.active {
  background: rgba(227, 30, 36, 0.08);
  border-color: rgba(227, 30, 36, 0.2);
}

.crypto-faq-item.active::before {
  opacity: 0.5;
}

/* FAQ Question */
.crypto-faq-question {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.crypto-question-icon {
  margin-left: 15px;
  font-size: 22px;
  color: #E31E24;
  transition: transform 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.1);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.15);
  flex-shrink: 0;
}

.crypto-faq-item.active .crypto-question-icon {
  transform: rotate(180deg);
  background: rgba(227, 30, 36, 0.2);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.crypto-faq-question h3 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
  flex: 1;
}

.crypto-faq-item.active .crypto-faq-question h3 {
  color: #E31E24;
}

/* FAQ Answer */
.crypto-faq-answer {
  padding: 0 30px 20px 80px;
  display: none;
}

.crypto-faq-item.active .crypto-faq-answer {
  display: block;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crypto-faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  position: relative;
}

.crypto-faq-answer p::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -50px;
  width: 3px;
  height: calc(100% - 20px);
  background: rgba(227, 30, 36, 0.3);
  border-radius: 2px;
}

/* ==========================================
   11. Contact Section
   ========================================== */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #343A40, #212529);
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2);
}

/* ==========================================
   12. Footer
   ========================================== */
footer {
  position: relative;
  background: linear-gradient(to top, #212529, #343A40);
  padding-top: 60px;
  overflow: hidden;
  background-color: var(--neutral-900);
  color: var(--neutral-100);
  padding: 3rem 0;
  border-top: 3px solid var(--brand-red);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--brand-red), transparent);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

footer p {
  font-size: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--neutral-100);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-red-light);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--neutral-100);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  color: var(--brand-red-light);
  transform: translateY(-5px);
}

/* ==========================================
   13. Popup and Modal Styles
   ========================================== */
.popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
}

.popup .popup-content {
  background-color: var(--neutral-100);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: right;
  position: relative;
}

.popup .close-popup {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--neutral-600);
}

.popup h2 {
  margin-bottom: 1.5rem;
  color: var(--brand-red);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral-200);
}

.popup .form-group {
  margin-bottom: 1.5rem;
}

.popup .form-group label {
  color: var(--neutral-800);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.popup .form-group input {
  background-color: var(--neutral-100);
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--neutral-900);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.popup .form-group input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(227, 24, 36, 0.1);
  outline: none;
}

.popup .form-group input::placeholder {
  color: var(--neutral-500);
}

.close-popup {
  position: absolute;
  top: 15px;
  left: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral-600);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-popup:hover {
  color: var(--brand-red);
  background-color: rgba(227, 24, 36, 0.1);
  transform: rotate(90deg);
}

.popup .aplan-fancy-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
}

.popup .aplan-fancy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 24, 36, 0.3);
}

/* ==========================================
   14. Whatsapp Button
   ========================================== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--whatsapp-green);
  width: 60px;
  height: 60px;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 3s infinite;
}

.whatsapp-button i {
  color: var(--neutral-100);
  font-size: 30px;
}

/* ==========================================
   15. Mobile CTA
   ========================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-900);
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-cta-button {
  display: inline-block;
  width: 48%;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  color: var(--neutral-100);
  font-weight: bold;
  border-radius: 50px;
  margin: 0 1%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-cta-button.request-call {
  background-color: var(--brand-red);
}

.mobile-cta-button.request-call:hover {
  background-color: var(--brand-red-dark);
}

.mobile-cta-button.whatsapp {
  background-color: var(--whatsapp-green);
}

.mobile-cta-button.whatsapp:hover {
  background-color: #20b35a;
}

/* ==========================================
   16. Team Section Styles
   ========================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member {
  background-color: var(--neutral-100);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.member-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.member-info p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Team filter buttons */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-button {
  padding: 8px 15px;
  background: var(--neutral-200);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
  background: var(--brand-red);
  color: var(--neutral-100);
}

/* Team stats section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral-100);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--neutral-600);
  font-size: 0.9rem;
}

/* Join team section */
.join-team {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #E31E24, #BB1418);
  color: var(--neutral-100);
}

.join-team-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--neutral-100);
  color: var(--brand-red);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.join-team-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================
   17. Content Creation Page Styles
   ========================================== */
.horizontal-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--neutral-200);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.tabs-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  border-bottom: 2px solid var(--neutral-200);
  list-style: none;
  margin-bottom: 1rem;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.tabs-list::-webkit-scrollbar {
  display: none;
}

.tabs-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabs-list li {
  flex: 0 0 auto;
  position: relative;
}

.tab-button {
  width: 200px;
  padding: 1rem;
  background: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--neutral-900);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-button:hover {
  background: var(--neutral-200);
  color: var(--brand-red);
  box-shadow: 0 4px 12px rgba(227,30,36,0.3);
}

.tab-button.active {
  background: var(--brand-red);
  color: var(--neutral-100);
  box-shadow: 0 2px 8px rgba(227,30,36,0.2);
  font-weight: 600;
  border: none;
}

.tabs-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
  background: var(--neutral-100);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(227,30,36,0.1);
  width: 100%;
  max-width: 100%;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: 2.2rem;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--neutral-200);
  position: relative;
}

.tab-content h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--brand-red);
}

.tab-content .content-editable {
  max-width: 100%;
  overflow-y: auto;
  padding-right: 1rem;
}

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

/* Scroll Buttons for RTL */
.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-button:hover {
  background-color: rgba(255,255,255,1);
  transform: translateY(-50%) scale(1.1);
}

.scroll-next {
  left: 10px; /* "Next" button on the left side for RTL */
}

.scroll-prev {
  right: 10px; /* "Previous" button on the right side for RTL */
}

.scroll-button i {
  font-size: 1.2rem;
  color: var(--neutral-900);
}

/* ==========================================
   18. Responsive Styles
   ========================================== */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .premium-about-section {
    padding: 100px 0;
  }
  
  .about-content-wrapper {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.8rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
  }
  
  .badge-number {
    font-size: 2.2rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .premium-results-showcase {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.7rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image-column {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-text-column {
    padding-right: 0;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .highlight-paragraph {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ap-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ap-section-title {
    font-size: 3rem;
  }
  
  .ap-service-card {
    padding: 30px 20px;
  }
  
  .slide-image {
    height: 350px;
  }
  
  .slide-caption h3 {
    font-size: 1.4rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .premium-results-showcase {
    padding: 80px 0;
  }
  
  .story-category {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tabs-list {
    border-bottom: none;
    border-top: 2px solid var(--neutral-200);
    padding-top: 1rem;
  }
  
  .tab-button {
    font-size: 1.1rem;
    padding: 0.8rem;
    width: 150px;
  }
  
  .tab-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 0.5rem 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  h1, .section-title, .aplan-section-title {
    font-size: 2rem;
  }
  
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .client-logo {
    max-width: 100px;
    margin: 0 1rem;
  }
  
  .creative-hero-form {
    margin-top: 2rem;
  }
  
  #aplan-audit-form input {
    font-size: 16px;
  }
  
  .ap-case-study-item {
    flex: 1 1 100%;
  }
  
  .mobile-cta {
    display: flex;
    justify-content: space-between;
  }
  
  .mobile-cta-button {
    font-size: 0.9rem;
  }
  
  .form-group label {
    margin-bottom: 0.3rem;
  }
  
  .premium-about-section {
    padding: 80px 0;
  }
  
  .about-header {
    margin-bottom: 50px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .about-content-wrapper {
    gap: 40px;
  }
  
  .company-signature {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .signature-letter {
    font-size: 3rem;
  }
  
  .signature-word {
    font-size: 2.2rem;
  }
  
  .experience-badge {
    width: 90px;
    height: 90px;
    bottom: -20px;
    left: -20px;
  }
  
  .badge-number {
    font-size: 2rem;
  }
  
  .badge-text {
    font-size: 0.75rem;
  }
  
  .ap-services-section {
    padding: 60px 0;
  }
  
  .ap-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .ap-service-card {
    padding: 25px 15px;
  }
  
  .premium-results-showcase {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .showcase-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .slide-image {
    height: 300px;
  }
  
  .slide-caption {
    padding: 20px 25px;
  }
  
  .slide-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .slide-caption p {
    font-size: 0.9rem;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .premium-testimonials {
    padding: 60px 0;
  }
  
  .section-badge {
    font-size: 0.9rem;
  }
  
  .premium-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .crypto-faq-section {
    padding: 60px 0;
  }
  
  .crypto-section-title {
    font-size: 2rem;
  }
  
  .crypto-title-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .crypto-faq-item::before {
    width: 40px;
    height: 40px;
  }
  
  .crypto-faq-question {
    padding: 18px 25px;
  }
  
  .crypto-question-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-left: 12px;
  }
  
  .crypto-faq-question h3 {
    font-size: 1rem;
  }
  
  .crypto-faq-answer {
    padding: 0 25px 18px 65px;
  }
  
  .crypto-faq-answer p::before {
    right: -40px;
  }
  
  .crypto-faq-container::before {
    display: none;
  }
  
  .horizontal-tabs-container {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .tabs-list {
    border-bottom: none;
    border-top: 2px solid var(--neutral-200);
    padding-top: 1rem;
  }
  
  .tab-button {
    font-size: 1rem;
    padding: 0.6rem;
    width: 120px;
  }
  
  .tab-button.active {
    border-top: 3px solid var(--brand-red);
  }
  
  .tab-content {
    padding: 1.5rem;
  }
  
  .tab-content h3 {
    font-size: 1.8rem;
  }
  
  .scroll-button {
    width: 30px;
    height: 30px;
  }
  
  .scroll-button i {
    font-size: 1rem;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-button i {
    font-size: 25px;
  }
  
  footer {
    padding: 2rem 0;
  }
  
  footer p {
    font-size: 0.95rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-social a {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cta-button, .aplan-fancy-btn, .fancy-btn {
    padding: 0.6rem 1.5rem;
    min-width: 100px;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .popup-content {
    padding: 1.5rem;
  }
  
  .popup h2 {
    font-size: 1.3rem;
  }
  
  .close-popup {
    top: 5px;
    right: 10px;
  }
  
  .aplan-fancy-btn, .fancy-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .aplan-section-title {
    font-size: 1.5rem;
  }
  
  .ap-case-study-image {
    height: 150px;
  }
  
  .mobile-cta {
    padding: 8px;
  }
  
  .mobile-cta-button {
    font-size: 0.8rem;
    padding: 10px 0;
  }
  
  .premium-about-section {
    padding: 60px 0;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .highlight-paragraph {
    font-size: 1rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .about-cta-button {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  .ap-services-section {
    padding: 50px 0;
  }
  
  .ap-section-title {
    font-size: 2.2rem;
  }
  
  .ap-services-grid {
    grid-template-columns: 1fr;
  }
  
  .ap-service-card {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .premium-results-showcase {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .showcase-tabs {
    gap: 10px;
  }
  
  .showcase-tab {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .slide-image {
    height: 250px;
  }
  
  .slide-caption h3 {
    font-size: 1.2rem;
  }
  
  .slide-caption p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
  
  .premium-cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .crypto-faq-section {
    padding: 50px 0;
  }
  
  .crypto-section-title {
    font-size: 1.7rem;
  }
  
  .crypto-title-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .crypto-faq-question {
    padding: 15px 20px;
  }
  
  .crypto-question-icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
    margin-left: 10px;
  }
  
  .crypto-faq-answer {
    padding: 0 20px 15px 55px;
  }
  
  .crypto-faq-answer p {
    font-size: 0.9rem;
  }
  
  .crypto-faq-answer p::before {
    right: -35px;
  }
  
  .horizontal-tabs-container {
    padding: 1rem;
  }
  
  .tab-button {
    font-size: 0.9rem;
    padding: 0.5rem;
    width: 100px;
  }
  
  .tab-content h3 {
    font-size: 1.5rem;
  }
  
  .tab-content .content-editable {
    max-height: 50vh;
  }
  
  .add-tab-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .scroll-button {
    width: 25px;
    height: 25px;
  }
  
  .scroll-button i {
    font-size: 0.9rem;
  }
  
  .whatsapp-button {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
  
  .whatsapp-button i {
    font-size: 20px;
  }
  
  footer {
    padding: 1.5rem 0;
  }
  
  footer p {
    font-size: 0.85rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-social a {
    font-size: 1.2rem;
  }
}