/*
Theme Name: Bold Pixel Theme
Theme URI: https://boldpixel.com
Author: Bold Pixel
Author URI: https://boldpixel.com
Description: A modern, bilingual block theme with light/dark modes for Bold Pixel digital agency
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boldpixel-theme
*/

:root {
  /* Brand Colors */
  --bp-primary: #FFAA00;
  --bp-primary-dark: #CC8C00;
  --bp-primary-light: #FFD666;
  --bp-ink: #0E121B;
  --bp-gray-900: #111827;
  --bp-gray-800: #1F2937;
  --bp-gray-700: #374151;
  --bp-gray-600: #4B5563;
  --bp-gray-500: #6B7280;
  --bp-gray-400: #9CA3AF;
  --bp-gray-300: #D1D5DB;
  --bp-gray-200: #E5E7EB;
  --bp-gray-100: #F3F4F6;
  --bp-gray-50: #F9FAFB;
  --bp-white: #FFFFFF;
  --bp-radius: 20px;
  
  /* Light Mode - Optimized UX */
  --bp-bg: #FFFFFF;
  --bp-text: #111827;
  --bp-text-secondary: #6B7280;
  --bp-heading: #0E121B;
  --bp-card-bg: #F9FAFB;
  --bp-border: #E5E7EB;
  --bp-accent: #FFAA00;
  --bp-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --bp-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  --bp-bg: #0E121B;
  --bp-text: #F3F4F6;
  --bp-text-secondary: #9CA3AF;
  --bp-heading: #FFFFFF;
  --bp-card-bg: #1F2937;
  --bp-border: #374151;
  --bp-accent: #FFAA00;
  --bp-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  --bp-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Header/Footer handled by Elementor - no theme styles needed */

/* ==========================================================================
   THEME COMPATIBILITY
   ========================================================================== */

/* Theme uses Elementor for header/footer - no custom styles needed */

/* ==========================================================================
   LEGACY STYLES (kept for compatibility)
   ========================================================================== */

/* Desktop Menu (legacy) */
.bp-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-menu a {
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}

.bp-menu a:hover,
.bp-menu a.active {
  color: var(--bp-primary);
}

.bp-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bp-primary);
}

.bp-menu .bp-btn-nav {
  background: var(--bp-primary);
  color: #000;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.bp-menu .bp-btn-nav:hover {
  background: var(--bp-primary-dark);
  color: #000;
}

.bp-menu .bp-btn-nav::after {
  display: none;
}

/* Language Switcher */
.bp-lang-switch {
  margin-left: 16px;
}

.bp-lang-btn {
  padding: 8px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
}

.bp-lang-btn:hover {
  border-color: var(--bp-primary);
  color: var(--bp-primary);
}

/* Mobile Menu Toggle */
.bp-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bp-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #374151;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile Menu */
.bp-mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}

.bp-mobile-menu.active {
  display: block;
}

.bp-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-mobile-menu-list li {
  margin-bottom: 16px;
}

.bp-mobile-menu-list a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.bp-mobile-menu-list a:hover {
  background: #F3F4F6;
  color: var(--bp-primary);
}

.bp-mobile-menu-list .bp-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
}

.bp-mobile-lang {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .bp-menu,
  .bp-lang-switch {
    display: none;
  }
  
  .bp-menu-toggle {
    display: flex;
  }
  
  .bp-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .bp-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .bp-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* RTL Support */
[dir="rtl"] .bp-lang-switch {
  margin-left: 0;
  margin-right: 16px;
}

[dir="rtl"] .bp-menu {
  flex-direction: row-reverse;
}

/* Dark mode header */
[data-theme="dark"] .bp-header {
  background: rgba(14, 18, 27, 0.95);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .bp-logo-img {
  background: #FFFFFF;
  padding: 8px;
  border-radius: 8px;
}

[data-theme="dark"] .bp-card {
  background: #1F2937;
  border: 1px solid #374151;
}

[data-theme="dark"] .bp-card:hover {
  border-color: #FFAA00;
  background: #252D3C;
}

/* Professional Dark Mode Colors */
[data-theme="dark"] .bp-service-title,
[data-theme="dark"] .bp-blog-title a,
[data-theme="dark"] .bp-footer-title {
  color: #FFFFFF;
}

[data-theme="dark"] .bp-service-desc,
[data-theme="dark"] .bp-blog-excerpt {
  color: #9CA3AF;
}

[data-theme="dark"] .bp-footer-nav a,
[data-theme="dark"] .bp-footer-email a,
[data-theme="dark"] .bp-footer-phone a {
  color: #D1D5DB;
}

[data-theme="dark"] .bp-footer-nav a:hover,
[data-theme="dark"] .bp-footer-email a:hover,
[data-theme="dark"] .bp-footer-phone a:hover {
  color: #FFAA00;
}

/* Light Mode - Keep clean black text */
[data-theme="light"] .bp-service-title,
[data-theme="light"] .bp-blog-title a {
  color: #111827;
}

[data-theme="light"] .bp-service-desc,
[data-theme="light"] .bp-blog-excerpt {
  color: #6B7280;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bp-bg);
  color: var(--bp-text);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography Colors - Professional UX */
h1, h2, h3, h4, h5, h6 {
  color: var(--bp-heading);
}

p {
  color: var(--bp-text);
}

a {
  color: var(--bp-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bp-primary-dark);
}

/* Specific element colors */
.bp-text-center h1,
.bp-text-center h2 {
  color: var(--bp-primary);
}

.bp-service-title,
.bp-blog-title a,
.bp-footer-title {
  color: var(--bp-heading);
}

.bp-service-desc,
.bp-blog-excerpt,
.bp-text-secondary {
  color: var(--bp-text-secondary);
}

body[dir="rtl"] {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
}

/* Links - removed duplicate, handled above */

/* Buttons */
.bp-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--bp-primary);
  color: var(--bp-ink);
  border: none;
  border-radius: var(--bp-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.bp-btn:hover {
  background: var(--bp-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.bp-btn-outline {
  background: transparent;
  color: var(--bp-text);
  border: 2px solid var(--bp-primary);
}

.bp-btn-outline:hover {
  background: var(--bp-primary);
  color: var(--bp-ink);
}

/* Container */
.bp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.bp-container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* Grid System */
.bp-grid {
  display: grid;
  gap: 24px;
}

.bp-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.bp-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.bp-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards - Professional UX */
.bp-card {
  background: var(--bp-card-bg);
  border-radius: var(--bp-radius);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: var(--bp-shadow);
}

.bp-card:hover {
  border-color: var(--bp-primary);
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
}

[data-theme="dark"] .bp-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .bp-card:hover {
  box-shadow: 0 10px 40px rgba(255, 170, 0, 0.15);
}

/* Sections */
.bp-section {
  padding: 80px 0;
}

.bp-section-sm {
  padding: 40px 0;
}

.bp-section-lg {
  padding: 120px 0;
}

/* Utilities */
.bp-text-center {
  text-align: center;
}

.bp-text-primary {
  color: var(--bp-primary);
}

.bp-mb-1 { margin-bottom: 8px; }
.bp-mb-2 { margin-bottom: 16px; }
.bp-mb-3 { margin-bottom: 24px; }
.bp-mb-4 { margin-bottom: 32px; }
.bp-mb-5 { margin-bottom: 48px; }

.bp-mt-1 { margin-top: 8px; }
.bp-mt-2 { margin-top: 16px; }
.bp-mt-3 { margin-top: 24px; }
.bp-mt-4 { margin-top: 32px; }
.bp-mt-5 { margin-top: 48px; }

/* Responsive */
@media (max-width: 968px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .bp-section {
    padding: 48px 0;
  }
  
  .bp-container {
    padding: 0 16px;
  }
  
  .bp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .bp-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .bp-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .bp-section {
    padding: 40px 0;
  }
  
  .bp-grid-4,
  .bp-grid-3,
  .bp-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .bp-card {
    padding: 20px;
  }
  
  .bp-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* Loading Animation */
.bp-loading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bp-loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */

.bp-client-logos-section {
  padding: 60px 0;
}

.bp-logos-header {
  margin-bottom: 40px;
}

.bp-logos-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
  color: var(--bp-heading);
}

.bp-logos-subtitle {
  font-size: 1rem;
  color: var(--bp-text-secondary);
  margin-bottom: 0;
}

/* Logo Grid */
.bp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.bp-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--bp-card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bp-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
}

.bp-logo-item img {
  max-height: var(--logo-size, 120px);
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Grayscale Effect */
.bp-logos-grayscale .bp-logo-item img {
  filter: grayscale(100%);
  opacity: 0.7;
}

.bp-logos-grayscale .bp-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Background Styles */
.bp-logos-bg-light {
  background: #f8f9fa;
}

[data-theme="dark"] .bp-logos-bg-light {
  background: #1a1f2e;
}

.bp-logos-bg-dark {
  background: #1a1f2e;
}

.bp-logos-bg-dark .bp-logos-title,
.bp-logos-bg-dark .bp-logos-subtitle {
  color: #fff;
}

.bp-logos-bg-dark .bp-logo-item {
  background: rgba(255, 255, 255, 0.1);
}

.bp-logos-bg-gradient {
  background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
}

.bp-logos-bg-gradient .bp-logos-title,
.bp-logos-bg-gradient .bp-logos-subtitle {
  color: #fff;
}

.bp-logos-bg-gradient .bp-logo-item {
  background: rgba(255, 255, 255, 0.95);
}

/* Dark mode adjustments */
[data-theme="dark"] .bp-logo-item {
  background: #252d3c;
  border: 1px solid #374151;
}

[data-theme="dark"] .bp-logo-item:hover {
  border-color: var(--bp-primary);
}

[data-theme="dark"] .bp-logo-item img {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .bp-client-logos-section {
    padding: 40px 0;
  }
  
  .bp-logos-grid {
    gap: 16px;
  }
  
  .bp-logo-item {
    padding: 12px 16px;
  }
  
  .bp-logo-item img {
    max-height: calc(var(--logo-size, 120px) * 0.7);
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .bp-logos-grid {
    gap: 12px;
  }
  
  .bp-logo-item {
    padding: 10px 14px;
  }
  
  .bp-logo-item img {
    max-height: calc(var(--logo-size, 120px) * 0.5);
    max-width: 100px;
  }
}

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

.bp-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 120px 0 80px;
}

.bp-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 900px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.bp-hero-subtitle {
  font-size: 1.125rem;
  color: var(--bp-text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.bp-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Grid */
.bp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.bp-stat-item {
  padding: 32px;
}

.bp-stat-item .bp-stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bp-primary);
  margin-bottom: 8px;
}

.bp-stat-item .bp-stat-label {
  color: var(--bp-text-secondary);
  font-size: 1rem;
}

/* Why Grid (Homepage) */
.bp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bp-why-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.bp-why-content > p {
  margin-bottom: 24px;
}

.bp-why-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-why-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bp-primary) 0%, var(--bp-primary-dark) 100%);
  border-radius: var(--bp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

/* Utility classes */
.bp-mt-5 {
  margin-top: 48px;
}

@media (max-width: 968px) {
  .bp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bp-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bp-why-image {
    order: -1;
  }
  
  .bp-why-image-placeholder {
    max-width: 300px;
    font-size: 5rem;
  }
}

@media (max-width: 640px) {
  .bp-hero {
    padding: 80px 0 60px;
  }
  
  .bp-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .bp-hero-buttons .bp-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .bp-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .bp-stat-item {
    padding: 20px;
  }
  
  .bp-stat-item .bp-stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.bp-about-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-about-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.bp-about-subtitle {
  font-size: 1.125rem;
  color: var(--bp-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mission & Vision */
.bp-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.bp-mv-card {
  background: var(--bp-card-bg);
  padding: 48px;
  border-radius: var(--bp-radius);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.bp-mv-card:hover {
  border-color: var(--bp-primary);
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
}

.bp-mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bp-mv-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--bp-primary);
}

.bp-mv-text {
  color: var(--bp-text-secondary);
  line-height: 1.8;
}

/* Values Section */
.bp-section-alt {
  background: var(--bp-card-bg);
}

.bp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bp-value-card {
  background: var(--bp-bg);
  padding: 32px;
  border-radius: var(--bp-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.bp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
}

.bp-value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bp-value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.bp-value-card p {
  color: var(--bp-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why Choose Us */
.bp-why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bp-why-us-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.bp-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-why-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--bp-border);
}

.bp-why-list li:last-child {
  border-bottom: none;
}

.bp-check {
  color: var(--bp-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.bp-why-us-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bp-stat-card {
  background: var(--bp-card-bg);
  padding: 32px;
  border-radius: var(--bp-radius);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.bp-stat-card:hover {
  border-color: var(--bp-primary);
}

.bp-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bp-primary);
  margin-bottom: 8px;
}

.bp-stat-label {
  color: var(--bp-text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.bp-services-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-hero-subtitle {
  font-size: 1.125rem;
  color: var(--bp-text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
}

.bp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bp-service-card-link {
  text-decoration: none;
  color: inherit;
}

.bp-service-card {
  background: var(--bp-card-bg);
  padding: 32px;
  border-radius: var(--bp-radius);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.bp-service-card:hover {
  border-color: var(--bp-primary);
  transform: translateY(-6px);
  box-shadow: var(--bp-shadow-lg);
}

.bp-service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bp-service-title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--bp-heading);
}

.bp-service-desc {
  color: var(--bp-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bp-service-link {
  color: var(--bp-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Process Section */
.bp-process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.bp-process-step {
  text-align: center;
  position: relative;
}

.bp-process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--bp-border);
}

.bp-process-step:last-child::after {
  display: none;
}

[dir="rtl"] .bp-process-step::after {
  right: auto;
  left: -10px;
}

.bp-step-number {
  width: 60px;
  height: 60px;
  background: var(--bp-primary);
  color: var(--bp-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.bp-process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.bp-process-step p {
  font-size: 0.85rem;
  color: var(--bp-text-secondary);
  line-height: 1.5;
}

/* Single Service Page */
.bp-service-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-back-link {
  display: inline-block;
  color: var(--bp-primary);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.bp-back-link:hover {
  opacity: 0.8;
}

.bp-service-hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.bp-services-grid-small {
  grid-template-columns: repeat(4, 1fr);
}

.bp-services-grid-small .bp-service-card {
  padding: 24px;
}

.bp-services-grid-small .bp-service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.bp-services-grid-small .bp-service-title {
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .bp-services-grid-small {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bp-services-grid-small {
    grid-template-columns: 1fr;
  }
}

.bp-service-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.bp-service-hero-subtitle {
  font-size: 1.125rem;
  color: var(--bp-text-secondary);
}

.bp-service-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.bp-service-desc-content h2 {
  margin-bottom: 20px;
}

.bp-service-desc-text {
  color: var(--bp-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.bp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-feature-list li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--bp-border);
}

.bp-feature-list li:last-child {
  border-bottom: none;
}

.bp-service-features h3 {
  margin-bottom: 20px;
  color: var(--bp-primary);
}

.bp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bp-benefit-card {
  background: var(--bp-bg);
  padding: 32px;
  border-radius: var(--bp-radius);
  text-align: center;
}

.bp-benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bp-benefit-card h3 {
  margin-bottom: 12px;
}

.bp-benefit-card p {
  color: var(--bp-text-secondary);
  font-size: 0.95rem;
}

.bp-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bp-btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   BLOG STYLES
   ============================================ */

.bp-blog-header {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-blog-page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.bp-blog-page-subtitle {
  color: var(--bp-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bp-blog-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.bp-blog-card {
  background: var(--bp-card-bg);
  border-radius: var(--bp-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bp-blog-card:hover {
  border-color: var(--bp-primary);
  transform: translateY(-6px);
  box-shadow: var(--bp-shadow-lg);
}

.bp-blog-card-image {
  display: block;
  height: 200px;
  overflow: hidden;
}

.bp-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bp-blog-card:hover .bp-blog-card-image img {
  transform: scale(1.05);
}

.bp-blog-card-no-image {
  background: var(--bp-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-blog-placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.bp-blog-card-content {
  padding: 24px;
}

.bp-blog-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.bp-blog-date {
  color: var(--bp-text-secondary);
}

.bp-blog-category {
  color: var(--bp-primary);
  font-weight: 500;
}

.bp-blog-card-title {
  font-size: 1.125rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.bp-blog-card-title a {
  color: var(--bp-heading);
  text-decoration: none;
}

.bp-blog-card-title a:hover {
  color: var(--bp-primary);
}

.bp-blog-card-excerpt {
  color: var(--bp-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.bp-blog-read-more {
  color: var(--bp-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.bp-blog-read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.bp-pagination {
  margin-top: 48px;
  text-align: center;
}

.bp-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: var(--bp-card-bg);
  color: var(--bp-text);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bp-pagination .page-numbers:hover,
.bp-pagination .page-numbers.current {
  background: var(--bp-primary);
  color: var(--bp-ink);
}

/* Newsletter */
.bp-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.bp-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid var(--bp-border);
  border-radius: var(--bp-radius);
  background: var(--bp-bg);
  color: var(--bp-text);
  font-size: 1rem;
}

.bp-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--bp-primary);
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

.bp-post-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.bp-post-category {
  background: var(--bp-primary);
  color: var(--bp-ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.bp-post-date,
.bp-post-reading-time {
  color: var(--bp-text-secondary);
  font-size: 0.9rem;
}

.bp-post-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.3;
}

.bp-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.bp-post-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.bp-author-info {
  text-align: left;
}

[dir="rtl"] .bp-author-info {
  text-align: right;
}

.bp-author-name {
  display: block;
  font-weight: 600;
}

.bp-author-role {
  color: var(--bp-text-secondary);
  font-size: 0.85rem;
}

/* Featured Image */
.bp-post-featured-image {
  margin-bottom: 40px;
}

.bp-container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.bp-container-narrow {
  max-width: 720px;
}

.bp-featured-img {
  width: 100%;
  height: auto;
  border-radius: var(--bp-radius);
}

/* Post Content */
.bp-post-content {
  font-size: 1.1rem;
  line-height: 1.9;
}

.bp-post-content h2,
.bp-post-content h3,
.bp-post-content h4 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.bp-post-content p {
  margin-bottom: 1.5em;
}

.bp-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2em 0;
}

.bp-post-content ul,
.bp-post-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

[dir="rtl"] .bp-post-content ul,
[dir="rtl"] .bp-post-content ol {
  padding-left: 0;
  padding-right: 2em;
}

.bp-post-content li {
  margin-bottom: 0.5em;
}

.bp-post-content blockquote {
  border-left: 4px solid var(--bp-primary);
  padding-left: 24px;
  margin: 2em 0;
  font-style: italic;
  color: var(--bp-text-secondary);
}

[dir="rtl"] .bp-post-content blockquote {
  border-left: none;
  border-right: 4px solid var(--bp-primary);
  padding-left: 0;
  padding-right: 24px;
}

/* Tags */
.bp-post-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--bp-border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bp-tags-label {
  font-weight: 600;
}

.bp-tag {
  background: var(--bp-card-bg);
  color: var(--bp-text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bp-tag:hover {
  background: var(--bp-primary);
  color: var(--bp-ink);
}

/* Share Buttons */
.bp-post-share {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bp-share-label {
  font-weight: 600;
}

.bp-share-buttons {
  display: flex;
  gap: 8px;
}

.bp-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.bp-share-twitter {
  background: #000;
  color: #fff;
}

.bp-share-linkedin {
  background: #0077B5;
  color: #fff;
}

.bp-share-facebook {
  background: #1877F2;
  color: #fff;
}

.bp-share-whatsapp {
  background: #25D366;
  color: #fff;
}

.bp-share-btn:hover {
  transform: scale(1.1);
}

/* Author Box */
.bp-author-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bp-bg);
  padding: 32px;
  border-radius: var(--bp-radius);
}

.bp-author-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bp-author-details h3 {
  font-size: 0.9rem;
  color: var(--bp-text-secondary);
  margin-bottom: 4px;
}

.bp-author-name-large {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.bp-author-bio {
  color: var(--bp-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Related Posts */
.bp-related-posts .bp-section-title {
  font-size: 1.5rem;
}

/* Featured Post */
.bp-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bp-card-bg);
  border-radius: var(--bp-radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.bp-featured-card:hover {
  border-color: var(--bp-primary);
  box-shadow: var(--bp-shadow-lg);
}

.bp-featured-image {
  display: block;
  height: 100%;
  min-height: 300px;
}

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

.bp-featured-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[dir="rtl"] .bp-featured-content {
  padding: 40px 0 40px 40px;
}

.bp-featured-label {
  display: inline-block;
  background: var(--bp-primary);
  color: var(--bp-ink);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.bp-featured-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bp-featured-title a {
  color: var(--bp-heading);
  text-decoration: none;
}

.bp-featured-title a:hover {
  color: var(--bp-primary);
}

.bp-featured-excerpt {
  color: var(--bp-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bp-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Empty State */
.bp-empty-state {
  padding: 80px 20px;
}

.bp-empty-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.bp-empty-state h2 {
  margin-bottom: 12px;
}

.bp-empty-state p {
  color: var(--bp-text-secondary);
}

/* Section Title */
.bp-section-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.bp-contact-hero {
  background: linear-gradient(135deg, var(--bp-card-bg) 0%, var(--bp-bg) 100%);
  padding: 100px 0 60px;
}

.bp-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.bp-contact-form-wrapper h2 {
  margin-bottom: 24px;
}

.bp-contact-form {
  background: var(--bp-card-bg);
  padding: 40px;
  border-radius: var(--bp-radius);
}

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

.bp-form-group {
  margin-bottom: 20px;
}

.bp-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--bp-heading);
}

.bp-form-group input,
.bp-form-group select,
.bp-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--bp-border);
  border-radius: 12px;
  background: var(--bp-bg);
  color: var(--bp-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.bp-form-group input:focus,
.bp-form-group select:focus,
.bp-form-group textarea:focus {
  outline: none;
  border-color: var(--bp-primary);
}

.bp-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.bp-btn-full {
  width: 100%;
}

/* Contact Info */
.bp-contact-info h2 {
  margin-bottom: 24px;
}

.bp-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.bp-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bp-card-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bp-info-card:hover {
  transform: translateX(8px);
}

[dir="rtl"] .bp-info-card:hover {
  transform: translateX(-8px);
}

.bp-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bp-info-content h3 {
  font-size: 0.9rem;
  color: var(--bp-text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.bp-info-content p {
  margin: 0;
  font-weight: 500;
}

.bp-info-content a {
  color: var(--bp-heading);
  text-decoration: none;
}

.bp-info-content a:hover {
  color: var(--bp-primary);
}

/* Social Links */
.bp-social-links {
  margin-bottom: 32px;
}

.bp-social-links h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.bp-social-icons {
  display: flex;
  gap: 12px;
}

.bp-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bp-card-bg);
  color: var(--bp-text);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.bp-social-icon:hover {
  background: var(--bp-primary);
  color: var(--bp-ink);
  transform: translateY(-4px);
}

/* Working Hours */
.bp-working-hours h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.bp-working-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-working-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bp-border);
}

.bp-working-hours li:last-child {
  border-bottom: none;
}

.bp-working-hours li span:first-child {
  color: var(--bp-text-secondary);
}

.bp-working-hours li span:last-child {
  font-weight: 500;
}

/* ============================================
   RESPONSIVE STYLES FOR ALL PAGES
   ============================================ */

@media (max-width: 1024px) {
  .bp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bp-process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .bp-process-step::after {
    display: none;
  }
}

@media (max-width: 968px) {
  .bp-mv-grid {
    grid-template-columns: 1fr;
  }
  
  .bp-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bp-why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bp-service-desc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .bp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bp-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bp-about-hero,
  .bp-services-hero,
  .bp-service-hero,
  .bp-blog-header,
  .bp-post-hero {
    padding: 80px 0 40px;
  }
  
  .bp-values-grid {
    grid-template-columns: 1fr;
  }
  
  .bp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bp-blog-grid,
  .bp-blog-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .bp-featured-card {
    grid-template-columns: 1fr;
  }
  
  .bp-featured-image {
    min-height: 200px;
  }
  
  .bp-featured-content {
    padding: 24px;
  }
  
  [dir="rtl"] .bp-featured-content {
    padding: 24px;
  }
  
  .bp-author-card {
    flex-direction: column;
    text-align: center;
  }
  
  .bp-post-share {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .bp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .bp-btn-lg {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 968px) {
  .bp-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .bp-mv-card {
    padding: 32px 24px;
  }
  
  .bp-services-grid {
    grid-template-columns: 1fr;
  }
  
  .bp-process-steps {
    grid-template-columns: 1fr;
  }
  
  .bp-why-us-stats {
    grid-template-columns: 1fr;
  }
  
  .bp-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .bp-post-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .bp-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bp-newsletter-form input[type="email"] {
    min-width: auto;
    width: 100%;
  }
  
  .bp-form-row {
    grid-template-columns: 1fr;
  }
  
  .bp-contact-form {
    padding: 24px;
  }
  
  .bp-contact-hero {
    padding: 80px 0 40px;
  }
}

/* ==========================================================================
   FIX: Hide duplicate mobile menu/nav outside header
   ========================================================================== */

/* Hide mobile menu overlay by default */
.bp-mobile-menu-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bp-bg);
  z-index: 9998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Only show mobile menu when active */
.bp-mobile-menu-overlay.active,
.bp-mobile-menu-overlay.is-open {
  display: flex !important;
}

/* Hide any navigation/menu that appears directly after header but before main */
.bp-header + nav,
.bp-header + ul,
.bp-header + div > nav:first-child,
.bp-header + div > ul:first-child,
body > nav:not(.bp-header):not(footer nav),
body > ul:not(footer ul) {
  display: none !important;
}

/* Make sure main content navigation is visible */
main nav,
main ul,
footer nav,
footer ul,
.bp-header nav,
.bp-header ul {
  display: block;
}

.bp-header ul.bp-nav-menu {
  display: flex;
}

/* ==========================================================================
   FIX: Hide duplicate footer
   ========================================================================== */

/* Hide any duplicate footer */
.bp-footer + .bp-footer,
footer + footer,
.bp-footer ~ .bp-footer,
footer ~ footer {
  display: none !important;
}

/* Only show first footer */
.bp-footer:not(:first-of-type),
footer.bp-footer:not(:first-of-type) {
  display: none !important;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.bp-footer {
  background: var(--bp-card-bg);
  padding: 60px 0 0;
  border-top: 1px solid var(--bp-border);
}

.bp-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.bp-footer-col {
  display: flex;
  flex-direction: column;
}

.bp-footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bp-heading);
  margin-bottom: 20px;
}

.bp-footer-contact,
.bp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-footer-contact li,
.bp-footer-links li {
  margin-bottom: 12px;
  color: var(--bp-text);
}

.bp-footer-contact a,
.bp-footer-links a {
  color: var(--bp-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bp-footer-links a {
  color: var(--bp-text);
}

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

.bp-footer-social {
  display: flex;
  gap: 16px;
}

.bp-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bp-border);
  color: var(--bp-text);
  transition: all 0.2s ease;
}

.bp-footer-social a:hover {
  background: var(--bp-primary);
  border-color: var(--bp-primary);
  color: #FFFFFF;
}

.bp-footer-brand {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--bp-border);
}

.bp-footer-brand p {
  color: var(--bp-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.bp-footer-bottom {
  text-align: center;
  padding: 20px 0;
}

.bp-footer-bottom p {
  color: var(--bp-text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .bp-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .bp-footer-social {
    justify-content: center;
  }
}

/* Elementor handles header/footer dark mode and RTL */



.bp-footer-contact a,
.bp-footer-links a {
  color: var(--bp-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bp-footer-links a {
  color: var(--bp-text);
}

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

.bp-footer-social {
  display: flex;
  gap: 16px;
}

.bp-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bp-border);
  color: var(--bp-text);
  transition: all 0.2s ease;
}

.bp-footer-social a:hover {
  background: var(--bp-primary);
  border-color: var(--bp-primary);
  color: #FFFFFF;
}

.bp-footer-brand {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--bp-border);
}

.bp-footer-brand p {
  color: var(--bp-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.bp-footer-bottom {
  text-align: center;
  padding: 20px 0;
}

.bp-footer-bottom p {
  color: var(--bp-text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .bp-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .bp-footer-social {
    justify-content: center;
  }
}

/* Elementor handles header/footer dark mode and RTL */

