/*
Theme Name: Sameh Gamal
Theme URI: https://digital4it.com
Author: Sameh Gamal
Author URI: https://digital4it.com
Description: ثيم متخصص للشركات  
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.
Requires PHP: 8.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain: grt-eg.com
Tags: arabic, rtl, business, finance, loan, professional, one-page
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@400;500;700&display=swap');

:root {
  --gold: #5c3db5;
  --gold-light: #8a71d1;
  --gold-dark: #442d8c;
  --navy: #0B1A2E;
  --navy-mid: #142238;
  --navy-light: #1E3354;
  --cream: #f6f4ff;
  --cream-dark: #ece9ff;
  --white: #FFFFFF;
  --text-dark: #0B1A2E;
  --text-mid: #3A4D63;
  --text-light: #6B7F96;
  --border: rgba(92, 61, 181, 0.2);
  --shadow-gold: 0 8px 40px rgba(92, 61, 181, 0.15);
  --shadow-navy: 0 8px 40px rgba(11, 26, 46, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --hp-brand: #3d1f8e;
  --hp-brand-l: #5c3db5;
  --hp-brand-d: #2a1460;
  --hp-accent: #e8a020;
  --hp-accent-l: #ffc84a;
  --hp-text: #1a1a2e;
  --hp-body: #3d3d5c;
  --hp-muted: #7a7a9a;
  --hp-bg: #f8f7ff;
  --hp-bg-tint: #f0eeff;
  --hp-white: #ffffff;
  --hp-border: #e2ddf5;
  --hp-success: #1a6b3a;
  --hp-success-bg: #edfaf3;
  --hp-warn: #8a5a00;
  --hp-warn-bg: #fff8e1;
  --hp-r-sm: 6px;
  --hp-r-md: 12px;
  --hp-r-lg: 20px;
  --hp-shadow-sm: 0 2px 8px rgba(61, 31, 142, .08);
  --hp-shadow-md: 0 6px 24px rgba(61, 31, 142, .12);
  --hp-font-d: 'Cairo', sans-serif;
  --hp-font-b: 'Tajawal', sans-serif;
  --hp-max-w: 1100px;
  --hp-ease: .22s cubic-bezier(.4, 0, .2, 1);
}

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


html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--hp-font-b);
  background-color: var(--cream);
  color: var(--text-dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(32px, 5vw, 35px);
}

h2 {
  font-size: 29px !important;
  margin: 20px 0 !important;
}

h3 {
  font-size: 23px !important;
  margin: 20px 0 !important;
}

p,
li {
  line-height: 1.5 !important;
  font-size: 20px !important;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 60px 5%;
}

.section--white {
  background: var(--white);
  position: relative;
}

.section--cream {
  background: var(--cream);
  position: relative;
  border-top: 1px solid rgba(92, 61, 181, 0.03);
  border-bottom: 1px solid rgba(92, 61, 181, 0.03);
}

.hp-section--tinted {
  background: var(--cream-dark);
  position: relative;
}

.section--dark {
 background: linear-gradient(135deg, rgb(42, 20, 96), rgb(61, 31, 142) 55%, rgb(92, 61, 181));
  color: var(--white);
}

.section--dark .section-title {
  color: var(--white);
}

.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px !important;
  max-width: 580px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--hp-accent);
  color: var(--navy);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(92, 61, 181, 0.4);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

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

.btn--lg {
  padding: 18px 44px;
  font-size: 17px;
  min-height: 62px;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(11, 26, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 181, 0.15);
  display: flex;
  align-items: center;
  padding: 0 5%;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.logo-text {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
}

.logo-text span {
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--white);
}

.main-nav .menu-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
}

.main-nav .menu-cta a:hover {
  box-shadow: 0 6px 20px rgba(92, 61, 181, 0.35);
}

/* ============================================================
   SUB-MENU
   ============================================================ */
.main-nav li {
  position: relative;
}

.main-nav ul .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--navy);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  flex-direction: column;
  gap: 0;
  z-index: 100;
}

.main-nav li:hover>.sub-menu {
  display: flex;
}

.main-nav .sub-menu li {
  width: 100%;
}

.main-nav .sub-menu a {
  padding: 12px 24px;
  display: block;
  font-size: 14px;
  border-radius: 0;
  white-space: nowrap;
}

.main-nav .sub-menu a:hover {
  background: rgba(92, 61, 181, 0.1);
  color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 60vh;
  background: linear-gradient(135deg, rgb(42, 20, 96), rgb(61, 31, 142) 55%, rgb(92, 61, 181));
  padding: 120px 5% 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 50%, rgba(92, 61, 181, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 80% 15%, rgba(92, 61, 181, 0.1) 0%, transparent 40%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(92, 61, 181, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 61, 181, 1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 61, 181, 0.1);
  border: 1px solid rgba(92, 61, 181, 0.3);
  border-radius: 40px;
  padding: 8px 18px;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.hero__badgesicon {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero__badgesicon .hero__badge {
  margin-bottom: 0;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  backdrop-filter: blur(5px);
}

.hero__badge-icon {
  color: var(--gold);
  font-size: 14px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .gold {
  color: var(--gold);
}

.hero__desc {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  min-height: 62px;
}



/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(11, 26, 46, 0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-navy);
  border-color: rgba(92, 61, 181, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s;
}

.service-card__link:hover {
  gap: 10px;
}

/* ============================================================
   HOW IT WORKS (STEPS)
   ============================================================ */
.steps-grid {
  display: flex;
  gap: 0;
}

.step-card {
  flex: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(11, 26, 46, 0.07);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-navy);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.author__name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.author__meta {
  color: var(--text-light);
  font-size: 13px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(11, 26, 46, 0.12);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

/* ============================================================
   WHATSAPP & PHONE FLOAT
   ============================================================ */
.whatsapp-float,
.phone-float {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s;
}

.phone-float {
  right: 28px !important;
  background: #3325d3 !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


.phone-float:hover {
  transform: scale(1.1);
  background: var(--navy-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
background: linear-gradient(135deg, rgb(42, 20, 96), rgb(61, 31, 142) 55%, rgb(92, 61, 181));
  color: #fff;
  padding: 80px 5% 36px;
}

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

.footer-widget-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 5%;
  }

  .hero {
    padding: 100px 5% 0px;
  }



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

  .hero__badgesicon {
    gap: 8px;
    margin-top: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  /* Mobile Submenu Styling */
  .main-nav ul .sub-menu {
    position: static;
    display: flex !important;
    /* Force flex so it's vertically stacked */
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-right: 15px;
    border-right: 2px solid rgba(92, 61, 181, 0.3);
  }

  .main-nav .sub-menu a {
    padding-right: 20px !important;
    /* Visual inset for Arabic RTL */
    font-size: 14px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    border-bottom: none !important;
  }

  /* Steps Grid on Mobile (2x2) */
  .steps-grid {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .step-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .steps-line {
    display: none !important;
  }

  /* Convert 2-column grids to 1-column on Mobile */
  .calc-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.alignleft {
  float: right;
  margin-left: 1.5rem;
}

.alignright {
  float: left;
  margin-right: 1.5rem;
}

.aligncenter {
  text-align: center;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

.sticky {
  border-right: 3px solid var(--gold);
  padding-right: 12px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================================
   EXTRA CLASSES FOR INDEX.PHP
   ============================================================ */
.section-header-cnt {
  text-align: center;
  margin-bottom: 60px;
}

.section-desc-center {
  margin: 0 auto;
}

.hiw-section {
  padding: 100px 5%;
}

.hiw-header-cnt {
  max-width: 600px;
  margin-bottom: 64px;
}

.hiw-title {
  color: #fff;
}

.steps-grid-wrap {
  position: relative;
}

.steps-line-bg {
  position: absolute;
  top: 40px;
  right: 60px;
  left: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 61, 181, 0.4), transparent);
}

.step-card-cnt {
  text-align: center;
  padding: 0 15px;
}

.step-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.step-card-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.step-card-desc {
  color: #fff;
  font-size: 16px;
}

#calculator p {
  color: #000 !important;
}

#how-it-works p {
  color: #fff !important;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calc-box-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-navy);
  border: 1px solid rgba(11, 26, 46, 0.06);
}

.calc-box-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.calc-box-desc {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

.calc-result-wrap {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px;
  margin-top: 20px;
}

.calc-result-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 6px;
}

.calc-result-value {
  color: var(--gold);
  font-size: 40px;
  font-weight: 900;
}

.calc-result-note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(11, 26, 46, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(11, 26, 46, 0.06);
  border-color: rgba(92, 61, 181, 0.2);
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(92, 61, 181, 0.2);
  color: var(--navy);
}

.feature-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-section {
  background: var(--cream-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-detail-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 14px;
  color: var(--text-mid);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-navy);
}

.contact-form-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-desc {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-group {
  margin: 0;
}

.contact-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
}

.contact-form-msg {
  display: none;
  text-align: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-banner-wrap {
background: linear-gradient(135deg, rgb(42, 20, 96), rgb(61, 31, 142) 55%, rgb(92, 61, 181));
  padding: 80px 5%;
  text-align: center;
}

.cta-banner-title {
  font-size: 38px;
  font-weight: 900;
  color: rgb(255, 255, 255);
  margin-bottom: 14px;
}

.cta-banner-desc {
  color: rgb(255, 255, 255);
  font-size: 17px;
  margin-bottom: 36px;
}

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

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

.service-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ARCHIVE & CATEGORY PAGES
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 26, 46, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-navy);
}

.archive-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

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

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

.archive-card__image--placeholder a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-decoration: none;
}

.archive-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.archive-card__title {
  font-size: 20px !important;
  margin: 0 0 12px 0 !important;
}

.archive-card__title a {
  text-decoration: none;
  transition: color 0.2s;
}

.archive-card__title a:hover {
  color: var(--gold);
}

.archive-card__meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.archive-card__excerpt {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.archive-card__link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.archive-card__link:hover {
  text-decoration: underline;
}

.archive-pagination {
  margin-top: 60px;
  text-align: center;
}

.archive-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(11, 26, 46, 0.1);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.archive-pagination .prev,
.archive-pagination .next {
  width: auto;
  padding: 0 16px;
}

.archive-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px dashed rgba(11, 26, 46, 0.1);
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Data Tables ───────────────────────────────────────────────── */
.hp-table-wrap {
  overflow-x: auto;
}

.hp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--hp-r-lg);
  overflow: hidden;
  box-shadow: var(--hp-shadow-sm);
  font-size: .92rem;
}

.hp-table thead tr {
  background: var(--hp-brand);
  color: #fff;
}

.hp-table thead th {
  padding: 14px 18px;
  text-align: right;
  font-weight: 700;
  font-size: .88rem;
}

.hp-table tbody tr {
  background: var(--hp-white);
  transition: background var(--hp-ease);
}

.hp-table tbody tr:nth-child(even) {
  background: #faf9ff;
}

.hp-table tbody tr:hover {
  background: var(--hp-bg-tint);
}

.hp-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--hp-border);
  vertical-align: middle;
}

.hp-table td:first-child {
  font-weight: 700;
  color: var(--hp-brand);
}

.hp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}

.hp-badge--green {
  background: var(--hp-success-bg);
  color: var(--hp-success);
}

.hp-badge--amber {
  background: var(--hp-warn-bg);
  color: var(--hp-warn);
}

.hp-badge--purple {
  background: var(--hp-bg-tint);
  color: var(--hp-brand);
}

.hp-table__note {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--hp-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-table__note a {
  color: #3d1e8d;
  font-weight: 700;
  text-decoration: none;
}

.hp-label {
  display: inline-block;
  background: #3d1e8d;
  color: #fff;
  font-family: var(--hp-font-d);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hp-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.hp-area-link {
  background: var(--hp-white);
  border: 1.5px solid var(--hp-border);
  border-radius: var(--hp-r-md);
  padding: 16px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--hp-brand);
  font-family: var(--hp-font-d);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--hp-ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hp-area-link:hover {
  background: var(--hp-brand);
  color: rgb(255, 255, 255);
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-sm);
}

.hp-section__intro {
  font-size: 1.05rem;
  color: var(--hp-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.hp-price-note {
  background: var(--hp-warn-bg);
  border: 1.5px solid #ffe082;
  border-radius: var(--hp-r-md);
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--hp-warn);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   TIPS SECTION
   ============================================================ */
.hp-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hp-tip-group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid rgba(11, 26, 46, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hp-tip-group::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hp-tip-group:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(11, 26, 46, 0.08);
}

.hp-tip-group:hover::before {
  opacity: 1;
}

.hp-tip-group h3 {
  font-size: 22px !important;
  color: var(--navy);
  margin-bottom: 24px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-tip-group__icon {
  font-size: 28px;
  background: var(--cream);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(92, 61, 181, 0.1);
}

.hp-tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hp-tip-list li {
  position: relative;
  padding-right: 32px;
  margin-bottom: 16px;
  font-size: 16px !important;
  color: var(--text-mid);
  line-height: 1.6 !important;
}

.hp-tip-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--gold);
  font-weight: bold;
  font-size: 14px;
  background: rgba(92, 61, 181, 0.15);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 26, 46, 0.08);
  border-right: 4px solid var(--gold);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item.active {
  box-shadow: 0 8px 25px rgba(11, 26, 46, 0.06);
  border-color: var(--gold);
}

.faq-q {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

.faq-q:hover {
  background: var(--cream);
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  font-size: 26px;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s;
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-icon {
  color: var(--navy);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.faq-item.active .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 16px;
}

.faq-item.active .faq-a-inner {
  padding: 0 24px 24px;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(11, 26, 46, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-features-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(92, 61, 181, 0.12);
  border-color: rgba(92, 61, 181, 0.4);
}

.about-features-list .icon {
  background: rgba(92, 61, 181, 0.15);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
}


.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.service-card__link {
  display: none !important;
}

/* Benefits Section CSS */
.benefits-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background-color: var(--navy, #0B1A2E);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

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

.benefits-header {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

@media (min-width: 900px) {
  .benefits-header {
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
}

.benefits-sup-title {
  color: var(--gold, #5c3db5);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: block;
}

.benefits-title {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
}

.benefits-title span {
  color: var(--gold, #5c3db5);
}

.benefits-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.05rem;
}

.benefits-slider {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.benefits-slider::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .benefits-slider {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.benefit-card {
  position: relative;
  flex: 0 0 320px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  scroll-snap-align: start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(92, 61, 181, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(92, 61, 181, 0.1);
}

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

.benefit-icon {
  font-size: 2.2rem;
  color: var(--gold, #5c3db5);
  margin-bottom: 20px;
  display: block;
}

.benefit-card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.benefit-counter {
  position: absolute;
  bottom: -10px;
  left: 10px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  z-index: 1;
  user-select: none;
}

.benefits-footer {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-whatsapp-b {
  background: #25D366;
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: none;
}

.btn-whatsapp-b:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-call-b {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-call-b:hover {
  background: #fff;
  color: var(--navy) !important;
  transform: translateY(-2px);
}

/* Pricing Tables CSS */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(11, 26, 46, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(11, 26, 46, 0.06);
  z-index: 1;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(92, 61, 181, 0.15);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover .pricing-title,
.pricing-card:hover .pricing-price,
.pricing-card:hover .pricing-price span,
.pricing-card:hover .pricing-features li,
.pricing-card:hover .pricing-features li::before {
  color: var(--white);
}

.pricing-card.popular {
  border: 2px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(92, 61, 181, 0.15);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-12px);
}

.pricing-card.popular .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap;
}

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

.pricing-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: bold;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 20px;
  direction: ltr;
  display: inline-block;
}

.pricing-price span {
  font-size: 1rem;
  color: #777;
  font-weight: normal;
}

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

.pricing-features li {
  margin-bottom: 12px;
  color: #555;
  position: relative;
  padding-right: 25px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.pricing-card .btn {
  width: 100%;
  border-radius: 30px;
}
.custom-breadcrumbs {
padding: 12px 20px;
margin-bottom: 25px;
background: #f8f9fa;
border-radius: 8px;
font-size: 17px;
color: #6c757d;
direction: rtl;
display: flex;
flex-wrap: wrap;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.custom-breadcrumbs span {
margin: 0 8px;
display: flex;
align-items: center;
}