@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
/*--------------------------------------------------------------


/* Fonts */
:root {
  --font-default:
    "Cairo", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Cairo", "Montserrat", sans-serif;
  --font-secondary: "Cairo", "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #002a41;
  --color-primary: #0458a3;
  --color-secondary: #ebbf3c;
  --color-text: #180000;
  --color-gray: #525252;
  --primary: #0458a3;
  --primary-dark: #034679;
  --primary-light: #1a78c9;
  --secondary: #ebbf3c;
  --accent: #ffd96a;
  --bg-dark: #0a0e27;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --border-glass: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.3);
  --gradient-1: linear-gradient(135deg, #0458a3 0%, #034679 100%);
  --gradient-2: linear-gradient(135deg, #0458a3 0%, #1a78c9 100%);
  --gradient-3: linear-gradient(135deg, #ebbf3c 0%, #ffd96a 100%);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/* Global Dark Mode Styles */
body.dark-mode {
  --color-default: #b8c5d6;
  --color-text: #ffffff;
  --color-primary: #1a78c9;
  --sections-bg: #0a0e27;
  --bg-dark: #0a0e27;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --border-glass: rgba(255, 255, 255, 0.1);
  background-color: var(--bg-dark);
  color: var(--color-default);
}

body.dark-mode #main.sections-bg,
body.dark-mode .sections-bg,
body.dark-mode .services-icons,
body.dark-mode .services-detailed,
body.dark-mode .coverage-section,
body.dark-mode .pricing-section,
body.dark-mode .faq-section,
body.dark-mode .breadcrumbs nav,
body.dark-mode .contact-hero,
body.dark-mode .contact-info-section,
body.dark-mode .company-numbers-section,
body.dark-mode .contact-form-section,
body.dark-mode .map-section,
body.dark-mode .service-hero,
body.dark-mode .services-grid,
body.dark-mode .why-us-section,
body.dark-mode .service-cta {
  background: #0d1233;
  background-color: #0d1233 !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .section-header h2 {
  color: #ffffff;
}

body.dark-mode .section-header p {
  color: #b8c5d6;
}

body.dark-mode .header {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 1px solid var(--border-glass);
}

body.dark-mode .logo-text {
  color: #fff;
}

body.dark-mode .navbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .navbar .nav-link:hover,
body.dark-mode .navbar .nav-link.active {
  color: #fff;
  background: var(--color-primary);
}

body.dark-mode .mobile-nav-toggle {
  color: #fff;
}

/* Home Page Hero Dark Mode */
body.dark-mode .hero-home {
  background: linear-gradient(135deg, #0a0e27 0%, #0d1233 100%);
}

body.dark-mode .hero-title {
  color: #fff;
}

body.dark-mode .hero-features li {
  color: #b8c5d6;
}

body.dark-mode .hero-features li i {
  color: var(--color-secondary);
}

/* Service & Contact Cards Dark Mode */
body.dark-mode .service-icon-card,
body.dark-mode .service-detailed-card,
body.dark-mode .pricing-card,
body.dark-mode .served-areas-card,
body.dark-mode .faq-cta,
body.dark-mode .contact-info-card,
body.dark-mode .number-card,
body.dark-mode .contact-form-wrapper,
body.dark-mode .service-card-modern,
body.dark-mode .feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: #fff;
}

body.dark-mode .service-icon-card h5,
body.dark-mode .service-detailed-card h5,
body.dark-mode .served-areas-card h4,
body.dark-mode .pricing-speed,
body.dark-mode .pricing-validity,
body.dark-mode .contact-info-card h3,
body.dark-mode .number-info h5,
body.dark-mode .service-card-modern h3,
body.dark-mode .feature-content h4 {
  color: #fff;
}

body.dark-mode .service-icon-card p,
body.dark-mode .service-detailed-card p,
body.dark-mode .area-item span,
body.dark-mode .service-features li,
body.dark-mode .contact-info-card p,
body.dark-mode .service-card-modern p,
body.dark-mode .feature-content p {
  color: #b8c5d6;
}

body.dark-mode .area-item {
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .area-item i {
  color: var(--color-secondary);
}

body.dark-mode .contact-info-card,
body.dark-mode .number-card,
body.dark-mode .service-card-modern,
body.dark-mode .feature-box {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .number-info a {
  color: var(--color-primary);
}

body.dark-mode .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
}

body.dark-mode .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body.dark-mode .form-floating label {
  color: #b8c5d6;
}

body.dark-mode .contact-note,
body.dark-mode .contact-note p {
  background: rgba(4, 88, 163, 0.1);
  border: 1px dashed rgba(4, 88, 163, 0.4);
  border-right: 4px solid var(--color-primary);
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

body.dark-mode .contact-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 120, 201, 0.05) 0%,
    transparent 100%
  );
  pointer-events: none;
}

body.dark-mode .contact-note strong {
  color: #fff;
  font-size: 1.1rem;
}

body.dark-mode .contact-link {
  color: #ffd96a;
  font-weight: 700;
  text-decoration: underline !important;
}

body.dark-mode .contact-link:hover {
  color: #fff;
}

/* FAQ Accordion Dark Mode */
body.dark-mode .accordion-item {
  background-color: var(--bg-card);
  border-color: var(--border-glass);
}

body.dark-mode .accordion-button {
  background-color: transparent;
  color: #fff;
}

body.dark-mode .accordion-button:not(.collapsed) {
  background-color: rgba(26, 120, 201, 0.2);
  color: #fff;
}

body.dark-mode .accordion-body {
  color: #b8c5d6;
}

/* Footer & Waves Dark Mode */
body.dark-mode .footer {
  background: #050816;
}

body.dark-mode .footer-wave {
  background: #050816 !important; /* This fixes the white area above the footer waves */
}

body.dark-mode .footer-wave svg path {
  fill: #0d1233;
}

/* Theme Toggle Responsive Fixes */
.theme-toggle {
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 20px; /* Space from logo on desktop */
}

body.dark-mode .theme-toggle i {
  color: #fff;
}

.theme-toggle i {
  color: var(--color-primary);
}

@media (max-width: 1279px) {
  .theme-toggle {
    margin-right: 15px;
    margin-left: auto !important;
  }

  /* Prevent overlap with close icon (X) when menu is open */
  body.mobile-nav-active .theme-toggle {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

/* Adjustments for RTL */
[dir="rtl"] .theme-toggle {
  margin-left: 0;
  margin-right: 20px; /* Space from logo on desktop in RTL */
}

@media (max-width: 1279px) {
  [dir="rtl"] .theme-toggle {
    margin-right: auto !important;
    margin-left: 15px;
  }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none !important;
}

a:hover {
  color: #96abe4;
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  direction: rtl;
}

ul {
  list-style: none;
  direction: rtl;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 40px;
  color: #6f6f6f;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-gray);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Modern Header Enhancements
--------------------------------------------------------------*/
/* Logo Section */
.header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 12px;
}

.header .logo:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.header .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.header .logo:hover .logo-img {
  filter: drop-shadow(0 4px 12px rgba(255, 242, 0, 0.3));
  transform: rotate(-2deg);
}

.header .logo-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.header .logo:hover .logo-text {
  letter-spacing: 1px;
}

/* Modern Navigation Container */
.navbar {
  position: relative;
}

.navbar ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Premium Navigation Links */
.navbar .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

/* .navbar .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 242, 0, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.navbar .nav-link:hover::before {
  left: 100%;
} */

.navbar .nav-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 77, 109, 0.3);
}

.navbar .nav-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.navbar .nav-link span {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Active State */
.navbar .nav-link.active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 77, 109, 0.4);
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

/* Header Background */
.header {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease-in-out;
  z-index: 9997;
}

.header.sticked {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  backdrop-filter: blur(20px);
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

/* Mobile Navigation Styles */
@media (max-width: 1279px) {
  .header .logo-img {
    height: 50px;
  }

  .header .logo-text {
    font-size: 16px;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(0, 77, 109, 0.98),
      rgba(0, 42, 65, 0.98)
    );
    backdrop-filter: blur(20px);
    padding: 80px 20px 20px 20px;
    transition: right 0.3s ease;
    z-index: 9998;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .navbar.navbar-mobile {
    right: 0;
  }

  .navbar ul {
    flex-direction: column;
    gap: 12px;
  }

  .navbar .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .navbar .nav-link:hover {
    background: rgba(255, 242, 0, 0.2);
    transform: translateX(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 15px rgba(255, 242, 0, 0.2);
  }

  .navbar .nav-link i {
    font-size: 20px;
    margin-left: 12px;
  }

  .navbar .nav-link span {
    font-size: 16px;
  }
}

/* Desktop Responsive */
@media (min-width: 1280px) {
  .navbar .nav-link {
    padding: 10px 20px;
    font-size: 18px;
  }

  .navbar .nav-link i {
    font-size: 18px;
  }
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  color: var(--color-primary);
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  z-index: 9999;
}

@media (max-width: 1279px) {
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
  }

  .mobile-nav-hide {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
}

/* Mobile Navigation Active Body State */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active .navbar {
  right: 0;
}

/* RTL Mobile Toggle Support */
@media (max-width: 1279px) {
  [dir="rtl"] .mobile-nav-hide {
    right: auto;
    left: 20px;
  }

  [dir="rtl"] body.mobile-nav-active .navbar {
    right: auto;
    left: 0;
  }
}

/* RTL Support */
[dir="rtl"] .navbar .nav-link i {
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .navbar.navbar-mobile {
  right: auto;
  left: -100%;
}

[dir="rtl"] .navbar.navbar-mobile.navbar-mobile {
  left: 0;
}

@media (max-width: 1279px) {
  [dir="rtl"] .navbar .nav-link:hover {
    transform: translateX(8px);
  }

  [dir="rtl"] .navbar .nav-link i {
    margin-right: 12px;
    margin-left: 0;
  }
}

/* Extra Small Screens - Mobile Menu Improvements */
@media (max-width: 576px) {
  .navbar {
    max-width: 100%;
    width: 100%;
    height: 100vh;
  }

  .navbar ul {
    padding: 70px 15px 20px 15px;
    min-height: 100vh;
    height: 100%;
    width: 100%;
  }

  .navbar .nav-link {
    padding: 12px 15px;
    font-size: 14px;
  }

  .navbar .nav-link i {
    font-size: 16px;
    margin-left: 8px;
  }

  .mobile-nav-show {
    font-size: 24px;
    margin-right: 5px;
  }

  .mobile-nav-hide {
    font-size: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

/* Tablet and Medium Screens */
@media (min-width: 768px) and (max-width: 1279px) {
  .navbar {
    max-width: 400px;
    height: 100vh;
  }

  .navbar ul {
    min-height: 100vh;
    height: 100%;
  }

  .navbar .nav-link {
    padding: 18px 25px;
  }
}

/*--------------------------------------------------------------
# Home Page Hero Section
--------------------------------------------------------------*/
.hero-home {
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, #e8f1f8 0%, #f5f7fa 50%, #fff9f0 100%);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism Background Orbs */
.hero-home::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(100, 150, 255, 0.25) 0%,
    rgba(150, 190, 255, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb1 15s ease-in-out infinite;
}

.hero-home::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(255, 230, 180, 0.3) 0%,
    rgba(255, 240, 200, 0.18) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(90px);
  animation: floatOrb2 12s ease-in-out infinite;
}

/* Additional Glassmorphism Orbs */
.hero-home .container {
  position: relative;
  z-index: 2;
}

.hero-home .container::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(180, 140, 255, 0.2) 0%,
    rgba(200, 170, 255, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(100px);
  animation: floatOrb3 18s ease-in-out infinite reverse;
  z-index: -1;
}

.hero-home .container::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(120, 200, 255, 0.22) 0%,
    rgba(160, 220, 255, 0.12) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(85px);
  animation: floatOrb4 14s ease-in-out infinite;
  z-index: -1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #00407a;
  margin-bottom: 30px;
  line-height: 1.3;
  animation: fadeInDown 0.8s ease-out;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.hero-features li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out backwards;
}

.hero-features li:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-features li:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-features li:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-features li i {
  font-size: 24px;
  min-width: 24px;
  margin-top: 3px;
}

/* Floating Images Container */
.floating-images-container {
  position: relative;
  height: 600px;
  animation: fadeInLeft 1s ease-out;
}

.floating-image {
  position: absolute;
  /* border-radius: 50%; */
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  transition: all 0.3s ease;
}

.floating-image img {
  /* width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 50%; */
}

/* .floating-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(4, 88, 163, 0.3);
} */

/* Float 1 - Top Image */
.float-1 {
  width: 188px;
  height: 250px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: floatUpDown 6s ease-in-out infinite;
  z-index: 3;
}

/* Float 2 - Middle Image */
.float-2 {
  width: 198px;
  height: 278px;
  top: 10%;
  left: 5%;
  transform: translateY(-50%);
  animation: floatUpDown 7s ease-in-out infinite 1s;
  z-index: 1;
}

/* Float 3 - Bottom Image */
.float-3 {
  width: 252px;
  height: 324px;
  bottom: 0;
  right: 15%;
  animation: floatUpDown 8s ease-in-out infinite 2s;
  z-index: 1;
}

/* Floating Animations */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Detailed Services Section (New)
--------------------------------------------------------------*/
.services-detailed {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Glassmorphism Background Orbs for Services */
.services-detailed::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(4, 88, 163, 0.15) 0%,
    rgba(4, 88, 163, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb1 15s ease-in-out infinite;
  z-index: 1;
}

.services-detailed::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(235, 191, 60, 0.15) 0%,
    rgba(235, 191, 60, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb2 12s ease-in-out infinite reverse;
  z-index: 1;
}

.services-detailed .container {
  position: relative;
  z-index: 2;
}

.service-detailed-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(4, 88, 163, 0.2);
}

/* Scoped Icon Wrapper for Detailed Card */
.service-detailed-card .detailed-icon-wrapper {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s ease;
}

.service-detailed-card .detailed-icon-wrapper i {
  font-size: 32px;
  color: #fff;
}

/* Text Content Styling */
.service-content {
  flex-grow: 1;
  text-align: right;
}

.service-detailed-card h5 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-default);
  margin-bottom: 15px;
}

.service-detailed-card p {
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Features List Styling */
.service-features {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-features li {
  position: relative;
  padding-right: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.service-features li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary); /* Default bullet color */
}

/* Detailed Card Colors */
.service-detailed-card.support:hover {
  border-color: rgba(4, 88, 163);
} /* Primary */
.service-detailed-card.support .service-features li::before {
  background-color: #0458a3;
}

.service-detailed-card.fast:hover {
  border-color: rgba(6, 112, 201);
} /* Lighter Blue */
.service-detailed-card.fast .service-features li::before {
  background-color: #0670c9;
}

.service-detailed-card.flex:hover {
  border-color: rgba(23, 162, 184);
} /* Info/Teal */
.service-detailed-card.flex .service-features li::before {
  background-color: #17a2b8;
}

.service-detailed-card.time:hover {
  border-color: rgba(235, 191, 60);
} /* Warning/Gold */
.service-detailed-card.time .service-features li::before {
  background-color: #ebbf3c;
}

/* Background Gradients for Icons */
.bg-primary {
  background: linear-gradient(135deg, #0458a3, #0670c9);
} /* Shield/Security */
.bg-info {
  background: linear-gradient(135deg, #17a2b8, #1fc8e3);
} /* Speed/Lightning */
.bg-success {
  background: linear-gradient(135deg, #28a745, #34ce57);
} /* Packages/Chart (using Green/Teal) */
.bg-warning {
  background: linear-gradient(135deg, #ebbf3c, #f5d056);
} /* Service/Clock */

/* Responsive Detailed */
@media (max-width: 768px) {
  .service-detailed-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }

  .service-content {
    text-align: center;
    width: 100%;
  }

  .service-detailed-card .detailed-icon-wrapper {
    margin-bottom: 20px;
  }

  .service-features li {
    padding-right: 0;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .service-features li::before {
    position: static;
  }
}

/*--------------------------------------------------------------
# Services Icons Section (Original)
--------------------------------------------------------------*/
.services-icons {
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.service-icon-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.service-icon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon-card.wifi:hover {
  border-color: #0670c9;
}
.service-icon-card.radius:hover {
  border-color: #1fc8e3;
}
.service-icon-card.support:hover {
  border-color: #e74c3c;
}
.service-icon-card.prices:hover {
  border-color: #34ce57;
}
.service-icon-card.live:hover {
  border-color: #f5d056;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-icon-card:hover .icon-wrapper::before {
  opacity: 1;
}

.icon-wrapper i {
  font-size: 36px;
  color: #fff;
  z-index: 1;
}

.service-icon-card:hover .icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.service-icon-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-icon-card p {
  font-size: 14px;
  color: var(--color-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Geographic Coverage Section
--------------------------------------------------------------*/
.coverage-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Glassmorphism Background Orbs */
.coverage-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(4, 88, 163, 0.15) 0%,
    rgba(4, 88, 163, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb1 15s ease-in-out infinite;
  z-index: 1;
}

.coverage-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(235, 191, 60, 0.15) 0%,
    rgba(235, 191, 60, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb2 12s ease-in-out infinite reverse;
  z-index: 1;
}

.coverage-section .container {
  position: relative;
  z-index: 2;
}

/* Map Placeholder */
.map-placeholder {
  position: relative;
  background-image: url("../images/homs-map.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Map Overlay */
.map-overlay {
  position: relative;
  z-index: 2;
  background: rgba(4, 88, 163, 0.3);
  backdrop-filter: blur(5px);
  padding: 40px 50px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-pin-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.map-pin-icon i {
  font-size: 36px;
  color: #fff;
}

.map-overlay h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.map-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.coverage-badge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin: 20px 0;
}

.coverage-badge .plus-icon {
  font-size: 60px;
  font-weight: 700;
  color: var(--color-secondary);
}

.coverage-badge .number {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.neighborhood-text {
  font-size: 26px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 10px;
}

/* Served Areas Card */
.served-areas-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.served-areas-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(4, 88, 163, 0.15);
}

.served-areas-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f3f5;
}

.served-areas-card .header-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.served-areas-card .header-icon i {
  font-size: 24px;
  color: #fff;
}

.served-areas-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-default);
  margin: 0;
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.area-item:hover {
  background: #e9ecef;
  transform: translateX(-3px);
}

.area-item i {
  font-size: 18px;
  color: #28a745;
  flex-shrink: 0;
}

.area-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-default);
}

/* Contact Note */
.contact-note {
  padding: 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
  border-radius: 12px;
  border-right: 4px solid var(--color-primary);
}

.contact-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
  text-align: right;
}

.contact-note strong {
  color: var(--color-default);
  font-weight: 700;
}

.contact-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Responsive Coverage Section */
@media (max-width: 991px) {
  .map-placeholder {
    min-height: 400px;
    margin-bottom: 20px;
  }

  .map-overlay {
    padding: 30px 40px;
  }

  .coverage-badge .number {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .coverage-section {
    padding: 60px 0;
  }

  .map-placeholder {
    min-height: 350px;
  }

  .map-overlay {
    padding: 25px 30px;
  }

  .map-overlay h3 {
    font-size: 28px;
  }

  .coverage-badge .plus-icon {
    font-size: 32px;
  }

  .coverage-badge .number {
    font-size: 50px;
  }

  .served-areas-card {
    padding: 25px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area-item:hover {
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Pricing Packages Section
--------------------------------------------------------------*/
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.pricing-swiper {
  padding: 20px 10px 40px;
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

/* Pricing Card Styles */
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 8px solid;
  border-bottom: 8px solid;
}

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

/* Center Card Scale Effect (Desktop) */
@media (min-width: 1024px) {
  .swiper-slide-active .pricing-card {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }

  .swiper-slide-active .pricing-card:hover {
    transform: scale(1.12) translateY(-5px);
  }
}

/* Badge */
.pricing-badge {
  text-align: center;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  margin: 30px auto 20px;
  display: inline-block;
  width: fit-content;
}

/* Details Section */
.pricing-details {
  text-align: center;
  padding: 0 30px 20px;
}

.pricing-speed,
.pricing-validity {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  margin: 10px 0;
  direction: rtl;
}

/* Price Section */
.pricing-price {
  text-align: center;
  padding: 30px;
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  direction: rtl;
}

.price-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
}

/* Color Variants */
/* Red */
.pricing-blue {
  border-top-color: #f80000;
  border-bottom-color: #a10101;
}
.pricing-blue .pricing-badge {
  background: linear-gradient(135deg, #f80000, #a10101);
}
.pricing-blue:hover .pricing-badge {
  background: linear-gradient(135deg, #f80000, #a10101);
}
.pricing-blue .price-number {
  color: #f80000;
}

/* Blue */
.pricing-blue {
  border-top-color: #0458a3;
  border-bottom-color: #0458a3;
}
.pricing-blue .pricing-badge {
  background: linear-gradient(135deg, #0458a3, #0670c9);
}
.pricing-blue:hover .pricing-badge {
  background: linear-gradient(135deg, #0670c9, #0458a3);
}
.pricing-blue .price-number {
  color: #0458a3;
}

/* Yellow/Gold */
.pricing-yellow {
  border-top-color: #ebbf3c;
  border-bottom-color: #ebbf3c;
}
.pricing-yellow .pricing-badge {
  background: linear-gradient(135deg, #ebbf3c, #f5d056);
}
.pricing-yellow:hover .pricing-badge {
  background: linear-gradient(135deg, #f5d056, #ebbf3c);
}
.pricing-yellow .price-number {
  color: #ebbf3c;
}

/* Purple/Magenta */
.pricing-purple {
  border-top-color: #b830b8;
  border-bottom-color: #b830b8;
}
.pricing-purple .pricing-badge {
  background: linear-gradient(135deg, #b830b8, #d645d6);
}
.pricing-purple:hover .pricing-badge {
  background: linear-gradient(135deg, #d645d6, #b830b8);
}
.pricing-purple .price-number {
  color: #b830b8;
}

/* Green */
.pricing-green {
  border-top-color: #28a745;
  border-bottom-color: #28a745;
}
.pricing-green .pricing-badge {
  background: linear-gradient(135deg, #28a745, #34ce57);
}
.pricing-green:hover .pricing-badge {
  background: linear-gradient(135deg, #34ce57, #28a745);
}
.pricing-green .price-number {
  color: #28a745;
}

/* Red */
.pricing-red {
  border-top-color: #dc3545;
  border-bottom-color: #dc3545;
}
.pricing-red .pricing-badge {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
}
.pricing-red:hover .pricing-badge {
  background: linear-gradient(135deg, #e74c3c, #dc3545);
}
.pricing-red .price-number {
  color: #dc3545;
}

/* Cyan/Teal */
.pricing-cyan {
  border-top-color: #17a2b8;
  border-bottom-color: #17a2b8;
}
.pricing-cyan .pricing-badge {
  background: linear-gradient(135deg, #17a2b8, #1fc8e3);
}
.pricing-cyan:hover .pricing-badge {
  background: linear-gradient(135deg, #1fc8e3, #17a2b8);
}
.pricing-cyan .price-number {
  color: #17a2b8;
}

/* Responsive Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    margin: 0 auto;
  }

  .price-number {
    font-size: 48px;
  }

  .pricing-badge {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* Pricing Navigation Buttons */
.pricing-swiper {
  position: relative;
  padding-bottom: 80px;
}

.button-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}

.pricing-btn-prev,
.pricing-btn-next {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0458a3, #0670c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(4, 88, 163, 0.3);
  z-index: 10;
}

.pricing-btn-prev::after,
.pricing-btn-next::after {
  font-family: "bootstrap-icons";
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}

.pricing-btn-prev::after {
  content: "\F285";
}

.pricing-btn-next::after {
  content: "\F284";
}

.pricing-btn-prev {
  right: 37% !important;
}

.pricing-btn-next {
  left: 37% !important;
}

.pricing-btn-prev:hover {
  background: linear-gradient(135deg, #0670c9, #17a2b8);
  box-shadow: 0 8px 30px rgba(4, 88, 163, 0.5);
}

.pricing-btn-next:hover {
  background: linear-gradient(135deg, #0670c9, #17a2b8);
  box-shadow: 0 8px 30px rgba(4, 88, 163, 0.5);
}

.pricing-btn-prev.swiper-button-disabled,
.pricing-btn-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pricing-swiper {
    padding-bottom: 70px;
  }

  .pricing-btn-prev,
  .pricing-btn-next {
    width: 45px;
    height: 45px;
  }

  .pricing-btn-prev::after,
  .pricing-btn-next::after {
    font-size: 20px;
  }

  .button-container {
    margin-top: 50px;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f1f8 0%, #f5f7fa 50%, #fff9f0 100%);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism Background Orbs for FAQ */
.faq-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(4, 88, 163, 0.15) 0%,
    rgba(4, 88, 163, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb1 15s ease-in-out infinite;
  z-index: 1;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(235, 191, 60, 0.15) 0%,
    rgba(235, 191, 60, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb2 12s ease-in-out infinite reverse;
  z-index: 1;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

/* Accordion Styles */
.faq-section .accordion {
  margin-bottom: 40px;
}

.faq-section .accordion-item {
  background: #fff;
  border: none;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-section .accordion-button {
  background: transparent;
  border: none;
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-default);
  direction: rtl;
  text-align: right;
  box-shadow: none;
  position: relative;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    rgba(4, 88, 163, 0.05) 0%,
    rgba(4, 88, 163, 0.02) 100%
  );
  color: var(--color-primary);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Custom Accordion Icon */
.faq-section .accordion-button::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  background: none;
  width: auto;
  height: auto;
  margin-left: 0;
  margin-right: auto;
  font-size: 20px;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\F286";
  transform: rotate(0);
  color: var(--color-primary);
}

.faq-section .accordion-body {
  padding: 0 30px 25px 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  direction: rtl;
  text-align: right;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.faq-cta .cta-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-default);
  margin-bottom: 20px;
  direction: rtl;
}

.faq-cta .btn-primary {
  background: linear-gradient(135deg, #17a2b8, #1fc8e3);
  border: none;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.faq-cta .btn-primary:hover {
  background: linear-gradient(135deg, #1fc8e3, #17a2b8);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.4);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .accordion-button {
    font-size: 16px;
    padding: 20px;
  }

  .faq-section .accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }

  .faq-cta .cta-question {
    font-size: 18px;
  }

  .faq-cta .btn-primary {
    padding: 12px 40px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Responsive Design for Home Page
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-home {
    padding: 80px 0 60px 0;
  }

  .hero-title {
    font-size: 32px;
    text-align: center;
  }

  .hero-features {
    text-align: right;
  }

  .floating-images-container {
    height: 400px;
    margin-bottom: 40px;
  }

  .float-1 {
    width: 200px;
    height: 200px;
    left: 10%;
    top: 10%;
  }

  .float-2 {
    width: 220px;
    height: 220px;
    left: auto;
    right: 10%;
    top: 30%;
  }

  .float-3 {
    width: 180px;
    height: 180px;
    left: 20%;
    bottom: 10%;
    right: auto;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-features li {
    font-size: 16px;
  }

  .floating-images-container {
    height: 350px;
  }

  .float-1 {
    width: 160px;
    height: 160px;
  }

  .float-2 {
    width: 180px;
    height: 180px;
  }

  .float-3 {
    width: 140px;
    height: 140px;
  }

  .service-icon-card {
    padding: 20px 10px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper i {
    font-size: 28px;
  }

  .service-icon-card h5 {
    font-size: 14px;
  }

  .service-icon-card p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-home {
    padding: 120px 0 40px 0;
  }

  .floating-images-container {
    height: 300px;
    margin-bottom: 30px;
  }

  .float-1 {
    width: 130px;
    height: 130px;
    top: 5%;
    left: 5%;
  }

  .float-2 {
    width: 150px;
    height: 150px;
    top: 35%;
    right: 5%;
  }

  .float-3 {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 15%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #0458a3 0%, #0670c9 50%, #17a2b8 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.wave-path {
  fill: #f8f9fa;
}

.footer-contact {
  padding: 120px 0 60px;
  position: relative;
  z-index: 2;
}

.footer .section-header h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer .section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon i {
  font-size: 36px;
  color: #fff;
}

.contact-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.contact-card p,
.contact-card a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-numbers {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.footer-numbers h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.number-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 25px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  direction: ltr;
}

.number-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: #fff;
  font-size: 15px;
  margin: 0;
}

.footer-bottom strong {
  font-weight: 800;
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .social-links {
    justify-content: flex-end;
  }
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .footer-contact {
    padding: 100px 0 40px;
  }

  .footer .section-header h2 {
    font-size: 32px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .numbers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Live Streaming Page Styles
--------------------------------------------------------------*/
.live-page-section {
  font-family: "Cairo", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(4, 88, 163, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(235, 191, 60, 0.1) 0%,
      transparent 50%
    );
  background-attachment: fixed;
}

/* Custom Scrollbar */
.live-page-section ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.live-page-section ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.live-page-section ::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 5px;
}

.live-page-section ::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Header */
.live-page-section .header {
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px var(--shadow);
}

.live-page-section .header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.live-page-section .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.live-page-section .logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.live-page-section .logo-text {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Search Box */
.live-page-section .search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.live-page-section .search-box {
  width: 100%;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.live-page-section .search-box:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.live-page-section .search-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

/* Live Streaming Custom Scrollbar */
.live-streaming-page ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.live-streaming-page ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.live-streaming-page ::-webkit-scrollbar-thumb {
  background: var(--gradient-2);
  border-radius: 5px;
}

.live-streaming-page ::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Live Streaming Page Background */
.live-streaming-page {
  background: #0a0e27;
  color: #ffffff;
  min-height: 100vh;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(4, 88, 163, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(235, 191, 60, 0.1) 0%,
      transparent 50%
    );
  background-attachment: fixed;
}

/* Live Streaming Search Container */
.live-search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
  margin: 20px auto;
}

.live-search-box {
  width: 100%;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.live-search-box:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(4, 88, 163, 0.3);
}

.live-search-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b8c5d6;
  pointer-events: none;
}

/* Categories */
.live-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  /* overflow-x: auto; */
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.live-category-pill {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  color: #ffffff;
}

.live-category-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.live-category-pill.active {
  background: linear-gradient(135deg, #0458a3 0%, #1a78c9 100%);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(4, 88, 163, 0.4);
}

/* Channel Grid */
.live-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .live-channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) {
  .live-channels-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Channel Card */
.live-channel-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.live-channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0458a3 0%, #1a78c9 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.live-channel-card:hover::before {
  opacity: 0.1;
}

.live-channel-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(4, 88, 163, 0.3);
}

.live-channel-card > * {
  position: relative;
  z-index: 1;
}

.live-channel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
  padding: 5px;
}

.live-channel-card:hover .live-channel-icon {
  transform: scale(1.1);
  border-color: var(--color-primary);
}

.live-channel-name {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Loading Skeleton */
.live-skeleton {
  animation: pulse 1.5s ease-in-out infinite;
}

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

.live-skeleton-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
}

.live-skeleton-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.live-skeleton-text {
  height: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 0.5rem auto;
  width: 80%;
}

/* Player Modal */
.live-player-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.live-player-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.live-player-container {
  width: 90%;
  max-width: 1200px;
  background: #0a0e27;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.live-player-header {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-player-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.live-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.live-close-btn:hover {
  background: #ff4757;
  border-color: #ff4757;
  transform: rotate(90deg);
}

.live-player-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.live-player-wrapper .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video.js Custom Styling */
.live-streaming-page .vjs-big-play-button {
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0458a3 0%, #1a78c9 100%) !important;
  border: none !important;
  width: 80px !important;
  height: 80px !important;
  line-height: 80px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.live-streaming-page .vjs-big-play-button:hover {
  background: #1a78c9 !important;
}

/* Empty State */
.live-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #b8c5d6;
}

.live-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.live-empty-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Error Message */
.live-error-message {
  background: rgba(255, 71, 87, 0.1);
  border: 2px solid rgba(255, 71, 87, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.live-error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.live-error-text {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.live-retry-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #0458a3 0%, #1a78c9 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
}

.live-retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 88, 163, 0.4);
}

/* Loading Spinner */
.live-loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.live-loading-container {
  text-align: center;
  padding: 3rem;
}

.live-loading-text {
  margin-top: 1rem;
  color: #b8c5d6;
  font-size: 1.1rem;
}

/* Live page */

.live-page-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Categories */
.live-page-section .categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-top: 16px;
  padding-bottom: 16px;
}

.live-page-section .category-pill {
  padding: 0.7rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.live-page-section .category-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.live-page-section .category-pill.active {
  background: var(--gradient-2);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

/* Channel Grid */
.live-page-section .channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) {
  .channels-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Channel Card */
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.channel-card:hover::before {
  opacity: 0.1;
}

.channel-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

.channel-card > * {
  position: relative;
  z-index: 1;
}

.channel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-glass);
  transition: all 0.3s ease;
  display: block;
  padding: 5px;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
  border-color: var(--primary);
}

.channel-name {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Loading Skeleton */
.live-page-section .skeleton {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.live-page-section .skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
}

.live-page-section .skeleton-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.live-page-section .skeleton-text {
  height: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 0.5rem auto;
  width: 80%;
}

/* Player Modal */
.player-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.player-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.player-container {
  width: 90%;
  max-width: 1200px;
  background: var(--bg-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-glass);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.player-header {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.close-btn {
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #ff4757;
  border-color: #ff4757;
  transform: rotate(90deg);
}

.player-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
}

.video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video.js Custom Styling */
.vjs-big-play-button {
  border-radius: 50% !important;
  background: var(--gradient-2) !important;
  border: none !important;
  width: 80px !important;
  height: 80px !important;
  line-height: 80px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.vjs-big-play-button:hover {
  background: var(--primary-light) !important;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Error Message */
.error-message {
  background: rgba(255, 71, 87, 0.1);
  border: 2px solid rgba(255, 71, 87, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.retry-btn {
  padding: 0.8rem 2rem;
  background: var(--gradient-2);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-container {
  text-align: center;
  padding: 3rem;
}

.loading-text {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Service Page Custom Styles
--------------------------------------------------------------*/

/* Page Heros Unification (Service & Contact) */
.service-hero,
.contact-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #0458a3 0%, #034679 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}

.service-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}

.service-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(235, 191, 60, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(50px);
}

.service-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.service-hero h2,
.contact-hero h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-hero p,
.contact-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Dark Mode Overrides for Heros */
body.dark-mode .service-hero,
body.dark-mode .contact-hero {
  background: linear-gradient(135deg, #050816 0%, #0a0e27 100%) !important;
}

/* Service Cards Grid */
.service-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
  text-align: center;
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a78c9 100%);
  transition: height 0.4s ease;
  z-index: -1;
  opacity: 0.03;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(4, 88, 163, 0.15);
  border-color: transparent;
}

.service-card-modern:hover::before {
  height: 100%;
  opacity: 1;
}

.service-card-modern .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(4, 88, 163, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.4s ease;
}

.service-card-modern .icon-wrapper i {
  font-size: 36px;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.service-card-modern:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.service-card-modern:hover .icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}

.service-card-modern h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-default);
  transition: color 0.3s ease;
}

.service-card-modern:hover h3 {
  color: #fff;
}

.service-card-modern p {
  color: var(--color-gray);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-card-modern:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us Section */
.why-us-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--color-secondary);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(235, 191, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 24px;
}

.feature-content {
  text-align: right;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-default);
}

/* Contact Info Cards */
.contact-info-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(4, 88, 163, 0.15);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Contact Numbers Grid */
.company-numbers-section {
  padding: 60px 0;
  background: #fff;
}

.numbers-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.number-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  justify-content: space-between;
}

.number-card:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.number-icon {
  width: 45px;
  height: 45px;
  background: rgba(4, 88, 163, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
}

.number-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-default);
}

.number-info a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-secondary);
  font-family: monospace; /* For clear number display */
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: var(--color-secondary);
}

.form-floating .form-control {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 1rem 0.75rem;
  height: calc(3.5rem + 2px);
  background-color: #fcfcfc;
}

.form-floating textarea.form-control {
  height: 150px;
}

.form-floating .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(4, 88, 163, 0.1);
  background-color: #fff;
}

.btn-send {
  padding: 15px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-send:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(235, 191, 60, 0.3);
}

/* Map Section */
.map-section {
  min-height: 900px;
  width: 100%;
  margin-bottom: -60px;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 800px;
  border: 0;
  filter: grayscale(20%) contrast(1.1); /* Subtle modernization */
  transition: all 0.5s ease;
}

.map-section:hover iframe {
  filter: none;
}

/* Service CTA Section */
.service-cta {
  background:
    linear-gradient(rgba(4, 88, 163, 0.9), rgba(4, 88, 163, 0.95)),
    url("../../assets/images/hero-1.png") fixed center center;
  background-size: cover;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.service-cta h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .btn-cta {
  padding: 15px 40px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.service-cta .btn-cta:hover {
  background: #d4a92c;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@media (max-width: 580px) {
  .map-section {
    height: 500px;
    margin-bottom: 0;
  }
  .floating-images {
    display: none;
  }
}

@media (max-width: 1279px) {
  .desktop-btn {
    display: none;
  }
}

@media (min-width: 1280px) {
  .mobile-btn {
    display: none;
  }
}

