/* 
  ========================================
  :root VARIABLES
  ========================================
*/
:root {
  --main-font: "IBM Plex Sans Arabic", sans-serif;

  /* Base Colors */
  --color-white: #ffffff;
  --color-black: #000000;

  /* نص غامق مناسب للبنفسجي (مش أسود قوي) */
  --color-body-text: #1e1b28;
  /* Dark Purple Gray */

  /* خلفيات مناسبة للبنفسجي */
  --color-bg-gray: #f3eefb;
  /* Lavender Soft */
  --color-bg-input: #faf7ff;
  /* White + Purple tint */
  --color-border: #e6dbf7;
  /* حدود بنفسجية فاتحة */

  /* Brand Colors */
  --primary-color: #5c2d91;
  /* البنفسجي الأساسي */
  --primary-dark: linear-gradient(135deg,
      #5c2d91 0%,
      #7b33a0 35%,
      #92278f 100%);
  /* درجة غامقة منه */
  --primary-btn: #5c2d91;
  /* زرار بنفسجي */

  --secondary-green: #92278f;
  /* موف ثانوي يكسر اللون الأساسي */

  /* نصوص */
  --heading-text: #2b1b47;
  /* Heading Purple Dark */
  --text-muted: #857e99;
  /* رمادي بنفسجي خافت */

  /* Accents (متناسقة مع البنفسجي) */
  --accent-orange: #5c2d91;
  /* مكمل ودافي ناعم مش عالي */
  --accent-pink: #d66ddc;
  /* Accent إضافي مناسب للبنفسجي */

  /* Highlight مناسب للبنفسجي (بدل السماوي اللي كان بيخبط) */
  --highlight-cyan: #c7a7ff;
  /* لمسة بنفسجي فاتح */

  /* RGB Values (معدّلين حسب الألوان الجديدة تماماً) */
  --primary-rgb: 92, 45, 145;
  /* #5c2d91 */
  --secondary-green-rgb: 146, 39, 143;
  /* #92278f */
}


/* 
  ========================================
  FONTS SETUP
  ========================================
*/

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBMPlexSansArabic-Thin.ttf") format("truetype");
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}


@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}


@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}


@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("../../fonts/IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* 
  ========================================
  GLOBAL STYLES
  ========================================
*/
html {
  font-size: 14px;
}

@media (max-width: 991px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

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

body {
  background: linear-gradient(180deg,
      #f3eefb 0%,
      #faf7ff 100%);
  color: var(--color-body-text);
  font-family: var(--main-font);
}

/* 
  ========================================
  NAVBAR
  ========================================
*/
.custom-navbar {
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  height: 70px;
}

.logo-section img {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

/* Logo Wrapper Styles */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  height: 40px !important;
  width: 40px !important;
  border-radius: 20% !important;
  transition: transform 0.2s ease;
}

.logo-icon:hover {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-text-ar {
  font-family: 'Cairo', var(--main-font), sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), #4a227a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-text-en {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--heading-text);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Footer Logo Styles */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  height: 50px !important;
  width: 50px !important;
  border-radius: 20% !important;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand-name-ar {
  font-family: 'Cairo', var(--main-font), sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand-name-en {
  font-family: 'Inter', var(--main-font), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--heading-text);
  margin: 0;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Desktop Menu */
.menu-items {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.menu-items li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading-text);
  transition: color 0.3s;
}

.menu-items li a:hover {
  color: var(--primary-btn);
}

.btn-start {
  background-color: var(--primary-btn);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24, 64, 97, 0.3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--heading-text);
  cursor: pointer;
  padding: 0.5rem;
}

.menu-overlay,
.bottom-sheet {
  display: none;
}


@media (max-width: 768px) {

  .menu-items,
  .action-buttons {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Fix Arabic logo text cutting on mobile */
  .logo-text-ar {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
  }

  .menu-overlay,
  .bottom-sheet {
    display: block;
  }


  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
    backdrop-filter: blur(4px);
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }


  .bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    max-height: 80vh;
    overflow: hidden;
    touch-action: pan-y;
  }

  .bottom-sheet.active {
    transform: translateY(0);
  }

  .bottom-sheet.dragging {
    transition: none !important;
  }


  .sheet-handle {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    cursor: grab;
    user-select: none;
    touch-action: none;
    -webkit-user-select: none;
  }

  .sheet-handle:active {
    cursor: grabbing;
  }

  .handle-bar {
    width: 50px;
    height: 5px;
    background: #d1d5db;
    border-radius: 10px;
    pointer-events: none;
  }


  .sheet-content {
    padding: 0 1.5rem 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
  }

  .sheet-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-text);
    margin-bottom: 1.5rem;
    text-align: center;
  }

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

  .mobile-menu-list li {
    border-bottom: 1px solid #f3f4f6;
  }

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

  .mobile-menu-list li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading-text);
    text-decoration: none;
    transition: all 0.2s;
  }

  .mobile-menu-list li a:active {
    color: var(--primary-btn);
    transform: scale(0.98);
  }

  .mobile-cta {
    margin-top: 2rem;
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* 
  ========================================
  HERO SECTION
  ========================================
*/
.hero-section {
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: var(--primary-dark);
}

.hero-container {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: right;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-3.125rem);
  }

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

.hero-title {
  font-family: var(--main-font);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0.625rem;
}

.hero-subtitle {
  font-family: var(--main-font);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: var(--color-white);
  color: var(--primary-color);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 3.125rem;
  font-family: var(--main-font);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.625rem 1.875rem rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.btn-primary-hero:hover::before {
  left: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.9375rem 2.5rem rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2.5rem;
  border-radius: 3.125rem;
  font-family: var(--main-font);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(255, 255, 255, 0.2);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(3.125rem);
  }

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

.desktop-mockup {
  position: relative;
  width: 28rem;
  /* Wider for desktop aspect ratio */
  height: 20rem;
  /* Shorter for desktop aspect ratio */
  padding: 1.25rem;
  transition: transform 0.3s ease;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1.25rem);
  }
}

.desktop-mockup:hover {
  transform: scale(1.02);
}

.desktop-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-mockup {
  position: absolute;
  bottom: 3.5625rem;
  right: 10.6rem;
  width: 8.8125rem;
  height: 10.5rem;
  animation-delay: 0.5s;
  z-index: 10;
}

.mobile-mockup img {
  width: 77%;
  height: 121%;
  object-fit: cover;
}

.btn-primary-hero,
.btn-secondary-hero {
  text-decoration: none;
  display: inline-block;
}

/* MEDIA QUERIES FOR HERO/NAV */
@media (max-width: 1400px) {
  .mobile-mockup {
    right: 9.3rem;
  }
}

@media (max-width: 1200px) {
  .mobile-mockup {
    right: 4.3rem;
  }
}

@media (max-width: 991px) {
  .menu-items {
    display: none;
    position: absolute;
    top: 4.375rem;
    right: 0;
    left: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 0.0625rem solid var(--color-border);
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
  }

  .menu-items.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .action-buttons {
    display: none;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .desktop-mockup {
    width: 24rem;
    /* Slightly smaller desktop for tablet */
    height: 17rem;
    /* Proportionally shorter */
  }

  .desktop-mockup img {
    height: 100%;
    /* Reset height override */
  }

  .mobile-mockup {
    width: 10rem;
    height: 12.5rem;
    right: 13.3rem;
    bottom: -5.9375rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    max-width: 18.75rem;
  }

  .desktop-mockup {
    width: 20rem;
    /* Smaller desktop for mobile screens */
    height: 14rem;
    /* Proportionally shorter */
  }

  .mobile-mockup {
    width: 8.125rem;
    height: 10rem;
    right: 13.3rem;
    bottom: -4.125rem;
  }

  .mobile-mockup img {
    width: 70%;
    height: 120%;
  }
}

/* 
  ========================================
  CLIENTS SECTION
  ========================================
*/
.clients-section {
  padding: 3rem 2rem;
  overflow: hidden;
}

.clients-container {
  max-width: 87.5rem;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 1rem;
}

.clients-title {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-text);
  text-align: center;
  margin-bottom: 3rem;
}

.clientsSwiper {
  width: 100%;
  padding-bottom: 4rem;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.client-card-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.client-card {
  position: relative;
  width: 100%;
  height: 15.625rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.card-overlay:hover {
  opacity: 0;
}

.client-card:hover {
  transform: translateY(-0.625rem) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.client-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.clientsSwiper .swiper-pagination {
  position: relative;
  margin-top: 2.5rem;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.clientsSwiper .swiper-pagination-bullet {
  width: 1.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #d9d9d9;
  opacity: 1;
  margin: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}

.clientsSwiper .swiper-pagination-bullet:hover {
  background-color: #9ca3af;
  transform: scale(1.1);
}

.clientsSwiper .swiper-pagination-bullet:nth-child(2) {
  width: 5rem;
  height: 0.625rem;
  background-color: var(--accent-orange);
}

.clientsSwiper .swiper-pagination-bullet-active {
  width: 5rem;
  height: 0.625rem;
  background-color: var(--accent-orange);
}

@media (max-width: 991px) {
  .clients-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .client-card {
    height: 13.75rem;
  }

  .clientsSwiper .swiper-pagination-bullet {
    width: 2.5rem;
  }

  .clientsSwiper .swiper-pagination-bullet:nth-child(2),
  .clientsSwiper .swiper-pagination-bullet-active {
    width: 4rem;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 4rem 1rem;
  }

  .clients-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .client-card {
    height: 12.5rem;
  }

  .client-card:hover {
    transform: none;
  }

  .card-overlay:hover {
    opacity: 1;
  }

  .clientsSwiper {
    overflow: hidden;
  }

  .clientsSwiper .swiper-pagination-bullet {
    width: 2rem;
    height: 0.375rem;
  }

  .clientsSwiper .swiper-pagination-bullet:nth-child(2),
  .clientsSwiper .swiper-pagination-bullet-active {
    width: 3.5rem;
    height: 0.5rem;
  }
}

@media (max-width: 480px) {

  /* Further reduce Arabic logo text for very small screens */
  .logo-text-ar {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .clients-section {
    padding: 3rem 1rem;
  }

  .clients-title {
    font-size: 1.25rem;
  }

  .client-card {
    height: 11.25rem;
  }

  .clientsSwiper .swiper-pagination-bullet {
    width: 1.5rem;
    height: 0.3125rem;
  }

  .clientsSwiper .swiper-pagination-bullet:nth-child(2),
  .clientsSwiper .swiper-pagination-bullet-active {
    width: 2.5rem;
    height: 0.4375rem;
  }
}

/* 
  ========================================
  FEATURES SECTION
  ========================================
*/
.features-section {
  padding: 4rem 2rem;
}

.features-container {
  max-width: 87.5rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary-btn);
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--heading-text);
  line-height: 1.8;
}

/* Feature Item */
.feature-item {
  /* Removed grid display to allow Bootstrap flexbox to work */
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 1rem; - Removed to let Bootstrap handle spacing */
  align-items: center;
  margin-bottom: 3rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-title {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.feature-description {
  font-family: var(--main-font);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--heading-text);
  font-weight: 400;
  opacity: 0.7;
  width: 35.75rem;
  height: 12rem;
}

.feature-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.feature-image img {
  width: 100%;
  max-width: 31.25rem;
  height: auto;
  transition: transform 0.4s ease, 0.4s ease;
}

.feature-image img:hover {
  transform: translateY(-0.625rem);
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-section {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .feature-item {
    /* grid-template-columns: 1fr; - Removed for Bootstrap */
    /* gap: 1rem; - Removed for Bootstrap */
    margin-bottom: 4rem;
    /* direction: rtl; - Removed to fix layout */
  }

  /* .feature-item.reverse rule removed */

  .feature-content {
    /* order: 2; - Removed to let Bootstrap handle ordering */
    text-align: center;
    padding: 1rem;
  }

  .feature-image {
    /* order: 1; - Removed to let Bootstrap handle ordering */
  }

  .feature-title {
    font-size: 1.75rem;
  }

  .feature-description {
    font-size: 1rem;
    width: 23.75rem;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    line-height: 1.5;
  }

  .feature-image img {
    max-width: 20rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-item {
    /* gap: 1.5rem; - Removed for Bootstrap */
    margin-bottom: 3rem;
  }

  .feature-content {
    padding: 0.5rem;
    text-align: center;
  }

  .feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .feature-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    text-align: center;
  }

  .feature-image {
    padding: 1rem;
  }

  .feature-image img {
    max-width: 18.75rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  .feature-image img {
    max-width: 15.625rem;
  }
}

/* 
  ========================================
  WHY CHOOSE SECTION
  ========================================
*/
.why-choose-section {
  padding: 4rem 2rem;
}

.why-choose-container {
  max-width: 87.5rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
}

.section-description {
  font-family: var(--main-font);
  font-size: 1.125rem;
  color: rgba(24, 35, 15, 0.7);
  line-height: 1.8;
}

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

.reason-card {
  background-color: var(--color-bg-gray);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.reason-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.3125rem solid var(--primary-dark);
}


.card-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}

.card-title {
  font-family: var(--main-font);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-description {
  font-family: var(--main-font);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(24, 35, 15, 0.7);
}

/* Why Choose Media Queries */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .reason-card {
    padding: 2.5rem 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-description {
    font-size: 0.9375rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-card {
    padding: 2rem 1.5rem;
  }

  .card-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }

  .card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9375rem;
  }

  .reason-card {
    padding: 1.5rem 1rem;
  }
}

/* 
  ========================================
  PRICING SECTION
  ========================================
*/
.pricing-section {
  padding: 4rem 2rem;
}

.pricing-container {
  max-width: 87.5rem;
  margin: 0 auto;
}

.pricing-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-section-subtitle {
  font-family: var(--main-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pricing-section-title {
  font-family: var(--main-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 2rem;
}

/* Pricing Toggle Switch */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.pricing-toggle-container {
  position: relative;
  background-color: var(--primary-btn);
  border-radius: 3.125rem;
  padding: 0.3125rem;
  display: flex;
  width: 20rem;
}

.pricing-discount-badge {
  background-color: var(--primary-dark);
  color: var(--color-white);
  padding: 0.6rem;
  border-radius: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  z-index: 11;
  white-space: nowrap;
}

.pricing-toggle-option {
  flex: 1;
  padding: 0.625rem 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
  position: relative;
}

.pricing-toggle-option.active {
  color: var(--color-black);
}

.pricing-toggle-slider {
  position: absolute;
  top: 0.3125rem;
  right: 0.3125rem;
  width: calc(50% - 0.3125rem);
  height: calc(100% - 0.625rem);
  background-color: var(--color-bg-gray);
  border-radius: 3.125rem;
  transition: transform 0.3s ease;
  z-index: 1;
}

.pricing-toggle-container.monthly .pricing-toggle-slider {
  transform: translateX(0);
}

.pricing-toggle-container.yearly .pricing-toggle-slider {
  transform: translateX(-100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.pricing-plan-card {
  width: 22.6875rem;
  min-height: 43.75rem;
  background: linear-gradient(180deg,
      #f3eefb 0%,
      #faf7ff 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 0.0625rem solid rgba(237, 237, 237, 1);
  box-shadow: 0px 0.125rem 0.125rem 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.pricing-plan-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0px 0.125rem 0.125rem 0px rgba(0, 0, 0, 0.08),
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.pricing-card-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #000000 0%, #525252 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  font-family: var(--main-font);
  width: 100%;
}

.pricing-plan-desc {
  font-size: 0.9375rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  font-family: var(--main-font);
}

.pricing-plan-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1;
  font-family: var(--main-font);
}

.pricing-currency {
  font-size: 3.75rem;
}

.pricing-period {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--main-font);
}

.pricing-cta-button {
  width: 100%;
  padding: 1rem 2rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.15);
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
  font-family: var(--main-font);
}

.pricing-cta-button:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/*  Features Section */
.pricing-features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  text-align: right;
  width: 100%;
  font-family: var(--main-font);
}

.pricing-features-list {
  list-style: none;
  text-align: right;
  width: 100%;
  padding: 0;
  margin: 0;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0;
  font-size: 1.10rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
  font-family: var(--main-font);
}

.pricing-feature-item:last-child {
  border-bottom: none;
}

.pricing-plan-card.featured {
  background: linear-gradient(135deg,
      #5c2d91 0%,
      #7b33a0 35%,
      #92278f 100%);

  box-shadow: 0 0 0.125rem 0.125rem rgba(255, 255, 255, 0.4) inset,
    0px 0.25rem 0.5rem 0px rgba(0, 0, 0, 0.15);
  color: var(--color-white);
  transform: scale(1.05);
  position: relative;
  min-height: 46.25rem;
  border: none;
}

.pricing-plan-card.featured:hover {
  transform: scale(1.05) translateY(-0.625rem);
}

.pricing-plan-card.featured .pricing-card-icon {
  background: linear-gradient(180deg, #ffffff 0%, #cdcdcd 100%);
}

.pricing-plan-card.featured .pricing-plan-name,
.pricing-plan-card.featured .pricing-amount {
  color: var(--color-white);
}

.pricing-plan-card.featured .pricing-plan-desc,
.pricing-plan-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-plan-card.featured .pricing-cta-button {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.pricing-plan-card.featured .pricing-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.pricing-plan-card.featured .pricing-features-title {
  color: var(--color-white);
}

.pricing-plan-card.featured .pricing-feature-item {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-plan-card.featured .pricing-feature-icon {
  border-color: var(--color-white);
}

.pricing-plan-card.featured .pricing-feature-icon::before {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-plan-card,
  .pricing-plan-card.featured {
    width: 100%;
    max-width: 22.6875rem;
    margin: 0 auto;
    transform: scale(1);
  }

  .pricing-plan-card.featured:hover {
    transform: translateY(-0.625rem);
  }
}

@media (max-width: 768px) {
  .pricing-section-title {
    font-size: 2rem;
  }

  .pricing-toggle {
    flex-direction: column;
  }

  .pricing-toggle-container {
    width: 100%;
    max-width: 18.75rem;
  }

  .pricing-discount-badge {
    left: 5%;
    transform: translateX(-50%);
    top: -15px;
  }
}

@media (max-width: 480px) {
  .pricing-discount-badge {
    left: 4%;
    top: -15px;
  }
}

/* 
  ========================================
  CONTACT SECTION
  ========================================
*/
.contact-section {
  padding: 4rem 0;
  background-color: rgba(243, 238, 251, 1);
}

/* .section-header is reusable from above */

.contact-form-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.form-control,
.form-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 0.75rem;
  font-family: var(--main-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-bg-input);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-dark);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

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

input[type="email"] {
  direction: rtl;
  text-align: right;
}

.phone-input-wrapper {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: 0.75rem;
  background-color: var(--color-bg-input);
  overflow: hidden;
  transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
  border-color: var(--primary-dark);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.country-code-select {
  padding: 0.875rem 0.75rem;
  border: none;
  background-color: transparent;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  outline: none;
  border-left: 1.5px solid var(--color-border);
  min-width: 80px;
}

.phone-number-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  background-color: transparent;
  font-family: var(--main-font);
  font-size: 1rem;
  outline: none;
  direction: ltr;
  text-align: left;
}

.phone-number-input::placeholder {
  direction: rtl;
  text-align: right;
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-dark);
  color: var(--color-white);
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--main-font);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.contact-info-card {
  background: var(--primary-dark);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  color: var(--color-white);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.contact-info-card h3 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.contact-item i {
  font-size: 1.25rem;
  width: 35px;
  text-align: center;
}

.contact-item span {
  font-size: 1rem;
  direction: ltr;
  text-align: left;
}

.social-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  text-align: center;
}

.social-section h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: space-around;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 0.9375rem;
    margin-bottom: 3rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2rem 1.5rem;
  }

  .contact-info-card h3 {
    font-size: 1.5rem;
  }

  .contact-item {
    padding: 0.875rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem 1rem;
  }

  .form-control,
  .form-select {
    padding: 0.75rem 1rem;
  }
}

/* 
  ========================================
  CTA SECTION
  ========================================
*/
.cta-section {
  padding: 4rem 2rem;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-card {
  background: var(--primary-dark);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.3);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
  max-width: 700px;
}

.cta-title {
  font-family: var(--main-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-description {
  font-family: var(--main-font);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0;
  opacity: 0.7;
}

.cta-button-wrapper {
  flex-shrink: 0;
}

.cta-button {
  background: rgba(245, 245, 245, 1);
  color: var(--color-black);
  padding: 1rem 6rem;
  border-radius: 1rem;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--color-bg-input);
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-card {
    padding: 3rem 2.5rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-card {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 0.9375rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 0.875rem;
  }

  .cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    width: 100%;
  }
}

/* 
  ========================================
  FOOTER SECTION
  ========================================
*/

/* ==========================================
       FOOTER SECTION
       ========================================== */

.footer-section {
  background: linear-gradient(180deg, #f3eefb 0%, #faf7ff 100%);
  padding: 4rem 0 0;
}


.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}


.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-wrapper img {
  height: 4rem;
  width: auto;
  border-radius: 50%;
}

.footer-brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-text);
  margin: 0;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* Payment Methods */
.footer-payment-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Social Media */
.footer-social-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon img {
  width: 30px;
  height: auto;
}

.social-icon:hover {
  transform: translateY(-5px);
}


.footer-links-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-btn);
  padding-right: 5px;
}



.footer-contact-column h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 0.5rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--primary-btn);
}

/* ==========================================
         FOOTER BOTTOM
         ========================================== */

.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-left a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.copyright {
  margin: 0;
}

.visitor-count {
  margin: 0;
}

/* ==========================================
         RESPONSIVE DESIGN
         ========================================== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand-column,
  .footer-links-column,
  .footer-contact-column {
    text-align: center;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .payment-methods,
  .social-icons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-left {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 0;
  }

  .footer-logo-wrapper img {
    height: 3.5rem;
  }

  .footer-brand-name {
    font-size: 1.5rem;
  }

  .footer-description {
    font-size: 1.1rem;
  }

  .footer-payment-section h4,
  .footer-social-section h4 {
    font-size: 1.125rem;
  }

  .payment-methods img {
    height: 30px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 2rem;
  }

  .footer-brand-column {
    gap: 2rem;
  }

  .footer-logo-wrapper img {
    height: 3rem;
  }

  .footer-brand-name {
    font-size: 1.25rem;
  }

  .payment-methods {
    gap: 0.75rem;
  }

  .payment-methods img {
    height: 28px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}


/* 
  ========================================
  BLOG PAGE
  ========================================
*/
.blog-section-blogPage {
  position: relative;
  border-radius: 1rem;
  margin: 8rem auto 1rem;
  max-width: 1400px;
  overflow: hidden;
  height: 60vh;
}

.blog-section-blogPage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section-blogPage .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
}

.blog-title {
  font-family: var(--main-font);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-align: center;
}

.blog-description {
  font-family: var(--main-font);
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 700px;
  line-height: 1.8;
}

/* Articles Section */
.articles-section {
  padding: 3rem 0 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Article Card */
.article-card {
  background: rgba(245, 245, 245, 1);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-title-blogPage {
  font-family: var(--main-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.article-description {
  font-family: var(--main-font);
  font-size: 0.9375rem;
  color: rgba(24, 35, 15, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Author Section */
.article-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--main-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 0.25rem;
}

.author-date {
  font-family: var(--main-font);
  font-size: 0.8125rem;
  color: rgba(24, 35, 15, 0.6);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  width: 45px;
  height: 45px;
  border-radius: 1rem;
  background: var(--primary-dark);
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}

.pagination-btn:hover {
  background: #0a5c6d;
  transform: scale(1.1);
}

.pagination-btn.active {
  background: #0a5c6d;
}

/* Responsive Design Blog */
@media (max-width: 991px) {
  .blog-section-blogPage {
    height: 40vh;
    margin: 7rem 2rem;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .blog-section-blogPage {
    height: 300px;
    border-radius: 1.5rem;
  }

  .blog-title {
    font-size: 1.75rem;
  }

  .blog-description {
    font-size: 0.9375rem;
  }

  .section-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .article-image {
    height: 200px;
  }

  .article-title-blogPage {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .blog-section-blogPage {
    height: 280px;
    margin: 8rem 1rem 0;
    border-radius: 1rem;
  }

  .blog-title {
    font-size: 1.5rem;
  }

  .blog-description {
    font-size: 0.875rem;
  }

  .article-content {
    padding: 1.25rem;
  }

  .pagination-btn {
    width: 40px;
    height: 40px;
  }
}

.article-header {
  max-width: 1200px;
  margin: 8rem auto 0;
  position: relative;
  overflow: hidden;
}

.article-header-image-container {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 75vh;
}

.article-header-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.article-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 1rem;
}

.article-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.7;
  color: var(--heading-text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 1.05rem;
  color: var(--heading-text);
  font-weight: 700;
}

.author-date {
  font-size: 0.9rem;
  color: var(--heading-text);
  font-weight: 400;
  opacity: 0.7;
}

.ad-main-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 2rem;
}

.ad-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
  text-align: right;
  font-family: var(--main-font);
  font-weight: 500;
}

.ad-heading {
  font-size: 1.875rem;
  color: var(--heading-text);
  margin: 2rem 0 1.5rem;
  text-align: right;
  font-family: var(--main-font);
  font-weight: 700;
}

.ad-highlight-box {
  background-color: var(--highlight-cyan);
  border-right: 11px solid var(--primary-dark);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}

.ad-highlight-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--heading-text);
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.ad-features-list {
  list-style: disc;
  padding: 0;
  margin: 1rem 0;
  list-style-position: inside;
}

.ad-features-list li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--heading-text);
  margin-bottom: 0.5rem;
  text-align: right;
  font-family: var(--main-font);
}

.ad-features-list li strong {
  font-weight: 700;
  color: var(--primary-dark);
}

.ad-conclusion {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--main-font);
  font-size: 1.2rem;
}

/* Sidebar */
.ad-sidebar-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 2rem;
}

.ad-sidebar-title {
  font-size: 2rem;
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
  text-align: right;
}

.ad-related-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.ad-related-link:hover {
  transform: translateY(-5px);
}

.ad-related-article {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ad-related-link:last-child .ad-related-article {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ad-related-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.ad-related-content {
  text-align: right;
}

.ad-related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.ad-related-desc {
  font-size: 0.95rem;
  color: var(--heading-text);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 1rem;
}


@media (max-width: 991px) {
  .article-header {
    margin: 6rem auto 1rem;
  }

  .article-header-image-container {
    height: 60vh;
  }

  .article-title {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1.25rem;
  }

  .ad-main-card {
    padding: 2rem;
  }

  .ad-sidebar-card {
    position: static;
    margin-top: 2rem;
  }

  .ad-heading {
    font-size: 1.625rem;
  }

  .ad-text {
    font-size: 1.0625rem;
  }
}

@media (max-width: 768px) {
  .article-header {
    margin: 5rem auto 1rem;
    padding: 0.75rem;
  }

  .article-header-image-container {
    height: 50vh;
    border-radius: 0.875rem;
  }

  .article-title {
    font-size: 1.75rem;
  }

  .article-subtitle {
    font-size: 1.125rem;
  }

  .ad-main-card {
    padding: 1.5rem;
    border-radius: 0.875rem;
  }

  .ad-sidebar-card {
    padding: 1.5rem;
    border-radius: 0.875rem;
  }

  .ad-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
  }

  .ad-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .ad-highlight-box {
    padding: 1.25rem 1.5rem;
    border-right-width: 8px;
  }

  .ad-highlight-text {
    font-size: 1.125rem;
  }

  .ad-features-list li {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .ad-related-img {
    height: 160px;
  }

  .ad-sidebar-title {
    font-size: 1.375rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .article-header {
    margin: 4rem auto 1rem;
    padding: 0.5rem;
  }

  .article-header-image-container {
    height: 25vh;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }

  .article-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .article-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .article-meta {
    margin-bottom: 2rem;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-date {
    font-size: 0.8rem;
  }

  .ad-main-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .ad-sidebar-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .ad-heading {
    font-size: 1.375rem;
    margin: 1.25rem 0 0.875rem;
  }

  .ad-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .ad-highlight-box {
    padding: 1rem 1.25rem;
    border-right-width: 7px;
    margin: 1.5rem 0;
  }

  .ad-highlight-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .ad-features-list li {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    padding-right: 0;
  }

  .ad-conclusion {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .ad-related-article {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .ad-related-img {
    height: 140px;
    border-radius: 0.625rem;
  }

  .ad-related-title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }

  .ad-related-desc {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .ad-sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* 
  ========================================
  SUPPORT PAGE
  ========================================
*/
.support-section {
  margin-top: 5rem;
  padding: 5rem 0;
}

.support-header {
  text-align: center;
  margin-bottom: 2rem;
}

.support-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.support-subtitle {
  font-size: 1.125rem;
  color: var(--heading-text);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.support-search {
  position: relative;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.support-search-input {
  width: 100%;
  padding: 1rem 2.2rem 1rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  font-size: 0.9rem;
  text-align: right;
  transition: all 0.3s ease;
  background: #fff;
}

.support-search-input:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.support-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.support-search-icon {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.support-cards-row {
  gap: 1.5rem 0;
}

.support-card {
  background: rgba(245, 245, 245, 1);
  padding: 6rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.support-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.support-card:hover .support-icon-wrapper {
  transform: scale(1.1);
}

.support-icon {
  font-size: 2rem;
  color: #fff;
}

.support-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 0.75rem;
  font-family: var(--main-font);
}

.support-card-desc {
  font-size: 1rem;
  color: var(--heading-text);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-text);
  text-align: center;
  margin-bottom: 3rem;
  font-family: var(--main-font);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--primary-dark);
  border: none;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(4, 57, 69, 0.9);
}

.faq-question span {
  flex: 1;
  margin-left: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  background: #fff;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1.75rem 2rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.faq-answer p {
  color: var(--heading-text);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.85;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.faq-item:not(.active) .faq-answer p {
  transform: translateY(-10px);
}

/* Support CTA Section */
.support-cta-section {
  padding: 2rem 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 55%;
  border-radius: 1rem;
}

.support-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.support-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: var(--main-font);
}

.support-cta-description {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 1);
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--primary-dark);
  padding: 1rem 10rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.support-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.support-cta-btn svg {
  width: 20px;
  height: 20px;
}


@media (max-width: 991px) {
  .support-section {
    padding: 4rem 0;
  }

  .support-title {
    font-size: 2.25rem;
  }

  .support-subtitle {
    font-size: 1.0625rem;
  }

  .support-search {
    margin-bottom: 3rem;
  }

  .support-card {
    padding: 2rem 1.25rem;
  }

  .support-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .support-icon {
    font-size: 1.75rem;
  }

  .support-card-title {
    font-size: 1.25rem;
  }

  .support-card-desc {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 4rem 0;
  }

  .faq-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .faq-accordion {
    gap: 1rem;
  }

  .faq-question {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.5rem 1.75rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .support-cta-section {
    padding: 4.5rem 0;
  }

  .support-cta-title {
    font-size: 2.5rem;
  }

  .support-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.25rem;
  }

  .support-cta-btn {
    padding: 0.875rem 2.25rem;
    font-size: 1.0625rem;
  }
}


@media (max-width: 768px) {
  .support-section {
    padding: 3.5rem 0;
  }

  .support-title {
    font-size: 2rem;
  }

  .support-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .support-search {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .support-search-input {
    padding: 0.875rem 2rem 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .support-search-icon {
    right: 1.6rem;
    width: 15px;
    height: 15px;
  }

  .support-cards-row {
    gap: 1.25rem 0;
  }

  .support-card {
    padding: 1.75rem 1rem;
  }

  .support-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 1.25rem;
  }

  .support-icon {
    font-size: 1.625rem;
  }

  .support-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }

  .support-card-desc {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 3.5rem 0;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-accordion {
    gap: 0.875rem;
    padding: 0 1rem;
  }

  .faq-question {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question span {
    margin-left: 0.75rem;
  }

  .faq-icon {
    width: 14px;
    height: 9px;
  }

  .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .support-cta-section {
    padding: 4rem 0;
  }

  .support-cta-content {
    padding: 0 1.5rem;
  }

  .support-cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .support-cta-description {
    font-size: 1rem;
    line-height: 1.2;
  }

  .support-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    gap: 0.625rem;
  }

  .support-cta-btn svg {
    width: 18px;
    height: 18px;
  }
}


@media (max-width: 480px) {
  .support-section {
    padding: 3rem 0;
  }

  .support-title {
    font-size: 1.75rem;
  }

  .support-subtitle {
    font-size: 0.9375rem;
  }

  .support-search {
    margin-bottom: 2rem;
  }

  .support-search-input {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.625rem;
  }

  .support-search-icon {
    left: 1rem;
    width: 16px;
    height: 16px;
  }

  .support-cards-row {
    gap: 1rem 0;
  }

  .support-card {
    padding: 1.5rem 1rem;
    border-radius: 0.875rem;
  }

  .support-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .support-icon {
    font-size: 1.5rem;
  }

  .support-card-title {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
  }

  .support-card-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .faq-accordion {
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .faq-item {
    border-radius: 0.625rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-question span {
    margin-left: 0.625rem;
  }

  .faq-icon {
    width: 12px;
    height: 8px;
  }

  .faq-item.active .faq-answer {
    padding: 1rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .support-cta-section {
    padding: 3.5rem 0;
  }

  .support-cta-content {
    padding: 0 1rem;
  }

  .support-cta-title {
    font-size: 1.5rem;
  }

  .support-cta-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 1.75rem;
  }

  .support-cta-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    gap: 0.5rem;
    border-radius: 0.625rem;
  }

  .support-cta-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* 
  ========================================
  PAYMENT PAGE
  ========================================
*/
.payment-section {
  padding: 8rem 0 4rem;
}

.payment-header {
  text-align: right;
  margin-bottom: 3rem;
}

.payment-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-text);
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.payment-main-subtitle {
  font-size: 1.125rem;
  color: var(--heading-text);
  opacity: 0.7;
  line-height: 1.6;
}


.payment-form-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.payment-form-section {
  margin-bottom: 2rem;
}

.payment-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
  text-align: right;
  font-family: var(--main-font);
}

.payment-input-group {
  margin-bottom: 1.5rem;
}

.payment-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 0.5rem;
  text-align: right;
  font-family: var(--main-font);
}

.payment-input,
.payment-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: right;
  transition: all 0.3s ease;
  background: #fff;
  font-family: var(--main-font);
}

.payment-input:focus,
.payment-select:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.payment-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.payment-input-helper {
  font-size: 0.875rem;
  color: var(--heading-text);
  opacity: 0.6;
  margin-top: 0.5rem;
  text-align: right;
}

.payment-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 3rem;
}


.payment-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 2.5rem 0;
}


.payment-instructions-section {
  margin-bottom: 2rem;
}

.payment-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.payment-step:last-child {
  margin-bottom: 0;
}

.payment-step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--main-font);
}

.payment-step-content {
  flex: 1;
  text-align: right;
}

.payment-step-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text);
  margin-bottom: 0.75rem;
  font-family: var(--main-font);
}

.payment-step-subtext {
  font-size: 0.875rem;
  color: var(--heading-text);
  opacity: 0.7;
  margin-top: 0.5rem;
  font-family: var(--main-font);
}

.payment-phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--primary-rgb), 0.05);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--primary-dark);
}

.payment-phone-label {
  font-weight: 600;
  font-family: var(--main-font);
}

.payment-phone-value {
  font-weight: 700;
  font-family: var(--main-font);
}

.payment-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--main-font);
}

.payment-whatsapp-btn:hover {
  background: rgba(4, 57, 69, 0.9);
  transform: translateY(-2px);
}

/* Payment Actions */
.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--main-font);
}

.payment-submit-btn:hover {
  background: rgba(4, 57, 69, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}






.checkout-plan-card {
  background: linear-gradient(135deg,
      #5c2d91 0%,
      #7b33a0 35%,
      #92278f 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.4) inset,
    0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  color: white;
  margin-bottom: 1.5rem;
  text-align: right;
}

.checkout-plan-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #cdcdcd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--main-font);
}

.checkout-plan-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-family: var(--main-font);
}

.checkout-plan-price {
  margin-bottom: 1.5rem;
  text-align: center;
}

.checkout-price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

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

.checkout-price-unit {
  font-size: 1.5rem;
  margin-right: 0.25rem;
}

.checkout-price-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--main-font);
}

.checkout-plan-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #fff;
  color: rgba(0, 0, 0, 1);
  border-radius: 3.125rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  font-family: var(--main-font);
}

.checkout-plan-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.checkout-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.checkout-features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.checkout-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1.20rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--main-font);
}

.checkout-feature-item:last-child {
  border-bottom: none;
}


.checkout-summary-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.checkout-summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-text);
  margin-bottom: 1.5rem;
  text-align: right;
  font-family: var(--main-font);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  font-family: var(--main-font);
}

.checkout-summary-label {
  font-size: 1rem;
  color: var(--heading-text);
  opacity: 0.7;
}

.checkout-summary-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-text);
}

.checkout-summary-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

.checkout-summary-total {
  padding-top: 1rem;
}

.checkout-summary-total .checkout-summary-label,
.checkout-summary-total .checkout-summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  opacity: 1;
}

@media (max-width: 991px) {
  .payment-section {
    padding: 6rem 0 3rem;
  }

  .payment-main-title {
    font-size: 2.25rem;
  }

  .payment-main-subtitle {
    font-size: 1.0625rem;
  }

  .payment-form-card {
    padding: 2rem;
  }

  .payment-section-title {
    font-size: 1.375rem;
  }

  .checkout-plan-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .payment-section {
    padding: 5rem 0 2.5rem;
  }

  .payment-header {
    margin-bottom: 2.5rem;
  }

  .payment-main-title {
    font-size: 2rem;
  }

  .payment-main-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .payment-form-card {
    padding: 1.75rem;
    border-radius: 0.875rem;
  }

  .payment-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .payment-input,
  .payment-select {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .payment-step {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .payment-step-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .payment-step-text {
    font-size: 0.95rem;
  }

  .payment-whatsapp-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }

  .payment-submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .checkout-plan-card {
    padding: 1.75rem;
    border-radius: 0.875rem;
  }

  .checkout-plan-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .checkout-plan-name {
    font-size: 1.375rem;
  }

  .checkout-price-currency {
    font-size: 2.5rem;
  }

  .checkout-summary-card {
    padding: 1.75rem;
    border-radius: 0.875rem;
  }

  .checkout-summary-title {
    font-size: 1.375rem;
  }
}


@media (max-width: 480px) {
  .payment-section {
    padding: 4rem 0 2rem;
    margin-top: 5rem;
  }

  .payment-header {
    margin-bottom: 2rem;
  }

  .payment-main-title {
    font-size: 1.75rem;
  }

  .payment-main-subtitle {
    font-size: 0.9375rem;
  }

  .payment-form-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .payment-section-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .payment-label {
    font-size: 0.9375rem;
  }

  .payment-input,
  .payment-select {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    border-radius: 0.375rem;
  }

  .payment-input-helper {
    font-size: 0.8125rem;
  }

  .payment-divider {
    margin: 2rem 0;
  }

  .payment-step {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .payment-step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.9375rem;
  }

  .payment-step-text {
    font-size: 0.9rem;
  }

  .payment-step-subtext {
    font-size: 0.8125rem;
  }

  .payment-phone-number {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .payment-whatsapp-btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .payment-whatsapp-btn svg {
    width: 16px;
    height: 16px;
  }

  .payment-submit-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 0.375rem;
  }

  .checkout-plan-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .checkout-plan-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
  }

  .checkout-plan-icon svg {
    width: 16px;
    height: 16px;
  }

  .checkout-plan-name {
    font-size: 1.25rem;
  }

  .checkout-plan-desc {
    font-size: 0.875rem;
  }

  .checkout-price-currency {
    font-size: 2.25rem;
  }

  .checkout-price-unit {
    font-size: 1.25rem;
  }

  .checkout-price-period {
    font-size: 0.8125rem;
  }

  .checkout-plan-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .checkout-features-title {
    font-size: 1rem;
  }

  .checkout-feature-item {
    padding: 0.625rem 0;
    font-size: 0.875rem;
    gap: 0.625rem;
  }

  .checkout-feature-item svg {
    width: 14px;
    height: 14px;
  }

  .checkout-summary-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

  .checkout-summary-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .checkout-summary-row {
    padding: 0.75rem 0;
  }

  .checkout-summary-label,
  .checkout-summary-value {
    font-size: 0.9375rem;
  }

  .checkout-summary-total .checkout-summary-label,
  .checkout-summary-total .checkout-summary-value {
    font-size: 1.125rem;
  }
}

/* 
  ========================================
  WHATSAPP FLOATING BUTTON
  ========================================
*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: white;
  text-decoration: none;
  animation: none;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Pulse animation for attention */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }

  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 10px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

.contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

/* الأيقونات */
.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: float 2s infinite ease-in-out;
}

.contact-icon svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-icon.whatsapp {
  background-color: #25d366;
  color: white;
}

.contact-icon.phone {
  background: linear-gradient(135deg, #5c2d91 0%, #7b33a0 35%, #92278f 100%);
  color: white;
}

/* حركة float */
@keyframes float {
  0% {
    transform: translateY(0px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon svg {
    width: 25px;
    height: 25px;
  }
}




/* Extra small screens - 360px and below */
@media (max-width: 360px) {

  /* Further optimize Arabic logo text for very small screens */
  .logo-text-ar {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }

  .logo-text-en {
    font-size: 0.8rem;
  }

  /* Reduce nav container padding */
  .nav-container {
    padding: 0 0.75rem;
  }

  /* Reduce logo gap */
  .logo-wrapper {
    gap: 0.5rem;
  }
}