
.ng-brand {
  color: #dc3545 !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   Global Reset & Base
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   Header (Fixed, Horizontal)
   ========================= */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    min-height: 60px;
    padding: 0 2rem;
    overflow: visible;
}

/* Logo */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Buy Icon */
.buy-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 25px;
    background: rgba(220, 53, 69, 0.1);
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
}

.buy-icon:hover {
    background: rgba(220, 53, 69, 0.2);
    transform: translateY(-2px);
}

.icon-red {
    color: #dc3545 !important;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    padding-right: 1rem;
}

.nav-menu {
    display: flex !important;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 0 0 1rem;
    min-width: 0;
}

.nav-menu li {
    flex-shrink: 0;
}

/* Nav links */
.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
    transition: color 0.3s, background 0.3s;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

/* Contact link arrow */
.contact-trigger {
    position: relative;
}

.contact-trigger::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #dc3545;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Primary button (header + general) */
.btn-primary {
    background: #dc3545;
    color: white !important;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.3);
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(220, 53, 69, 0.4);
}

/* Header social icons (after Ø§Ø³ØªØ´Ø§Ø±Ø© Ù…Ø¬Ø§Ù†ÙŠØ©) */
.social-header-nav {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    margin: 0 8px 0 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-shrink: 0 !important;
    min-width: 90px;
}

.social-header-nav .social-link {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.15rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0 !important;
    transition: all 0.3s ease;
}

.social-header-nav .social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-header-nav .social-link.instagram {
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 25%, #8134AF 50%, #F58529 100%);
    color: white;
}

.social-header-nav .social-link:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 22px;
    height: 2.5px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(5px, -5px);
}

/* ==========================================================
   NIPPON-GATE HERO v3 — PROFESSIONAL (CSS ONLY)
   Replace your current "Hero Slider" block with this one
   Uses same HTML classes: .hero, .hero-slider, .slide, .slide-content...
========================================================== */

/* Hero wrapper */
.hero{
  position: relative;
  height: 92vh;
  min-height: 680px;
  overflow: hidden;
  margin-top: 80px; /* fixed header space */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 55%, #ffffff 100%);
}

/* Branded ambient glow + top stripe */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(220,53,69,0.14) 0%, transparent 48%),
    radial-gradient(circle at 86% 78%, rgba(255,107,107,0.10) 0%, transparent 55%);
  pointer-events:none;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity:.95;
  pointer-events:none;
  z-index:3;
}

/* Slider container */
.hero-slider{
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* Slides */
.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.slide.active{ opacity: 1; }

/* Background image: cinematic */
.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.05);
}

/* Dark overlay on top of image (does NOT affect content card) */
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg,
      rgba(15,17,21,0.64) 0%,
      rgba(15,17,21,0.46) 35%,
      rgba(15,17,21,0.22) 68%,
      rgba(15,17,21,0.08) 100%);
  z-index: 1;
  pointer-events:none;
}

/* Content card (glass executive) */
.slide-content{
  position: absolute;
  top: 50%;
  inset-inline-end: clamp(16px, 5vw, 56px); /* RTL-safe */
  inset-inline-start: auto;
  transform: translateY(-50%);
  width: min(560px, calc(100vw - 32px));
  max-width: 560px;
  text-align: right;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 26px;
  padding: 2.6rem 2.8rem 2.35rem;

  box-shadow:
    0 34px 95px rgba(0,0,0,0.18),
    0 14px 40px rgba(220,53,69,0.10),
    inset 0 1px 0 rgba(255,255,255,0.70);

  z-index: 5;
  animation: ngHeroCardIn .7s cubic-bezier(.25,.46,.45,.94) both;
}

/* Brand stripe inside card */
.slide-content::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:5px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity:.95;
}

/* Subtle watermark */
.slide-content::after{
  content:"NIPPON-GATE";
  position:absolute;
  top:14px;
  inset-inline-end:18px;
  font-weight: 900;
  letter-spacing: .10em;
  font-size: .78rem;
  color: rgba(220,53,69,0.18);
  pointer-events:none;
}

/* Typography */
.slide-content h1{
  margin: 0 0 0.9rem 0;
  font-size: clamp(2.0rem, 2.8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color:#0f1115;
}
.slide-content p{
  margin: 0 0 1.55rem 0;
  font-size: 1.12rem;
  line-height: 1.85;
  color:#334155;
  font-weight: 650;
}

/* Primary button upgrade (keeps your .btn-primary class) */
.slide-content .btn-primary{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-size: 1.05rem !important;
  font-weight: 850 !important;

  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
  border: none !important;

  box-shadow: 0 18px 50px rgba(220,53,69,0.38) !important;
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.slide-content .btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(220,53,69,0.50) !important;
  filter: brightness(1.03);
}

/* Coming-soon slide: keep your class but make it consistent */
.slide-content.coming-soon{
  border: 1px solid rgba(220,53,69,0.16);
  box-shadow:
    0 34px 95px rgba(0,0,0,0.18),
    0 14px 45px rgba(220,53,69,0.14),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

/* Slider controls: executive squircles */
.slider-nav{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 20;
}

.nav-arrow{
  background: rgba(255,255,255,0.92);
  color: #dc3545;
  width: 56px;
  height: 56px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 2px solid rgba(220,53,69,0.18);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);

  transition: transform .25s ease, background .25s ease, color .25s ease,
              box-shadow .25s ease, border-color .25s ease;
}
.nav-arrow:hover{
  transform: translateY(-3px);
  background: #dc3545;
  color: #fff;
  border-color: rgba(220,53,69,0.45);
  box-shadow: 0 24px 70px rgba(220,53,69,0.22);
}

/* Dots */
.dots{ display: flex; gap: 10px; }
.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.85);
  transition: transform .25s ease, background .25s ease;
}
.dot.active{
  background: #dc3545;
  transform: scale(1.25);
}

/* Progress bar */
.slide-progress{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255,255,255,0.28);
  width: 0;
}
.slide-progress::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(220,53,69,0.55), rgba(255,107,107,0.55));
  opacity: .55;
  pointer-events:none;
}

/* Animation */
@keyframes ngHeroCardIn{
  from { opacity: 0; transform: translateY(calc(-50% + 14px)) scale(.985); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* Responsive */
@media (max-width: 768px){
  .hero{ height: 90vh; min-height: 90vh; }

  .slide::before{
    background: linear-gradient(180deg,
      rgba(15,17,21,0.62) 0%,
      rgba(15,17,21,0.30) 55%,
      rgba(15,17,21,0.12) 100%);
  }

  .slide-content{
    inset-inline-start: 16px;
    inset-inline-end: 16px;
    text-align: center;
    padding: 2.2rem 1.8rem 1.9rem;
  }

  .slide-content::after{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}





/* =========================================
   Events Banner
========================================= */
.events-banner {
  position: relative;
  padding: 18px 0;
  overflow: hidden;
  user-select: none;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 55%, #dc3545 100%);
  color: #fff;
}
.events-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 40%, rgba(255,255,255,0.16) 0%, transparent 45%),
              radial-gradient(circle at 85% 65%, rgba(0,0,0,0.18) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.9;
}
.events-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}
.events-banner .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.events-banner h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
.events-banner h3 i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.92);
  color: #dc3545;
  font-size: 1.05rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.events-scroller {
  position: relative;
  overflow: hidden; /* تغيير من auto إلى hidden للحركة السلسة */
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.75);
}
.events-scroller::before,
.events-scroller::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.events-scroller::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.98), rgba(255,255,255,0));
}
.events-scroller::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.98), rgba(255,255,255,0));
}
.events-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 2px 10px;
  animation: eventsTicker 35s linear infinite;
  will-change: transform;
}
.events-scroller:hover .events-track {
  animation-play-state: paused;
}
@keyframes eventsTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% لأننا نكرر العناصر مرتين */
}
.event-item {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(248,249,250,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  text-align: right;
}
.event-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(220,53,69,0.20);
  border-color: rgba(220,53,69,0.25);
}
.event-thumb {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.event-info h4 {
  margin: 0 0 4px 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}
.event-info .event-date {
  font-size: 0.95rem;
  color: #dc3545;
  font-weight: 600;
}
/* Responsive */
@media (max-width: 768px) {
  .events-banner {
    padding: 16px 0;
  }
  .events-banner .container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .events-banner h3 {
    justify-content: center;
    text-align: center;
  }
  .event-item {
    min-width: 260px;
  }
  .events-track {
    animation-duration: 45s !important;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .event-item {
    min-width: 240px;
    padding: 12px 16px;
  }
  .events-track {
    animation-duration: 50s !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .events-track {
    animation: none !important;
  }
}

.events-track {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 2px 10px;
  animation: eventsTicker 75s linear infinite;
  will-change: transform;
}
@keyframes eventsTicker {
  0% { transform: translateX(calc(100% + 20px)); }
  100% { transform: translateX(-100%); }
}
.events-scroller {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.75);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.events-scroller::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  .events-track {
    animation-duration: 75s !important; /* تلقائياً أبطأ على الموبايل */
  }
}


/* =========================================
   NIPPON-GATE Services v2 (CSS-only override)
   Paste AFTER the current Services section CSS
========================================= */

.services{
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 55%, #ffffff 100%);
  overflow: hidden;
}

/* soft branded glow like owner/testimonials */
.services::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 25%, rgba(220,53,69,0.12) 0%, transparent 46%),
    radial-gradient(circle at 86% 70%, rgba(255,107,107,0.09) 0%, transparent 56%);
  pointer-events: none;
}

/* top stripe (same language used across your cards) */
.services::after{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity: 0.9;
  pointer-events: none;
}

/* grid: smarter auto-fit + consistent width */
.services .services-grid{
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* executive card (glass + border + inner highlight) */
.services .service-card{
  position: relative;
  overflow: hidden;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);

  padding: 2.4rem 2.1rem 2.2rem;
  text-align: center;

  box-shadow:
    0 18px 60px rgba(0,0,0,0.10),
    0 10px 30px rgba(220,53,69,0.08);

  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* top stripe inside card */
.services .service-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity: 0.95;
}

/* subtle diagonal shine layer */
.services .service-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.70), transparent 42%);
  pointer-events: none;
  opacity: 0.85;
}

.services .service-card:hover{
  transform: translateY(-10px);
  border-color: rgba(220,53,69,0.18);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.12),
    0 16px 45px rgba(220,53,69,0.14);
}

/* icon becomes a premium squircle badge instead of a circle */
.services .service-icon{
  width: 86px;
  height: 86px;

  margin: 0 auto 1.35rem;

  border-radius: 22px; /* squircle feel */
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);

  display: grid;
  place-items: center;

  box-shadow: 0 16px 45px rgba(220,53,69,0.30);
  position: relative;
  overflow: hidden;

  transition: transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .35s ease;
}

/* moving shine on icon */
.services .service-icon::before{
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}

.services .service-card:hover .service-icon{
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 24px 60px rgba(220,53,69,0.38);
}

.services .service-card:hover .service-icon::before{
  left: 140%;
}

.services .service-icon-png{
  width: 46px !important;
  height: 46px !important;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.28));
  transition: transform .25s ease, filter .25s ease;
}

.services .service-card:hover .service-icon-png{
  transform: scale(1.08);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.32));
}

/* typography */
.services .service-card h3{
  margin: 0 0 0.85rem 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: #111;
}

.services .service-card p{
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 600;
}

/* responsive */
@media (max-width: 992px){
  .services .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px){
  .services{
    padding: 95px 0;
  }
  .services .services-grid{
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 18px;
  }
  .services .service-card{
    border-radius: 22px;
    padding: 2.15rem 1.75rem 2.0rem;
  }
  .services .service-icon{
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }
  .services .service-icon-png{
    width: 42px !important;
    height: 42px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .services .service-card,
  .services .service-icon,
  .services .service-icon::before,
  .services .service-icon-png{
    transition: none !important;
  }
}

/* ==========================================
   Owner Message v3 - Executive Split Card (CSS-only)
   Works with your current HTML:
   .owner-section > .container > .owner-content
   > .owner-photo img + .owner-message (h2, p, .ai-note)
========================================== */
.owner-section{
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 55%, #ffffff 100%);
  overflow: hidden;
}

/* soft branded background */
.owner-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(220,53,69,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,107,107,0.08) 0%, transparent 55%);
  pointer-events:none;
}

/* top brand stripe like service cards */
.owner-section::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity: 0.9;
}

/* main card container */
.owner-content{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.2rem 3.2rem;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.2rem;
  align-items: center;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.10),
    0 14px 45px rgba(220,53,69,0.10);
  overflow: hidden;
}

/* subtle inner highlight */
.owner-content::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), transparent 40%);
  pointer-events:none;
}

/* photo card */
.owner-photo{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,0.18);
  border: 1px solid rgba(220,53,69,0.12);
}

.owner-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(220,53,69,0.15), transparent 55%);
  pointer-events:none;
}

.owner-photo::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
  pointer-events:none;
}

.owner-photo img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.owner-content:hover .owner-photo img{
  transform: scale(1.06);
}

/* message area */
.owner-message{
  position: relative;
  padding: 0.5rem 0.5rem;
  text-align: right; /* RTL friendly */
}

.owner-message::before{
  content:"\f10e"; /* quote-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position:absolute;
  top: -10px;
  left: 0;
  font-size: 3.2rem;
  color: rgba(220,53,69,0.12);
}

.owner-message h2{
  margin: 0 0 1.2rem 0;
  font-size: 2.35rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.02em;
  position: relative;
}

.owner-message h2::after{
  content:"";
  position:absolute;
  bottom: -10px;
  right: 0;
  width: 92px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.owner-message p{
  margin: 0 0 1.1rem 0;
  font-size: 1.12rem;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
}

/* make the “signature” paragraph pop (last paragraph before ai-note) */
.owner-message p:last-of-type{
  margin-top: 1.6rem;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(220,53,69,0.07), rgba(255,107,107,0.03));
  border-right: 5px solid rgba(220,53,69,0.25);
  color: #dc3545;
  font-weight: 800;
}

/* AI note card */
.ai-note{
  margin-top: 1.9rem;
  padding: 1.5rem 1.7rem;
  border-radius: 22px;
  background: rgba(248,249,250,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  border-right: 6px solid rgba(220,53,69,0.35);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.ai-note::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, transparent, rgba(220,53,69,0.75), transparent);
}

.ai-note p{
  margin:0;
  color:#444;
  font-size: 1.03rem;
  line-height: 1.75;
  font-weight: 600;
  text-align: right;
}

.ai-note a{
  color:#dc3545;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.ai-note a::after{
  content:"";
  position:absolute;
  bottom:0;
  right:0;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  transition: width .28s ease;
}

.ai-note a:hover::after{
  width: 100%;
}

/* Responsive */
@media (max-width: 1100px){
  .owner-content{
    grid-template-columns: 380px 1fr;
    padding: 2.8rem 2.6rem;
    gap: 2.6rem;
  }
  .owner-photo img{ height: 480px; }
}

@media (max-width: 992px){
  .owner-content{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.6rem 2.2rem;
  }
  .owner-message{
    text-align: center;
  }
  .owner-message h2::after{
    right: 50%;
    transform: translateX(50%);
  }
  .owner-message::before{
    left: 50%;
    transform: translateX(-50%);
    top: -18px;
  }
  .owner-photo img{
    height: 420px;
  }
  .ai-note p{
    text-align: center;
  }
}

@media (max-width: 480px){
  .owner-section{ padding: 90px 0; }
  .owner-content{ padding: 2.1rem 1.5rem; border-radius: 22px; }
  .owner-message h2{ font-size: 1.85rem; }
  .owner-message p{ font-size: 1.02rem; }
  .owner-photo img{ height: 360px; }
}


/* =========================
   FAQ
   ========================= */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 18% 25%, rgba(220,53,69,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,107,107,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.faq-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity: 0.9;
  pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #dc3545;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FIXED: Full height on ALL screens */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    /* MOBILE FIX: Much larger height */
    max-height: 500px; /* Increased from 200px */
    padding: 0 2.5rem 2rem;
}

/* Ensure full content shows */
.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
}

/* Mobile specific fix */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 600px !important; /* Extra room for mobile */
        padding: 0 2rem 1.8rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 700px !important; /* Even more for small screens */
        padding: 0 1.5rem 1.5rem;
    }
}
/* تصميم العنوان مطابق لباقي الأقسام */
.faq-section .section-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  position: relative;
  text-align: center;
}

/* السطر الأحمر السفلي المتدرج */
.faq-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

/* مركزة تماماً */
.faq-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================
   NIPPON-GATE Testimonials v2 - CLEAN CORPORATE FRAME
   CSS-only (keeps your existing HTML + JS)
========================================== */
.testimonials{
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle branded glow (very professional) */
.testimonials::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 25%, rgba(220,53,69,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,107,107,0.08) 0%, transparent 55%);
  pointer-events:none;
}

/* avoid affecting other sections: scope title styles */
.testimonials .section-title{
  font-size: 2.6rem;
  font-weight: 900;
  color:#111;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
  position: relative;
}

.testimonials .section-title::after{
  content:"";
  position:absolute;
  bottom:-12px;
  left:50%;
  transform:translateX(-50%);
  width:78px;
  height:4px;
  border-radius:3px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

.testimonials .section-subtitle{
  font-size: 1.15rem;
  color:#666;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-weight: 500;
}

.testimonial-slider{
  max-width: 980px;
  margin: 0 auto 3.2rem;
  position: relative;
  padding: 0 1.25rem;
}

/* base hidden state */
.testimonial{
  display:none;
  opacity:0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

/* visible state */
.testimonial.active{
  display:block;
  opacity:1;
  transform: translateY(0);
}

/* Card: “frame + stripe” style (very corporate) */
.testimonial-content{
  position: relative;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 3.2rem 3.2rem 2.4rem;
  box-shadow:
    0 28px 85px rgba(0,0,0,0.12),
    0 14px 40px rgba(220,53,69,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: center;
}

/* top stripe like your service cards */
.testimonial-content::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
}

/* quote mark watermark */
.testimonial-content::after{
  content:"\f10e"; /* quote-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position:absolute;
  top: 18px;
  right: 24px;
  font-size: 3.3rem;
  color: rgba(220,53,69,0.12);
  line-height: 1;
}

.testimonial-content p{
  margin: 0 0 2rem 0;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
  font-style: normal; /* more “corporate” than italic */
}

/* Author row: looks like verified identity chip */
.testimonial-author{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 1.1rem;
  margin-top: .25rem;
}

.testimonial-author img{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(220,53,69,0.18);
  box-shadow: 0 12px 35px rgba(0,0,0,0.14);
}

.testimonial-author h4{
  margin: 0 0 .35rem 0;
  color:#111;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-align: right;
}

.testimonial-author span{
  display:inline-block;
  color:#dc3545;
  font-weight: 800;
  font-size: .95rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.18);
}

/* Nav arrows: keep compatible with your existing .nav-arrow markup */
.testimonial-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 1.2rem;
}

.testimonial-nav .nav-arrow{
  width: 56px;
  height: 56px;
  border-radius: 18px; /* more “executive” than circles */
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(220,53,69,0.18);
  color:#dc3545;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonial-nav .nav-arrow:hover{
  transform: translateY(-3px);
  background: #dc3545;
  color:#fff;
  border-color: rgba(220,53,69,0.45);
  box-shadow: 0 22px 60px rgba(220,53,69,0.25);
}

/* Responsive */
@media (max-width: 992px){
  .testimonials{ padding: 100px 0; }
  .testimonials .section-title{ font-size: 2.25rem; }
  .testimonial-content{ padding: 2.8rem 2.4rem 2.1rem; }
}

@media (max-width: 768px){
  .testimonials{ padding: 85px 0; }
  .testimonials .section-title{ font-size: 2.05rem; }
  .testimonials .section-subtitle{ font-size: 1.08rem; }
  .testimonial-content{ border-radius: 22px; padding: 2.4rem 1.8rem 1.9rem; }
  .testimonial-content p{ font-size: 1.08rem; }
  .testimonial-author img{ width: 62px; height: 62px; }
  .testimonial-nav .nav-arrow{ width: 52px; height: 52px; border-radius: 16px; }
}

@media (max-width: 480px){
  .testimonials .section-title{ font-size: 1.9rem; }
  .testimonial-content{ padding: 2.1rem 1.5rem 1.7rem; }
  .testimonial-content::after{ font-size: 2.9rem; right: 18px; top: 16px; }
}


/* ==========================================
   NIPPON-GATE Contact Modal v5 - LUXURY CORPORATE
   (CSS ONLY - keep your HTML/JS as-is)
========================================== */
.contact-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:99999;
  font-family:'Cairo',sans-serif;
}

/* Overlay: premium + calm */
.modal-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 15%, rgba(220,53,69,0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(255,107,107,0.18) 0%, transparent 55%),
    rgba(0,0,0,0.78);
  backdrop-filter: blur(16px);
}

/* Card */
.modal-content{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:92%;
  max-width:540px;
  max-height:92vh;
  overflow:auto;

  border-radius:26px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow:
    0 40px 110px rgba(0,0,0,0.38),
    0 18px 60px rgba(220,53,69,0.14);
  border: 1px solid rgba(220,53,69,0.14);

  animation: ngModalPop .45s cubic-bezier(.25,.46,.45,.94);
}

@keyframes ngModalPop{
  from{opacity:0; transform:translate(-50%,-58%) scale(.95)}
  to{opacity:1; transform:translate(-50%,-50%) scale(1)}
}

/* Header: clean center + subtle brand stripe */
.modal-header{
  position:sticky;
  top:0;
  z-index:5;
  padding: 2rem 2.4rem 1.6rem;

  text-align:center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,1) 100%);
  border-bottom: 1px solid rgba(220,53,69,0.12);
}

.modal-header::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
}

/* Title with icon badge */
.modal-header h3{
  margin: 0;
  color:#111;
  font-weight:800;
  font-size:1.45rem;
  letter-spacing:-0.02em;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.modal-header h3 i{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  box-shadow: 0 12px 30px rgba(220,53,69,0.28);
}

/* Close button: professional square chip */
.close-modal{
  position:absolute;
  top: 18px;
  left: 18px;
  width:44px;
  height:44px;
  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(220,53,69,0.18);
  color:#dc3545;
  cursor:pointer;

  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.close-modal:hover{
  transform: translateY(-2px);
  background:#fff;
  box-shadow: 0 14px 35px rgba(220,53,69,0.18);
}

/* Form area */
.contact-form-popup{
  padding: 2.4rem 2.6rem 1.8rem;
}

.form-row{ margin-bottom: 1.35rem; }

/* Inputs: clean, thick border like premium apps */
.contact-form-popup input,
.contact-form-popup textarea{
  width:100%;
  padding: 18px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.96);
  border: 2px solid rgba(0,0,0,0.06);

  font-family:'Cairo',sans-serif;
  font-size:1.03rem;
  font-weight:600;
  color:#222;

  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
  box-sizing:border-box;
}

.contact-form-popup input::placeholder,
.contact-form-popup textarea::placeholder{
  color:#9aa0a6;
  font-weight:500;
}

.contact-form-popup input:focus,
.contact-form-popup textarea:focus{
  outline:none;
  border-color: rgba(220,53,69,0.7);
  box-shadow: 0 0 0 4px rgba(220,53,69,0.10);
  transform: translateY(-1px);
}

.contact-form-popup textarea{
  min-height: 140px;
  resize: vertical;
  line-height: 1.75;
  font-weight:500;
}

/* Checkbox row: looks like a policy card */
.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:14px;

  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(220,53,69,0.06), rgba(255,107,107,0.03));
  border: 1px solid rgba(220,53,69,0.12);
  border-right: 4px solid rgba(220,53,69,0.22);
  margin: 1.2rem 0 1.1rem;
}

.checkbox-row input[type="checkbox"]{
  width:22px;
  height:22px;
  margin: 3px 0 0 0;
  accent-color:#dc3545;
  cursor:pointer;
  flex-shrink:0;
}

.checkbox-row label{
  margin:0;
  color:#444;
  font-size:0.98rem;
  font-weight:600;
  line-height:1.65;
}

.checkbox-row label a{
  color:#dc3545 !important;
  font-weight:800;
  text-decoration:none;
}

/* Submit button: cleaner than default btn-primary */
.btn-primary.full-width{
  width:100%;
  padding: 18px 22px;
  border-radius: 22px;

  font-size: 1.12rem;
  font-weight: 800;
  font-family:'Cairo',sans-serif;

  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  border:none;

  box-shadow: 0 16px 45px rgba(220,53,69,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary.full-width:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(220,53,69,0.45);
}

/* Quick contact section: compact + premium */
.quick-contact{
  padding: 2.2rem 2.6rem 2.4rem;
  text-align:center;
  background: rgba(26,26,26,0.02);
  border-top: 1px solid rgba(220,53,69,0.12);
}

.quick-contact h4{
  margin:0 0 1.4rem;
  color:#111;
  font-size:1.15rem;
  font-weight:900;
  letter-spacing:-0.01em;
}

.quick-links{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

/* Make WhatsApp + Phone look like premium chips */
.quick-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding: 14px 18px;
  border-radius: 18px;

  text-decoration:none;
  font-family:'Cairo',sans-serif;
  font-weight:800;
  font-size: 0.98rem;

  background:#fff;
  color:#dc3545;
  border: 2px solid rgba(220,53,69,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.quick-link:hover{
  transform: translateY(-3px);
  border-color: rgba(220,53,69,0.35);
  box-shadow: 0 18px 45px rgba(220,53,69,0.18);
}

/* Keep WhatsApp branding but still premium */
.quick-link.whatsapp{
  background: linear-gradient(135deg, rgba(37,211,102,0.16), rgba(18,140,126,0.10));
  border-color: rgba(37,211,102,0.35);
  color:#128C7E;
}

.quick-link.whatsapp:hover{
  box-shadow: 0 20px 50px rgba(37,211,102,0.20);
}

/* Mobile */
@media (max-width: 768px){
  .modal-content{ width:95vw; max-width: 480px; border-radius: 22px; }
  .contact-form-popup{ padding: 2rem 2rem 1.5rem; }
  .quick-contact{ padding: 2rem; }
  .quick-links{ flex-direction: column; }
  .quick-link{ width:100%; }
}


/* =========================================
   NIPPON-GATE Footer v2 (CSS-only) ✅ MODIFIED
   Paste AFTER the current Footer CSS
========================================= */

/* Main footer shell */
.footer{
  position: relative;
  padding: 90px 0 22px;
  color: rgba(255,255,255,0.88);

  background: radial-gradient(circle at 18% 18%, rgba(220,53,69,0.22) 0%, transparent 45%),
              radial-gradient(circle at 88% 78%, rgba(255,107,107,0.14) 0%, transparent 55%),
              linear-gradient(145deg, #0f1115 0%, #15171c 55%, #0d0f13 100%);
  overflow: hidden;
}

/* Brand top stripe */
.footer::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  opacity: 0.95;
}

/* Subtle "NG" texture (very light, not distracting) */
.footer::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.05) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04) 0%, transparent 38%);
  pointer-events: none;
  opacity: 0.8;
}

/* Footer grid area */
.footer .footer-with-form{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 22px;
  align-items: start;
}

/* Turn each column into a premium glass card (no HTML changes) */
.footer .footer-links,
.footer .footer-contact,
.footer .footer-form-map{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 22px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

/* small internal top stripe on cards */
.footer .footer-links::before,
.footer .footer-contact::before,
.footer .footer-form-map::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(220,53,69,0.9), rgba(255,107,107,0.85));
  opacity: 0.85;
}

/* Titles ✅ MODIFIED: inline-block + text-align right */
.footer .footer-links h3,
.footer .footer-contact h3,
.footer .footer-form-map h3{
  margin: 8px 0 18px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;

  display: inline-block;   /* ✅ عرض الكلمة فقط */
  text-align: right;       /* ✅ RTL */
}

/* Underline like other sections */
.footer .footer-links h3::after,
.footer .footer-contact h3::after,
.footer .footer-form-map h3::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;                /* ✅ RTL-friendly: أسفل آخر حرف */
  width: 76px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  opacity: 0.95;
}

/* Licenses list */
.footer .licenses-section {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

/* License item card */
.footer .license-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;

  padding: 14px 14px;
  border-radius: 18px;

  /* Dark glassy card to match footer */
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.06) 0, transparent 55%),
    rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);

  transition: transform .25s ease,
              border-color .25s ease,
              box-shadow .25s ease;
}

.footer .license-item:hover {
  transform: translateY(-3px);
  border-color: rgba(220,53,69,0.45);
  box-shadow:
    0 20px 55px rgba(0,0,0,0.45),
    0 10px 35px rgba(220,53,69,0.22);
}

/* License icon */
.footer .license-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

/* Brand-consistent gradients */
.footer .license-icon.mci {
  background: linear-gradient(135deg, #00a651 0%, #008c44 100%);
}

.footer .license-icon.ect {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.footer .license-icon.gpc {
  background: linear-gradient(135deg, #bddb34 0%, #bddb34 100%);
}

.footer .license-icon.mrf {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Text */
.footer .license-info h4 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
}

.footer .license-info p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Ma'roof - Gold/Orange (not blue) */
.footer .license-icon.mrf.maroof {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 50%, #ef6c00 100%);
}

/* Image visible & centered */
.footer .license-icon.mrf.maroof .license-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
  border-radius: 12px;
}

/* Contact info */
.footer .contact-info p{
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 650;
}

.footer .contact-info .icon-red{
  color: #ff6b6b !important;
}

/* Social footer: premium icon chips */
.footer .social-footer{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  padding: 6px 0 0;
}

.footer .social-footer .social-link{
  width: 52px;
  height: 52px;
  border-radius: 16px; /* executive squircle */
  display: grid;
  place-items: center;
  font-size: 1.35rem;

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footer .social-footer .social-link:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  filter: brightness(1.05);
}

/* Map */
.footer .map-title {
  margin: 8px 0 16px !important;
  color: #fff !important;
  font-weight: 900;
}

.footer .map-wrapper {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  position: relative;
}

/* FORCE override iframe inline styles */
.footer .map-wrapper iframe {
  border: none !important;
  width: 100% !important;
  height: 220px !important; /* Fixed height for consistency */
  display: block !important;
  border-radius: 18px !important;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.25) !important;
}

/* Hide ugly Google text/controls */
.footer .map-wrapper iframe::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.15) 0%, 
    rgba(0,0,0,0.08) 30%, 
    transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Payment strip: make it look like a dedicated band */
.footer .payment-bottom-section{
  position: relative;
  z-index: 1;

  margin: 28px 0 10px;
  padding: 22px 0;

  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);

  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer .payment-text{
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  margin-bottom: 14px;
}

/* Payment items: cleaner chips */
.footer .payment-logos-footer{
  gap: 16px !important;
  padding: 8px 12px !important;
}

.footer .payment-logo-item{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}

.footer .payment-logo-item span{
  color: rgba(255,255,255,0.70) !important;
  font-weight: 700;
}

/* Footer bottom */
.footer .footer-bottom{
  position: relative;
  z-index: 1;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.60);
  font-weight: 650;
}

/* Responsive */
@media (max-width: 992px){
  .footer .footer-with-form{
    grid-template-columns: 1fr 1fr;
  }
  .footer .footer-form-map{
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px){
  .footer{
    padding: 70px 0 20px;
  }
  .footer .footer-with-form{
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* ✅ MODIFIED: الخط أسفل الكلمة حتى في الموبايل */
  .footer .footer-links h3::after,
  .footer .footer-contact h3::after,
  .footer .footer-form-map h3::after{
    right: 0;
    left: auto;
    transform: none;  /* ✅ NO وسط */
  }
  .footer .license-item{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer .contact-info p{
    justify-content: center;
  }
}

/* === FORCE ALL LICENSE ICONS VISIBLE === */
.footer .license-icon i {
  color: #ffffff !important;     /* Bright white */
  font-size: 1.6rem !important; /* Bigger than container */
  z-index: 2 !important;        /* Above image */
  text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important; /* Sharp outline */
}

/* 🔥 External Links TITLE ICON - داخل المربع الأزرق */
.footer .external-links h4 i {
  color: #dc3545 !important;           /* أحمر واضح */
  font-size: 1.1rem !important;        /* حجم مناسب */
  font-weight: 900 !important;         /* سميك */
  opacity: 1 !important;               /* مرئي 100% */
  margin-left: 8px !important;         /* مسافة RTL */
}

/* بديل: إذا كان ::before، اجعله يعمل */
.footer .external-links h4::before {
  content: "\f0c1" !important;         /* fa-link */
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, #dc3545, #ff6b6b) !important;
  color: white !important;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35) !important;
  margin-left: 10px !important;
  font-size: 1rem !important;
}




    /* Hero content */
    .slide-content,
    .slide-content.special {
        right: 5%;
        left: 5%;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: none;
    }
    .slide-content h1,
    .slide-content.special h1 {
        font-size: 1.8rem;
    }

    /* Services, footer layout */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-with-form {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* News banner mobile behavior */
    .news-banner {
        padding: 1rem 0;
    }
    .news-banner h3 {
        font-size: 1.5rem;
    }
    .news-track {
        animation: none;
        gap: 1.5rem;
    }
    .news-item {
        min-width: 240px;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1.5rem 2rem;
    }
    .faq-question h3 {
        font-size: 1.2rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 2rem 1.5rem;
    }

    /* Licenses */
    .license-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    .license-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    /* Modal mobile centering adjustments */
    .modal-content {
        width: 92vw;
        max-width: 400px;
        height: 85vh;
        max-height: none;
        margin: 0;
        border-radius: 16px;
    }

    /* Testimonials */
    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    /* Payment icons */
    .payment-logos-footer {
        gap: 1rem;
    }
    .payment-logo-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    .slide-content h1,
    .slide-content.special h1 {
        font-size: 1.5rem;
    }
    .btn-primary.large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Lazy images */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

/* Payment Methods - 100% VISIBLE (No Overflow EVER) */
.payment-bottom-section {
    margin: 2.5rem 0 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    overflow: visible !important;
}

.payment-section {
    text-align: center;
    overflow: visible;
}

.payment-text {
    color: #ccc;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.payment-logos-footer {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 1.8rem; /* Perfect spacing for 4 items */
    width: auto !important;
    max-width: 100%;
    padding: 0.5rem 1rem !important;
    margin: 0 auto;
    overflow: visible !important;
    flex-shrink: 0;
}

.payment-logo-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px !important; /* Smaller for perfect fit */
    max-width: 100px;
    flex-shrink: 0 !important;
    flex-grow: 0;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 6px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Standard images */
.payment-img {
    width: 90px !important;
    height: 30px !important;
    max-width: 90px !important;
    min-width: 90px !important;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.2));
}

/* Combined Visa+Mastercard */
/* Combined Visa+Mastercard - PERFECTLY CENTERED */
.combined-cards {
    display: flex !important;
    justify-content: center !important;     /* Horizontal center */
    align-items: center !important;         /* Vertical center */
    gap: 3px !important;
    width: 90px !important;
    height: 30px !important;
    border-radius: 6px;
    padding: 2px 4px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.payment-img-small {
    width: 42px !important;    /* Perfect half-size */
    height: 26px !important;
    max-width: 42px !important;
    object-fit: contain !important;
    object-position: center !important;    /* Image inside img centered */
    border-radius: 4px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    display: block;
}

/* Hover effect for small images */
.payment-logo-item.cards:hover .combined-cards {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 4px 15px rgba(220,53,69,0.4);
}

.payment-logo-item.cards:hover .payment-img-small {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(220,53,69,0.4));
}


.payment-logo-item span {
    color: #ccc;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1.1;
    padding-top: 2px;
}

.payment-logo-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(220,53,69,0.5);
}

.payment-logo-item:hover .payment-img,
.payment-logo-item:hover .combined-cards {
    filter: drop-shadow(0 5px 15px rgba(220,53,69,0.4));
}

.payment-logo-item:hover span {
    color: white;
}

/* Container padding fix */
.footer .container {
    overflow: visible !important;
}

/* Responsive - Always fits */
@media (max-width: 992px) {
    .payment-logos-footer {
        gap: 1.6rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .payment-logos-footer {
        gap: 1.4rem;
        padding: 0.3rem 0.5rem;
    }
    .payment-img {
        width: 80px !important;
        height: 27px !important;
    }
    .combined-cards {
        width: 80px !important;
        height: 27px !important;
    }
    .payment-img-small {
        width: 39px !important;
        height: 24px !important;
    }
    .payment-logo-item {
        min-width: 90px !important;
        max-width: 90px;
    }
}

@media (max-width: 480px) {
    .payment-logos-footer {
        gap: 1.2rem;
        padding: 0.2rem 0.3rem;
    }
    .payment-img {
        width: 72px !important;
        height: 25px !important;
    }
    .combined-cards {
        width: 72px !important;
        height: 25px !important;
    }
    .payment-img-small {
        width: 35px !important;
        height: 22px !important;
    }
}

/* FormSubmit Modal Fix */
.contact-form-popup {
    padding: 0 2rem 1.5rem !important;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 3px 0 0 0;
    accent-color: #dc3545;
}

.checkbox-row label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

.contact-form-popup input,
.contact-form-popup textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 1.2rem;
    box-sizing: border-box;
}

.contact-form-popup input:focus,
.contact-form-popup textarea:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

/* Services Dropdown Menu - FIXED HOVER */
.dropdown {
    position: relative;
    z-index: 1001; /* Higher than header */
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px !important;
    position: relative;
    z-index: 1002;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #dc3545;
    margin-top: 2px;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* FIXED: Larger hover area + higher z-index */
.dropdown-wrapper {
    position: relative;
    z-index: 1001;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border: 1px solid #e9ecef;
    z-index: 1003; /* Highest z-index */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Prevent dropdown from disappearing */
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.dropdown-item {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 8px;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: #dc3545 !important;
    transform: translateX(5px);
}

/* Mobile */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        margin-top: 5px;
        display: none;
    }
    
    .nav-menu.active .dropdown-menu {
        display: block !important;
    }
}

/* ================================
   NIPPON-GATE Loading Overlay v2
   CSS-only (NO HTML changes)
================================== */

/* Keep buy container priority */
.buy-container { flex-shrink: 0; position: relative; z-index: 10001; }

/* Overlay: premium light glass + branded glow (like testimonials/modals) */
.loading-overlay{
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;

  /* Light + elegant background */
  background:
    radial-gradient(circle at 18% 22%, rgba(220,53,69,0.14) 0%, transparent 48%),
    radial-gradient(circle at 82% 78%, rgba(255,107,107,0.10) 0%, transparent 55%),
    rgba(255,255,255,0.92) !important;

  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;

  /* Use grid to overlap the "card" + spinner without changing HTML */
  place-items: center !important;
  padding: 26px !important;
  box-sizing: border-box !important;
}

.loading-overlay.active{
  display: grid !important;
  animation: ngOverlayIn 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

@keyframes ngOverlayIn{
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* The “cloud” becomes the executive card container */
.loading-cloud{
  grid-area: 1 / 1 !important;
  position: relative !important;

  width: min(520px, 92vw) !important;
  height: 320px !important;

  border-radius: 28px !important;

  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.98) 100%) !important;

  border: 1px solid rgba(0,0,0,0.06) !important;

  /* Matches your corporate card shadows (testimonial/service feel) */
  box-shadow:
    0 28px 85px rgba(0,0,0,0.12),
    0 14px 40px rgba(220,53,69,0.10) !important;

  overflow: hidden !important;
  transform: translateY(0);
  animation: ngCardFloat 3.8s ease-in-out infinite !important;
}

@keyframes ngCardFloat{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Top brand stripe (re-using .cloud-body as the stripe) */
.cloud-body{
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 6px !important;
  width: 100% !important;

  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%) !important;
  border-radius: 0 !important;
  box-shadow: 0 10px 26px rgba(220,53,69,0.18) !important;
  z-index: 2 !important;
}

/* Optional subtle watermark icon inside the card (FontAwesome is already loaded) */
.loading-cloud::after{
  content: "\f0c2" !important; /* cloud icon */
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;

  position: absolute !important;
  top: 26px !important;
  right: 26px !important;

  font-size: 64px !important;
  color: rgba(220,53,69,0.10) !important;
  transform: rotate(-8deg) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Turn cloud puffs into soft decorative blobs (professional, not cartoon) */
.cloud-puff{
  position: absolute !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(220,53,69,0.18) 0%, transparent 65%) !important;
  filter: blur(1px) !important;
  opacity: 0.85 !important;
  z-index: 0 !important;
  box-shadow: none !important;
}

/* Place them like branded background accents */
.puff-1{ width: 190px !important; height: 190px !important; top: -70px !important; left: -70px !important; }
.puff-2{ width: 220px !important; height: 220px !important; bottom: -90px !important; right: -90px !important; top: auto !important; }
.puff-3{ width: 140px !important; height: 140px !important; top: 110px !important; left: -55px !important; }
.puff-4{ width: 160px !important; height: 160px !important; bottom: -55px !important; left: 110px !important; top: auto !important; }

/* Hide the tail (no longer needed in corporate card style) */
.cloud-tail{ display: none !important; }

/* Spinner layer sits on top of the card using the same grid cell */
.spinner-container{
  grid-area: 1 / 1 !important;
  position: relative !important;

  width: min(520px, 92vw) !important;
  height: 320px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  z-index: 5 !important;
  pointer-events: none !important;
}

/* Executive ring: crisp + branded gradient edge */
.spinner-ring{
  width: 86px !important;
  height: 86px !important;

  border-radius: 50% !important;
  border: 8px solid rgba(0,0,0,0.06) !important;
  border-top-color: #dc3545 !important;
  border-right-color: #ff6b6b !important;

  animation: ngSpin 1.0s linear infinite !important;

  box-shadow:
    0 18px 45px rgba(220,53,69,0.18) !important;
}

@keyframes ngSpin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Soft glow behind spinner */
.spinner-glow{
  position: absolute !important;

  width: 54px !important;
  height: 54px !important;

  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(220,53,69,0.55) 0%, transparent 68%) !important;

  animation: ngGlow 1.8s ease-in-out infinite !important;
  opacity: 0.95 !important;
}

@keyframes ngGlow{
  0%,100% { transform: scale(1); opacity: 0.75; }
  50%     { transform: scale(1.25); opacity: 1; }
}

/* Loading text: corporate (no bouncing cloud text) */
.loading-text{
  position: absolute !important;
  /* ضع النص داخل الكارت (cloud) من الأسفل */
  bottom: 26px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  font-family: "Cairo", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  letter-spacing: -0.02em !important;

  color: #111 !important;
  direction: rtl !important;
  text-align: center !important;
  white-space: nowrap !important;

  background: linear-gradient(135deg, rgba(248,249,250,0.98), rgba(255,255,255,1)) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(220,53,69,0.16) !important;
  padding: 8px 18px !important;

  box-shadow:
    0 10px 26px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;

  z-index: 6 !important;
  animation: ngTextPulse 2.4s ease-in-out infinite !important;
}


@keyframes ngTextPulse{
  0%,100% { transform: translateY(0); opacity: 1; }
  50%     { transform: translateY(-2px); opacity: 0.96; }
}

/* Mobile */
@media (max-width: 768px){
  .loading-overlay{ padding: 18px !important; }

  .loading-cloud,
  .spinner-container{
    height: 280px !important;
    border-radius: 24px !important;
  }

  .spinner-ring{ width: 78px !important; height: 78px !important; border-width: 7px !important; }
  .spinner-glow{ width: 48px !important; height: 48px !important; }

  .loading-text{
    font-size: 1.05rem !important;
    padding: 9px 14px !important;
  }
}



/* FIX: Show Buy Button on Mobile - CRITICAL */
@media (max-width: 768px) {
  .buy-container {
    display: flex !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1001 !important;
  }
  
  .buy-icon {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    border-radius: 25px !important;
    background: rgba(220, 53, 69, 0.15) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    min-width: 90px !important;
    justify-content: center !important;
  }
  
  .buy-icon i {
    font-size: 1.1rem !important;
  }
  
  .buy-icon span {
    font-size: 0.85rem !important;
  }
  
  .buy-icon:hover {
    background: rgba(220, 53, 69, 0.25) !important;
    transform: translateY(-2px) !important;
  }
  
  /* Header mobile layout adjustment */
  .header .container {
    padding: 0.5rem 1rem !important;
    gap: 1rem !important;
  }
  
  .header {
    min-height: 70px !important;
  }
}

/* Ensure buy button always visible */
@media (max-width: 480px) {
  .buy-icon {
    padding: 10px 14px !important;
    min-width: 80px !important;
    font-size: 0.8rem !important;
  }
  
  .buy-icon span {
    font-size: 0.8rem !important;
  }
}

/* ===========================================
   COMING SOON SLIDE - LEFT SIDE VERSION
   =========================================== */

/* Coming Soon Badge - LEFT SIDE */
.coming-soon-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 50px rgba(220, 53, 69, 0.5);
  animation: badgePulse 2.5s ease-in-out infinite;
  z-index: 15;
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-direction: row-reverse; /* RTL: Text first, icon after */
}

.left-badge {
  flex-direction: row-reverse;
}

.coming-soon-badge i {
  font-size: 1.2rem;
  animation: clockSpin 2s linear infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: translateX(0) scale(1);
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.5);
  }
  50% { 
    transform: translateX(-8px) scale(1.08);
    box-shadow: 0 25px 70px rgba(220, 53, 69, 0.7);
  }
}

@keyframes clockSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Coming Soon Slide Content */
.slide-content.coming-soon {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.97) 0%, 
    rgba(248, 250, 252, 0.98) 100%);
  border: 2px solid rgba(220, 53, 69, 0.25);
  box-shadow: 0 35px 100px rgba(220, 53, 69, 0.2);
  padding: 4rem 4rem 3rem 6rem; /* Extra left padding for badge */
  animation: comingSoonGlow 4s ease-in-out infinite;
  max-width: 580px;
}

@keyframes comingSoonGlow {
  0%, 100% { 
    box-shadow: 0 35px 100px rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.25);
  }
  50% { 
    box-shadow: 0 45px 130px rgba(220, 53, 69, 0.35);
    border-color: rgba(220, 53, 69, 0.45);
  }
}

.slide-content.coming-soon h1 {
  position: relative;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: none;
}

.slide-content.coming-soon h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 0; /* RTL: Right aligned */
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  border-radius: 3px;
  animation: underlineGrow 2.5s ease-in-out infinite;
}

@keyframes underlineGrow {
  0%, 100% { width: 100px; opacity: 1; }
  50% { width: 150px; opacity: 0.8; }
}

/* Coming Soon Notice */
.coming-soon-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.12), rgba(255, 107, 107, 0.12));
  color: #dc3545;
  padding: 20px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  border: 2px solid rgba(220, 53, 69, 0.25);
  backdrop-filter: blur(15px);
  animation: noticeBounce 3.5s ease-in-out infinite;
  margin-top: 25px;
  box-shadow: 0 15px 50px rgba(220, 53, 69, 0.2);
  text-align: center;
}

.coming-soon-notice i {
  font-size: 1.4rem;
  color: #dc3545;
  animation: starTwinkle 2.2s ease-in-out infinite;
}

@keyframes noticeBounce {
  0%, 100% { 
    transform: translateY(0);
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.2);
  }
  33% { transform: translateY(-5px); }
  66% { transform: translateY(-10px); }
}

@keyframes starTwinkle {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1) rotate(0deg); 
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.3) rotate(180deg); 
  }
}

/* Mobile Responsive - LEFT SIDE */
@media (max-width: 768px) {
  .coming-soon-badge {
    top: 25px;
    left: 25px;
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .slide-content.coming-soon {
    padding: 3rem 3rem 2.5rem 5rem;
    right: 5%;
    max-width: 90%;
  }
  
  .slide-content.coming-soon h1 {
    font-size: 2rem;
  }
  
  .coming-soon-notice {
    padding: 16px 28px;
    font-size: 1rem;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .coming-soon-badge {
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .slide-content.coming-soon {
    padding: 2.5rem 2.5rem 2rem 4.5rem;
  }
  
  .slide-content.coming-soon h1 {
    font-size: 1.7rem;
  }
}

/* =========================================
   استشارة مجانية - NIPPON-GATE SIGNATURE
   Perfect match for your red branding
   ========================================= */
#consultationPopup {
  position: fixed !important;
  inset: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000001 !important;
  font-family: "Cairo", sans-serif !important;
}

#consultationPopup.is-open {
  display: flex !important;
  animation: nipponEnter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 🔥 NIPPON-GATE RED OVERLAY */
#consultationPopup .consultation-popup-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: 
    radial-gradient(circle at 40% 20%, rgba(220, 53, 69, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%) !important;
  backdrop-filter: blur(20px) !important;
  animation: nipponOverlay 1s ease-out !important;
}

/* 🏯 NIPPON-GATE MAIN CARD */
#consultationPopup .consultation-popup-box {
  position: relative !important;
  width: min(540px, calc(100vw - 40px)) !important;
  max-height: calc(100vh - 40px) !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 24px !important;
  padding: 48px 36px 36px !important;
  text-align: center !important;
  box-shadow: 
    0 30px 80px rgba(220, 53, 69, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
    0 10px 40px rgba(0, 0, 0, 0.15) !important;
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  animation: nipponCard 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both !important;
  position: relative !important;
  overflow: hidden !important;
}

#consultationPopup .consultation-popup-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 5px !important;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #dc3545 20%, 
    #ff6b6b 50%, 
    #dc3545 80%, 
    transparent 100%
  ) !important;
  border-radius: 24px 24px 0 0 !important;
  animation: nipponHeader 2.5s ease-in-out infinite !important;
  box-shadow: 0 2px 12px rgba(220, 53, 69, 0.4) !important;
}

/* 🎎 NIPPON-GATE ICON */
#consultationPopup .consultation-icon {
  width: 96px !important;
  height: 96px !important;
  margin: 0 auto 28px !important;
  background: conic-gradient(
    #dc3545 0deg, 
    #ff6b6b 120deg, 
    #dc3545 240deg, 
    #ff6b6b 360deg
  ) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 20px 55px rgba(220, 53, 69, 0.45),
    inset 0 4px 12px rgba(255, 255, 255, 0.3) !important;
  animation: nipponIcon 3s ease-in-out infinite !important;
}

#consultationPopup .consultation-icon i {
  font-size: 40px !important;
  color: #fff !important;
  text-shadow: 0 4px 20px rgba(220, 53, 69, 0.6) !important;
}

/* 🗾 NIPPON-GATE TITLE */
#consultationPopup h3 {
  margin: 0 0 20px !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  letter-spacing: -0.015em !important;
  position: relative !important;
  animation: nipponTitle 2s ease-in-out infinite alternate !important;
}

#consultationPopup h3::after {
  content: '' !important;
  position: absolute !important;
  bottom: -10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 70px !important;
  height: 4px !important;
  background: linear-gradient(90deg, #dc3545, #ff6b6b, #dc3545) !important;
  border-radius: 2px !important;
  animation: nipponUnderline 2.5s ease-in-out infinite !important;
}

/* 📝 NIPPON-GATE TEXT */
#consultationPopup p {
  margin: 0 0 40px !important;
  color: #475569 !important;
  font-size: 1.12rem !important;
  line-height: 1.85 !important;
  padding: 24px 28px !important;
  background: rgba(248, 249, 250, 0.8) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(220, 53, 69, 0.1) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.08) !important;
}

/* 🚀 NIPPON-GATE BUTTONS */
#consultationPopup .consultation-buttons {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  padding: 0 20px 32px !important;
}

#consultationPopup .consultation-confirm {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 20px 48px !important;
  border-radius: 999px !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 
    0 15px 45px rgba(220, 53, 69, 0.5),
    0 5px 20px rgba(0, 0, 0, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative !important;
  overflow: hidden !important;
}

#consultationPopup .consultation-confirm::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  ) !important;
  transition: left 0.6s !important;
}

#consultationPopup .consultation-confirm:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 
    0 25px 60px rgba(220, 53, 69, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

#consultationPopup .consultation-confirm:hover::before {
  left: 100% !important;
}

#consultationPopup .consultation-cancel {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 44px !important;
  border-radius: 999px !important;
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  background: rgba(248, 249, 250, 0.9) !important;
  color: #64748b !important;
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15) !important;
}

#consultationPopup .consultation-cancel:hover {
  transform: translateY(-3px) !important;
  background: #f8f9fa !important;
  color: #dc3545 !important;
  border-color: #dc3545 !important;
  box-shadow: 
    0 15px 40px rgba(220, 53, 69, 0.3),
    inset 0 2px 8px rgba(255, 255, 255, 0.9) !important;
}

body.consultation-open {
  overflow: hidden !important;
}

/* 🎌 NIPPON-GATE ANIMATIONS */
@keyframes nipponEnter {
  0% {
    opacity: 0 !important;
    transform: scale(0.85) translateY(60px) !important;
  }
  60% {
    transform: scale(1.02) translateY(-5px) !important;
  }
  100% {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
  }
}

@keyframes nipponCard {
  0% {
    transform: translateY(50px) scale(0.95) !important;
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.2) !important;
  }
  100% {
    transform: translateY(0) scale(1) !important;
    box-shadow: 
      0 30px 80px rgba(220, 53, 69, 0.25),
      0 10px 40px rgba(0, 0, 0, 0.15) !important;
  }
}

@keyframes nipponOverlay {
  0% {
    opacity: 0 !important;
    backdrop-filter: blur(0px) !important;
  }
  100% {
    opacity: 1 !important;
    backdrop-filter: blur(20px) !important;
  }
}

@keyframes nipponHeader {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

@keyframes nipponIcon {
  0%, 100% { 
    box-shadow: 
      0 0 0 8px rgba(255, 255, 255, 0.9),
      0 20px 55px rgba(220, 53, 69, 0.45); 
  }
  50% { 
    box-shadow: 
      0 0 0 12px rgba(255, 255, 255, 0.95),
      0 25px 65px rgba(220, 53, 69, 0.55); 
  }
}

@keyframes nipponTitle {
  0% {
    text-shadow: 0 2px 12px rgba(220, 53, 69, 0.3);
    transform: translateY(0);
  }
  100% {
    text-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
    transform: translateY(-2px);
  }
}

@keyframes nipponUnderline {
  0%, 100% { width: 70px; opacity: 1; }
  50% { width: 100px; opacity: 0.8; }
}

/* 📱 NIPPON-GATE MOBILE */
@media (max-width: 480px) {
  #consultationPopup .consultation-popup-box {
    width: calc(100vw - 32px) !important;
    padding: 40px 28px 28px !important;
    margin: 16px !important;
  }
  
  #consultationPopup .consultation-buttons {
    flex-direction: column-reverse !important;
    gap: 16px !important;
  }
  
  #consultationPopup .consultation-confirm,
  #consultationPopup .consultation-cancel {
    width: 100% !important;
  }
}

/* 🎨 CALENDLY LOGO - Official Branding */
.calendly-logo {
  color: #00a4b4 !important;
  font-weight: 800 !important;
  font-size: 1.05em !important;
  position: relative !important;
  letter-spacing: -0.02em !important;
}

.calendly-logo::before {
  content: '' !important;
  position: absolute !important;
  top: -2px !important;
  left: -8px !important;
  width: 6px !important;
  height: 6px !important;
  background: #00a4b4 !important;
  border-radius: 50% !important;
  box-shadow: 
    0 2px 6px rgba(0, 164, 180, 0.4),
    3px -1px 3px rgba(0, 164, 180, 0.3) !important;
  animation: calendlyPulse 2s ease-in-out infinite !important;
}

.calendly-logo::after {
  content: '' !important;
  position: absolute !important;
  top: 2px !important;
  right: -6px !important;
  width: 4px !important;
  height: 4px !important;
  background: linear-gradient(45deg, #00a4b4, #00d4e4) !important;
  border-radius: 50% 0 50% 50% !important;
  animation: calendlyDot 1.8s ease-in-out infinite !important;
}

@keyframes calendlyPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 2px 6px rgba(0, 164, 180, 0.4); 
  }
  50% { 
    transform: scale(1.15); 
    box-shadow: 0 4px 12px rgba(0, 164, 180, 0.6); 
  }
}

@keyframes calendlyDot {
  0%, 100% { transform: translateX(0) rotate(0deg); opacity: 1; }
  50% { transform: translateX(3px) rotate(180deg); opacity: 0.7; }
}

/* =========================================
   استشارة مجانية - FIXED STATIC POSITION CSS
   ========================================= */
#calendlyConfirm {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10000001 !important;
  font-family: "Cairo", sans-serif !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

#calendlyConfirm.active {
  display: flex !important;
}

#calendlyConfirm .calendly-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  z-index: 1 !important;
  cursor: pointer !important;
  animation: overlayFade 0.4s ease-out !important;
}

#calendlyConfirm .calendly-box {
  position: relative !important;
  width: 100% !important;
  max-width: 520px !important;
  max-height: 90vh !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-radius: 24px !important;
  padding: 40px 32px !important;
  margin: 0 auto !important;
  text-align: center !important;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  z-index: 2 !important;
  opacity: 0 !important;
  transform: translateY(50px) scale(0.95) !important;
  animation: boxSlide 0.6s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both !important;
  direction: rtl !important;
  overflow-y: auto !important;
}

#calendlyConfirm.active .calendly-box {
  opacity: 1 !important;
}

#calendlyConfirm .calendly-icon {
  width: 90px !important;
  height: 90px !important;
  margin: 0 auto 24px !important;
  background: conic-gradient(
    #dc3545 0deg, 
    #ff6b6b 120deg, 
    #dc3545 240deg, 
    #ff6b6b 360deg
  ) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 20px 55px rgba(220, 53, 69, 0.45),
    inset 0 4px 12px rgba(255, 255, 255, 0.3) !important;
  animation: iconPulse 2s ease-in-out infinite !important;
}

#calendlyConfirm .calendly-icon i {
  font-size: 38px !important;
  color: #fff !important;
  text-shadow: 0 3px 15px rgba(220, 53, 69, 0.6) !important;
}

#calendlyConfirm h3 {
  margin: 0 0 18px !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  letter-spacing: -0.015em !important;
  position: relative !important;
}

#calendlyConfirm h3::after {
  content: '' !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #dc3545, #ff6b6b, #dc3545) !important;
  border-radius: 2px !important;
  animation: underlinePulse 2.5s ease-in-out infinite !important;
}

#calendlyConfirm p {
  margin: 0 0 32px !important;
  color: #475569 !important;
  font-size: 1.12rem !important;
  line-height: 1.8 !important;
  padding: 20px 24px !important;
  background: rgba(248, 249, 250, 0.9) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(220, 53, 69, 0.1) !important;
  backdrop-filter: blur(12px) !important;
}

#calendlyConfirm .calendly-buttons {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

#calendlyConfirm .calendly-confirm-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 42px !important;
  border-radius: 50px !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 
    0 15px 45px rgba(220, 53, 69, 0.5),
    inset 0 2px 8px rgba(255, 255, 255, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative !important;
  overflow: hidden !important;
}

#calendlyConfirm .calendly-confirm-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent) !important;
  transition: left 0.6s !important;
}

#calendlyConfirm .calendly-confirm-btn:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 25px 60px rgba(220, 53, 69, 0.65) !important;
}

#calendlyConfirm .calendly-confirm-btn:hover::before {
  left: 100% !important;
}

#calendlyConfirm .calendly-cancel-btn {
  padding: 16px 38px !important;
  border-radius: 50px !important;
  background: rgba(248, 249, 250, 0.9) !important;
  color: #64748b !important;
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  backdrop-filter: blur(12px) !important;
}

#calendlyConfirm .calendly-cancel-btn:hover {
  transform: translateY(-2px) !important;
  background: #f8f9fa !important;
  color: #dc3545 !important;
  border-color: #dc3545 !important;
  box-shadow: 0 12px 35px rgba(220, 53, 69, 0.25) !important;
}

#calendlyConfirm .calendly-brand {
  color: #00a4b4 !important;
  font-weight: 800 !important;
  position: relative !important;
  padding-left: 8px !important;
}

#calendlyConfirm .calendly-brand::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  transform: translateY(-50%) !important;
  width: 6px !important;
  height: 6px !important;
  background: #00a4b4 !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 164, 180, 0.4) !important;
  animation: brandDot 2s ease-in-out infinite !important;
}

body.calendly-open {
  overflow: hidden !important;
}

/* 🎯 BULLETPROOF ANIMATIONS */
@keyframes overlayFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes boxSlide {
  0% { 
    opacity: 0; 
    transform: translateY(50px) scale(0.95); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

@keyframes iconPulse {
  0%, 100% { 
    box-shadow: 0 0 0 8px rgba(255,255,255,0.9), 0 20px 55px rgba(220,53,69,0.45); 
  }
  50% { 
    box-shadow: 0 0 0 12px rgba(255,255,255,0.95), 0 25px 65px rgba(220,53,69,0.55); 
  }
}

@keyframes underlinePulse {
  0%, 100% { width: 60px; opacity: 1; }
  50% { width: 80px; opacity: 0.8; }
}

@keyframes brandDot {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.3); }
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 480px) {
  #calendlyConfirm .calendly-box {
    width: calc(100vw - 40px) !important;
    padding: 32px 24px !important;
    margin: 10px !important;
    border-radius: 20px !important;
  }
  
  #calendlyConfirm .calendly-buttons {
    flex-direction: column-reverse !important;
  }
  
  #calendlyConfirm .calendly-confirm-btn,
  #calendlyConfirm .calendly-cancel-btn {
    width: 100% !important;
  }
}

/* =========================================
   NIPPON-GATE LOADING - BULLETPROOF WORKING
   ========================================= */
#nipponLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f5f7fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  overflow: hidden;
}

#nipponLoader .loader-container {
  text-align: center;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 2px solid rgba(220, 53, 69, 0.12);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 20px;
  animation: corpSlide 0.8s ease-out forwards;
  position: relative;
}

#nipponLoader .loader-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(220, 53, 69, 0.15);
}

#nipponLoader .loader-logo {
  position: relative;
  width: 80px;
  height: 80px;
}

#nipponLoader .logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 3px solid transparent;
  border-top: 3px solid #dc3545;
  border-right: 3px solid #ff6b6b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: corpSpin 2s linear infinite;
}

#nipponLoader .logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: corpGlow 3s ease-in-out infinite;
}

#nipponLoader .loader-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2px 8px rgba(220, 53, 69, 0.2));
  animation: logoFloat 2.5s ease-in-out infinite;
}

#nipponLoader .corp-company {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.01em;
  white-space: nowrap;
  animation: corpBreathe 2.5s ease-in-out infinite;
}

#nipponLoader .corp-tagline {
  font-size: 0.85rem;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
  animation: taglineFade 2s ease-in-out infinite;
}

#nipponLoader .loader-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #2d3748;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  animation: titlePulse 2s ease-in-out infinite;
}

#nipponLoader .loader-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin: 0 0 36px;
  font-weight: 400;
  animation: subtitleWave 2.5s ease-in-out infinite;
}

#nipponLoader .loader-progress-container {
  position: relative;
  margin: 0;
}

#nipponLoader .loader-progress {
  width: 100%;
  height: 10px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(220, 53, 69, 0.15);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}

#nipponLoader .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  border-radius: 10px;
  width: 0%;
  animation: corpProgress 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  box-shadow: 
    0 0 16px rgba(220, 53, 69, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.5);
  position: relative;
}

#nipponLoader .progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 35px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9));
  animation: corpShine 1.8s ease-in-out infinite;
  border-radius: 10px;
}

#nipponLoader .progress-status {
  position: absolute;
  top: -32px;
  right: 0;
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: statusAppear 0.5s 3.6s forwards;
}

#nipponLoader .corp-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
  animation: badgeSlide 0.6s ease-out 0.3s both;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* 🎯 WORKING ANIMATIONS - NO !important */
@keyframes corpSlide {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes corpSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes corpGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-4px); }
}

@keyframes corpBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes taglineFade {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes titlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

@keyframes subtitleWave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

@keyframes corpProgress {
  0% { width: 0%; }
  25% { width: 30%; }
  50% { width: 60%; }
  75% { width: 85%; }
  100% { width: 100%; }
}

@keyframes corpShine {
  0% { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(110%) skewX(-20deg); }
}

@keyframes statusAppear {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgeSlide {
  0% { opacity: 0; transform: translateX(-20px) scale(0.8); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* 📱 MOBILE */
@media (max-width: 480px) {
  #nipponLoader .loader-container {
    padding: 48px 32px;
    margin: 16px;
    border-radius: 16px;
  }
}

/* =========================
   NIPPON-GATE Timeline - CAIRO FONT
========================= */
.ng-timeline{
  padding: 110px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  font-family: 'Cairo', sans-serif;
}

.ng-timeline-head{ text-align:center; margin-bottom: 3.2rem; }
.ng-timeline-subtitle{
  margin: 0.75rem auto 0;
  max-width: 820px;
  color:#666;
  font-size: 1.08rem;
  line-height: 1.7;
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
}

.ng-timeline-shell{
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
}

/* Rail on the right (RTL-friendly) */
.ng-rail{
  position:absolute;
  top: 0;
  right: 26px;
  bottom: 0;
  width: 10px;
  border-radius: 10px;
  background: rgba(220, 53, 69, 0.14);
  box-shadow: inset 0 0 0 1px rgba(220,53,69,0.08);
}
.ng-rail-fill{
  position:absolute;
  top:0; right:0; left:0;
  height: 0%;
  border-radius: 10px;
  background: linear-gradient(180deg, #dc3545 0%, #ff6b6b 100%);
  transition: height .6s cubic-bezier(.25,.46,.45,.94);
}

.ng-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.ng-step{
  position: relative;
  padding-right: 72px;
}

.ng-step-btn{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 20px 22px 18px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  column-gap: 14px;
  text-align: right;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  font-family: 'Cairo', sans-serif;
}

.ng-step-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  border-color: rgba(220,53,69,0.25);
}

.ng-dot{
  position:absolute;
  right: 18px;
  top: 26px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(220,53,69,0.35);
  box-shadow: 0 10px 26px rgba(220,53,69,0.25);
}

.ng-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  box-shadow: 0 10px 26px rgba(220,53,69,0.28);
  font-size: 1.1rem;
}

.ng-title{
  font-weight: 700;
  color: #111;
  font-size: 1.12rem;
  line-height: 1.3;
  font-family: 'Cairo', sans-serif;
}

.ng-meta{
  font-weight: 600;
  color: #dc3545;
  font-size: 0.95rem;
  white-space: nowrap;
  font-family: 'Cairo', sans-serif;
}

/* Expand panel */
.ng-panel{
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .35s ease;
  background: linear-gradient(135deg, rgba(220,53,69,0.06), rgba(255,107,107,0.05));
  border: 1px solid rgba(220,53,69,0.10);
  font-family: 'Cairo', sans-serif;
}

.ng-panel p{ 
  margin: 16px 0 10px; 
  color:#333; 
  line-height:1.75; 
  font-weight: 400;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
}
.ng-panel ul{ 
  margin: 0 0 16px; 
  padding: 0 18px 0 0; 
  color:#444; 
  font-family: 'Cairo', sans-serif;
}
.ng-panel li{ 
  margin: 6px 0; 
  font-weight: 400;
  font-size: 0.97rem;
}

/* Active styling */
.ng-step.is-active .ng-dot{
  border-color: #dc3545;
  box-shadow: 0 0 0 8px rgba(220,53,69,0.18), 0 10px 26px rgba(220,53,69,0.22);
}
.ng-step.is-active .ng-step-btn{
  border-color: rgba(220,53,69,0.28);
  box-shadow: 0 18px 70px rgba(220,53,69,0.16);
}
.ng-step.is-open .ng-panel{
  max-height: 420px;
  padding: 16px 18px;
}

/* CTA */
.ng-timeline-cta{
  display:flex;
  gap: 12px;
  justify-content:center;
  margin-top: 34px;
  flex-wrap: wrap;
}

.ng-ghost-btn{
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid rgba(220,53,69,0.25);
  color: #dc3545;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  background: rgba(255,255,255,0.9);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
}
.ng-ghost-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(220,53,69,0.45);
  box-shadow: 0 12px 40px rgba(220,53,69,0.18);
  background: rgba(255,255,255,1);
}

/* Mobile */
@media (max-width: 768px){
  .ng-rail{ right: 16px; }
  .ng-step{ padding-right: 56px; }
  .ng-step-btn{ 
    grid-template-columns: 40px 1fr; 
    row-gap: 8px; 
    padding: 18px 20px 16px;
    font-size: 0.96rem;
  }
  .ng-title{ font-size: 1.05rem; }
  .ng-meta{ grid-column: 2; justify-self: start; font-size: 0.92rem; }
  .ng-dot{ right: 12px; top: 22px; }
  .ng-panel p{ font-size: 0.98rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .ng-step-btn, .ng-rail-fill, .ng-panel { transition: none !important; }
}

/* FORCE News ticker animation on MOBILE (must be LAST in CSS) */
@media (max-width: 768px){
  .news-banner .news-track{
    animation: ngTicker 42s linear infinite !important; /* re-enable */
  }
}

@media (max-width: 480px){
  .news-banner .news-track{
    animation: ngTicker 48s linear infinite !important;
  }
}

/* keep the keyframes available (safe even if already defined) */
@keyframes ngTicker{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* =========================================
   Footer social icons = Header style (CSS-only)
   Paste at END of style.css
========================================= */

/* Container matches header exactly */
.footer .social-footer{
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 10px !important;
  margin: 12px 0 0 0 !important; /* slight top margin */

  background: rgba(255,255,255,0.08) !important;
  border-radius: 22px !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20) !important;

  flex-shrink: 0 !important;
  min-width: 90px !important;
  justify-content: center !important;
}

/* Icons match header exactly */
.footer .social-footer .social-link{
  width: 36px !important;
  height: 36px !important;
  font-size: 1.15rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

/* WhatsApp = Header WhatsApp */
.footer .social-footer .social-link.whatsapp{
  background: #25D366 !important;
  color: white !important;
}

/* Instagram = Header Instagram */
.footer .social-footer .social-link.instagram{
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 25%, #8134AF 50%, #F58529 100%) !important;
  color: white !important;
}

/* Hover matches header exactly */
.footer .social-footer .social-link:hover{
  transform: scale(1.15) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5) !important; /* WhatsApp shadow */
}

.footer .social-footer .social-link.instagram:hover{
  box-shadow: 0 6px 20px rgba(245,133,41,0.5) !important; /* Instagram shadow */
}

/* Mobile: keep compact */
@media (max-width: 768px){
  .footer .social-footer{
    margin: 10px 0 0 0 !important;
    min-width: 84px !important;
  }
  .footer .social-footer .social-link{
    width: 34px !important;
    height: 34px !important;
  }
}

/* GPC معروف Image Icon (perfect fit) */
.license-icon.gpc .license-img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: inherit !important; /* matches icon shape */
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)) !important;
  transition: transform .25s ease, filter .25s ease !important;
}

.license-icon.gpc:hover .license-img{
  transform: scale(1.08) !important;
  filter: drop-shadow(0 6px 20px rgba(220,53,69,0.3)) !important;
}

/* Hide FontAwesome if any remains */
.license-icon.gpc i{
  display: none !important;
}

/* MOBILE HEADER / NAV FIX — paste at the very end of style.css */
@media (max-width: 768px) {

  /* Show hamburger on mobile */
  .nav-toggle {
    display: flex !important;
    order: 2;
  }

  /* Keep logo + buy visible and stable */
  .logo { order: 1; }
  .buy-container { order: 3; }

  /* Stop the desktop nav layout rules from squeezing things */
  .nav {
    flex: 0 0 auto !important;
    padding-right: 0 !important;
  }

  /* Hide menu by default on mobile (override your display:flex !important) */
  #navMenu.nav-menu {
    display: none !important;

    position: fixed;
    top: 80px;              /* adjust if header height differs */
    left: 0;
    right: 0;

    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  /* Show menu only when JS adds .active */
  #navMenu.nav-menu.active {
    display: flex !important;
  }
}

/* ================= NIPPON-GATE GEMINI CHAT - EXECUTIVE DESIGN ================= */

/* متغيرات مطابقة لتصميمك */
:root {
  --ng-red: #dc3545;
  --ng-red-2: #ff6b6b;
  --ng-ink: #0f172a;
  --ng-muted: #64748b;
  --ng-line: rgba(15, 23, 42, .10);
  --ng-card: rgba(255,255,255,.78);
  --ng-card-2: rgba(255,255,255,.92);
  --ng-shadow: 0 28px 90px rgba(0,0,0,.35);
  --ng-shadow-soft: 0 14px 45px rgba(0,0,0,.18);
}

/* الـ Widget ككل */
.puter-chat-root {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 2147483647;
  font-family: 'Cairo', sans-serif;
  filter: drop-shadow(0 20px 60px rgba(220,53,69,.18));
}

/* ✅ زر التبديل - مطابق لتصميمك بالضبط */
.puter-toggle {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.35);
  cursor: pointer;
  background: linear-gradient(135deg, var(--ng-red) 0%, var(--ng-red-2) 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 18px 55px rgba(220,53,69,.45);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: puterBtnBreath 3.2s ease-in-out infinite;
}

/* تأثير ضوء متحرك */
.puter-toggle::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -120px;
  width: 90px;
  height: 160px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .7s ease;
}

.puter-toggle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 75px rgba(220,53,69,.55);
  filter: saturate(1.05);
}

.puter-toggle:hover::before {
  left: 140px;
}

@keyframes puterBtnBreath {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* ✅ الـ Panel - Glass Executive */
.puter-panel {
  position: absolute;
  bottom: 82px;
  right: 0;
  width: 390px;
  max-height: 620px;
  border-radius: 26px;
  background: var(--ng-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: var(--ng-shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.puter-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: puterPanelPop .55s cubic-bezier(.25,.46,.45,.94) both;
}

/* خط أعلى اللون الأحمر */
.puter-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ng-red), var(--ng-red-2), var(--ng-red));
  opacity: .95;
  z-index: 2;
}

/* خلفية داخلية ناعمة */
.puter-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(220,53,69,.20) 0%, transparent 52%),
              radial-gradient(circle at 88% 70%, rgba(255,107,107,.14) 0%, transparent 55%),
              radial-gradient(circle at 50% 110%, rgba(15,23,42,.10) 0%, transparent 55%);
  pointer-events: none;
  opacity: .9;
  z-index: 0;
}

@keyframes puterPanelPop {
  0% { filter: blur(.2px); }
  100% { filter: blur(0); }
}

/* ✅ Header */
.puter-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(220,53,69,.95) 0%, rgba(255,107,107,.95) 100%);
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.puter-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.puter-title strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.puter-sub {
  font-size: 12px;
  opacity: .95;
}

/* زر الإغلاق */
.puter-close {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.puter-close:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.24);
}

/* ✅ منطقة الرسائل */
.puter-messages {
  position: relative;
  z-index: 2;
  height: 360px;
  overflow: auto;
  padding: 16px;
  background: linear-gradient(180deg, rgba(250,251,252,.85) 0%, rgba(248,249,250,.92) 100%);
}

/* شريط التمرير أنيق */
.puter-messages::-webkit-scrollbar {
  width: 10px;
}

.puter-messages::-webkit-scrollbar-track {
  background: transparent;
}

.puter-messages::-webkit-scrollbar-thumb {
  background: rgba(220,53,69,.3);
  border-radius: 5px;
}

/* صفوف الرسائل */
.puter-msg {
  display: flex;
  margin: 10px 0;
  animation: puterMsgIn .22s ease both;
}

.puter-msg.user {
  justify-content: flex-end;
}

.puter-msg.ai {
  justify-content: flex-start;
}

@keyframes puterMsgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* فقاعات الرسائل */
.puter-bubble {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.75;
  font-size: 14px;
  color: var(--ng-ink);
  background: var(--ng-card-2);
  border: 1px solid var(--ng-line);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  position: relative;
}

/* فقاعة الـ AI */
.puter-msg.ai .puter-bubble {
  border-bottom-right-radius: 8px;
}

.puter-msg.ai .puter-bubble::before {
  content: '';
  position: absolute;
  right: auto;
  left: -6px;
  top: 14px;
  width: 12px;
  height: 12px;
  background: var(--ng-card-2);
  border-left: 1px solid var(--ng-line);
  border-bottom: 1px solid var(--ng-line);
  transform: rotate(45deg);
}

/* فقاعة المستخدم */
.puter-msg.user .puter-bubble {
  background: linear-gradient(135deg, var(--ng-red) 0%, var(--ng-red-2) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(220,53,69,.28);
  border-bottom-left-radius: 8px;
}

.puter-msg.user .puter-bubble::before {
  content: '';
  position: absolute;
  left: auto;
  right: -6px;
  top: 14px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--ng-red) 0%, var(--ng-red-2) 100%);
  transform: rotate(45deg);
}

/* ✅ شريط الإدخال */
.puter-inputbar {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 14px 14px 16px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--ng-line);
}

.puter-inputbar input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: 2px solid var(--ng-line);
  background: rgba(255,255,255,.95);
  outline: none;
  font-weight: 650;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  font-family: 'Cairo', sans-serif;
}

.puter-inputbar input:focus {
  border-color: rgba(220,53,69,.55);
  box-shadow: 0 0 0 4px rgba(220,53,69,.12);
  transform: translateY(-1px);
}

.puter-inputbar input::placeholder {
  color: var(--ng-muted);
  font-weight: 500;
}

/* زر الإرسال */
.puter-send {
  width: 54px;
  height: 44px;
  border-radius: 16px;
  border: 0;
  background: linear-gradient(135deg, var(--ng-red) 0%, var(--ng-red-2) 100%);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(220,53,69,.30);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.puter-send:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 20px 45px rgba(220,53,69,.40);
}

.puter-send:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* زر واتساب احتياطي */
.puter-wp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(37,211,102,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.puter-wp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
  box-shadow: 0 20px 45px rgba(37,211,102,.38);
}

/* ✅ Responsive */
@media (max-width: 480px) {
  .puter-chat-root {
    right: 14px;
    bottom: 14px;
  }
  
  .puter-panel {
    width: 92vw;
    max-width: 420px;
  }
  
  .puter-messages {
    height: 320px;
  }
}

/* ✅ Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .puter-toggle, .puter-panel, .puter-msg {
    animation: none !important;
    transition: none !important;
  }
}
/* ================= GEMINI CHAT BUTTON - NIPPON-GATE FIX ================= */

/* إصلاح فوري للزر الأصلي */
#geminiSend,
.geminiSend,
.puter-send {
  width: 54px !important;
  height: 44px !important;
  min-width: 54px !important;
  border-radius: 16px !important;
  border: 0 !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 14px 35px rgba(220,53,69,.30) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease !important;
  flex-shrink: 0 !important;
}

#geminiSend:hover,
#geminiSend:focus,
.geminiSend:hover,
.geminiSend:focus,
.puter-send:hover,
.puter-send:focus {
  transform: translateY(-2px) scale(1.02) !important;
  filter: brightness(1.03) !important;
  box-shadow: 0 20px 45px rgba(220,53,69,.40) !important;
}

#geminiSend:disabled,
.geminiSend:disabled,
.puter-send:disabled {
  opacity: .65 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: 0 8px 20px rgba(220,53,69,.20) !important;
}

/* تأثير ضوء للزر */
#geminiSend::before,
.geminiSend::before,
.puter-send::before {
  content: '' !important;
  position: absolute !important;
  top: -20px !important;
  left: -80px !important;
  width: 80px !important;
  height: 140px !important;
  transform: skewX(-18deg) !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent) !important;
  transition: left .6s ease !important;
  z-index: 0 !important;
}

#geminiSend:hover::before,
.geminiSend:hover::before,
.puter-send:hover::before {
  left: 120px !important;
}

/* تأكيد الـ input bar */
#geminiForm,
.geminiForm {
  display: flex !important;
  gap: 10px !important;
  padding: 14px 14px 16px !important;
  background: rgba(255,255,255,.92) !important;
  border-top: 1px solid rgba(15,23,42,.10) !important;
}

#geminiInput,
.geminiInput {
  flex: 1 !important;
  padding: 12px 14px !important;
  border-radius: 999px !important;
  border: 2px solid rgba(15,23,42,.10) !important;
  background: rgba(255,255,255,.95) !important;
  outline: none !important;
  font-weight: 650 !important;
  font-family: 'Cairo', sans-serif !important;
  transition: all .2s ease !important;
}

#geminiInput:focus,
.geminiInput:focus {
  border-color: rgba(220,53,69,.55) !important;
  box-shadow: 0 0 0 4px rgba(220,53,69,.12) !important;
  transform: translateY(-1px) !important;
}

/* ✅ Mobile */
@media (max-width: 480px) {
  #geminiSend,
  .geminiSend,
  .puter-send {
    width: 48px !important;
    height: 40px !important;
    min-width: 48px !important;
  }
}

/* ================================
   External Links (ALT Design) v2
   Works with same HTML + tooltip
================================ */

/* Container: looks like a compact inner card under the map */
.footer .external-links{
    margin-top: 18px;
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: radial-gradient(circle at 18% 20%, rgba(220,53,69,0.18) 0%, transparent 48%),
                radial-gradient(circle at 85% 85%, rgba(255,107,107,0.12) 0%, transparent 55%),
                rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 18px 55px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

/* small animated brand stripe */
.footer .external-links::before{
    content:"";
    position:absolute;
    top:0;
    inset-inline-start:0;
    inset-inline-end:0;
    height:4px;
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
    opacity: 0.95;
}

/* Title with link icon */
.footer .external-links h4{
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer .external-links h4::before{
    content: "\f0c1"; /* fa-link */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(220,53,69,0.95), rgba(255,107,107,0.95));
    box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}

/* list layout */
.footer .external-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

/* Link card: more “license-item-like” premium row */
.footer .external-links a{
    position: relative; /* needed for tooltip */
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;

    padding: 12px 12px;
    border-radius: 16px;

    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08) 0%, transparent 55%),
                rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 40px rgba(0,0,0,0.30);

    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 750;
    font-size: 0.98rem;

    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* Right-side accent “edge” (RTL-friendly) */
.footer .external-links a{
    border-right: 4px solid rgba(220,53,69,0.22);
}

/* Icon becomes a squircle chip */
.footer .external-links a i{
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;

    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 1rem;

    box-shadow: 0 14px 35px rgba(220,53,69,0.22), 0 12px 34px rgba(0,0,0,0.35);
    transform: translateY(0);
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

/* Hover interaction: more “executive” */
.footer .external-links a:hover{
    transform: translateY(-4px);
    border-color: rgba(220,53,69,0.55);
    border-right-color: rgba(220,53,69,0.70);
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.10) 0%, transparent 55%),
                rgba(220,53,69,0.18);
    box-shadow: 0 22px 70px rgba(0,0,0,0.42), 0 14px 40px rgba(220,53,69,0.12);
}

.footer .external-links a:hover i{
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.03);
    box-shadow: 0 18px 50px rgba(220,53,69,0.28), 0 14px 40px rgba(0,0,0,0.40);
}

/* Keyboard accessibility */
.footer .external-links a:focus-visible{
    outline: none;
    border-color: rgba(255,107,107,0.85);
    box-shadow: 0 0 0 4px rgba(220,53,69,0.16), 0 22px 70px rgba(0,0,0,0.42);
}

/* ======================
   Tooltip (balloon)
   Uses data-tooltip attr
====================== */
.footer .external-links a::after{
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    inset-inline-end: 0;

    max-width: 290px;
    margin-bottom: 10px;
    padding: 10px 12px;

    border-radius: 14px;
    background: rgba(15,17,21,0.98);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 55px rgba(0,0,0,0.60);

    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    line-height: 1.65;
    font-weight: 600;
    text-align: right;
    white-space: normal;

    opacity: 0;
    transform: translateY(8px) scale(0.99);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 6;
}

/* Tooltip arrow */
.footer .external-links a::before{
    content: "";
    position: absolute;
    bottom: 100%;
    inset-inline-end: 24px;

    width: 12px;
    height: 12px;
    background: rgba(15,17,21,0.98);

    border-right: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);

    transform: translateY(6px) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 5;
}

.footer .external-links a:hover::after,
.footer .external-links a:hover::before{
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile: keep clean (no tooltip popups) */
@media (max-width: 768px){
    .footer .external-links{
        margin-top: 14px;
        padding: 14px 12px;
    }

    .footer .external-links a{
        grid-template-columns: 40px 1fr;
        padding: 11px 11px;
        font-size: 0.95rem;
    }

    .footer .external-links a i{
        width: 40px;
        height: 40px;
        border-radius: 15px;
    }

    .footer .external-links a::after,
    .footer .external-links a::before{
        display: none;
    }
}


/* NIPPON-GATE Scholarships & Exams - SwiperJS */

.ng-scholarships{
  position:relative;
  padding:120px 0;
  background:linear-gradient(135deg,#ffffff 0%,#f8f9fa 55%,#ffffff 100%);
  overflow:hidden;
}

.ng-scholarships::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 16% 24%, rgba(220,53,69,.10) 0%, transparent 46%),
    radial-gradient(circle at 84% 72%, rgba(255,107,107,.08) 0%, transparent 56%);
  pointer-events:none;
}

.ng-scholarships::after{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg,#dc3545 0%,#ff6b6b 50%,#dc3545 100%);
  opacity:.95;
}

.ng-sch-head{
  text-align:center;
  margin-bottom:2.4rem;
  position:relative;
  z-index:1;
}

.ng-sch-head .section-title{
  font-size:2.45rem;
  font-weight:900;
  color:#111827;
  letter-spacing:-0.02em;
}

.ng-sch-head .section-title::after{
  content:"";
  display:block;
  width:92px;
  height:4px;
  margin:12px auto 0;
  border-radius:3px;
  background:linear-gradient(90deg,#dc3545,#ff6b6b);
}

.ng-sch-subtitle{
  max-width:860px;
  margin:.7rem auto 0;
  color:#4b5563;
  font-size:1.05rem;
  line-height:1.9;
  font-weight:500;
}

/* Shell */
.ng-sch-shell{
  position:relative;
  z-index:1;
  margin-top:1.8rem;
  padding:18px 16px 24px;
  border-radius:26px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 26px 85px rgba(0,0,0,.12), 0 14px 40px rgba(220,53,69,.10);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

/* Toolbar */
.ng-sch-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.ng-sch-label{
  font-size:.98rem;
  font-weight:800;
  color:#111827;
}

.ng-sch-nav{
  display:flex;
  align-items:center;
  gap:8px;
}

.ng-sch-arrow{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(220,53,69,.35);
  background:linear-gradient(135deg,#ffffff,#f8f9fa);
  color:#dc3545;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.10);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.ng-sch-arrow:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#dc3545,#ff6b6b);
  color:#ffffff;
  box-shadow:0 18px 45px rgba(220,53,69,.35);
}

.ng-sch-arrow i{
  font-size:.9rem;
}

/* Swiper Container */
.ng-sch-swiper{
  padding:12px 4px 26px;
}

/* Card */
.ng-sch-card{
  background:rgba(255,255,255,.98);
  border-radius:24px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 60px rgba(0,0,0,.08), 0 10px 30px rgba(220,53,69,.08);
  display:flex;
  flex-direction:column;
  min-height:300px;
  padding:18px 18px 16px;
  text-align:right;
  position:relative;
  overflow:hidden;
}

.ng-sch-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg,#dc3545 0%,#ff6b6b 50%,#dc3545 100%);
  opacity:.96;
}

/* Card header */
.ng-sch-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.ng-sch-tag{
  padding:6px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.03em;
  border:1px solid rgba(0,0,0,.06);
}

.ng-sch-tag.exam{
  background:rgba(59,130,246,.10);
  border-color:rgba(59,130,246,.25);
  color:#1d4ed8;
}

.ng-sch-tag.scholarship{
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.28);
  color:#047857;
}

.ng-sch-tag.guide{
  background:rgba(251,191,36,.15);
  border-color:rgba(251,191,36,.35);
  color:#92400e;
}

.ng-sch-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:14px;
  background:rgba(220,53,69,.06);
  border:1px solid rgba(220,53,69,.18);
  color:#111827;
  font-weight:800;
  font-size:.9rem;
}

.ng-sch-chip i{ color:#dc3545; }

/* Body */
.ng-sch-card-body h3{
  margin:4px 0 8px;
  font-size:1.15rem;
  font-weight:900;
  color:#111827;
  line-height:1.4;
}

.ng-sch-card-body p{
  margin:0 0 10px;
  color:#374151;
  font-size:.98rem;
  line-height:1.9;
  font-weight:500;
}

.ng-sch-points{
  margin:0;
  padding:0 18px 0 0;
  list-style:disc;
  color:#6b7280;
  font-size:.9rem;
  line-height:1.75;
  font-weight:600;
}

/* Footer */
.ng-sch-card-footer{
  margin-top:auto;
  padding-top:10px;
  display:flex;
  justify-content:flex-start;
}

.ng-sch-btn{
  padding:10px 18px !important;
  font-size:.95rem !important;
  border-radius:999px !important;
}

/* Pagination */
.ng-sch-pagination{
  position:static !important;
  margin-top:10px;
  text-align:center;
}

.ng-sch-pagination .swiper-pagination-bullet{
  width:9px;
  height:9px;
  background:rgba(148,163,184,.65);
  opacity:1;
  margin:0 4px !important;
  transition:transform .2s ease, background .2s ease;
}

.ng-sch-pagination .swiper-pagination-bullet-active{
  background:#dc3545;
  transform:scale(1.25);
}

/* Responsive */
@media (max-width: 768px){
  .ng-scholarships{ padding:95px 0; }
  .ng-sch-shell{ padding:14px 10px 20px; }
  .ng-sch-card{ min-height:280px; }
}


/* شارة "قريباً" على البطاقة */
.ng-sch-card{
  position:relative;
}

.ng-sch-soon-badge{
  position:absolute;
  top:14px;
  left:14px;
  padding:6px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#fbbf24,#f97316);
  color:#111827;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 8px 22px rgba(249,115,22,.45);
}

/* حالة البطاقة غير الجاهزة */
.ng-sch-card.is-disabled{
  opacity:.96;
}

.ng-sch-btn.ng-btn-disabled{
  background:linear-gradient(135deg,#e5e7eb,#d1d5db) !important;
  color:#6b7280 !important;
  border:none !important;
  cursor:not-allowed !important;
  box-shadow:none !important;
}

/* شارة عاجلة للتقديم المفتوح */
.ng-sch-urgent-badge{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#10b981,#059669);
  color:#ffffff;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow:0 8px 22px rgba(16,185,129,.45);
  z-index:2;
}


/* =========================================
   NIPPON-GATE FAQ MORE MODAL - FINAL VERSION
   ======================================== */

/* ===== 1. الزر الرئيسي ===== */
.faq-more-wrapper {
  margin-top: 28px;
  position: relative;
  display: block;
}

.ng-faq-more-btn {
  position: relative;
  width: 100%;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 53, 69, 0.18);
  border-radius: 28px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12), 
    0 10px 30px rgba(220, 53, 69, 0.15);
  text-align: center;
  line-height: 1.4;
}

.ng-faq-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 50%, #dc3545 100%);
  border-radius: 28px 28px 0 0;
}

.ng-faq-more-btn:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.18), 
    0 16px 45px rgba(220, 53, 69, 0.25);
  border-color: rgba(220, 53, 69, 0.35);
}

.ng-faq-more-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.ng-faq-more-btn:hover .ng-chevron {
  transform: rotate(180deg);
}

/* ===== 2. النافذة المنبثقة ===== */
.ng-faq-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  font-family: 'Cairo', sans-serif;
  isolation: isolate;
}

.ng-faq-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* الخلفية الشفافة */
.ng-modal-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.18) 0%, transparent 50%),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  animation: ngOverlayFadeIn 0.4s ease-out;
  border-radius: 16px;
}

@keyframes ngOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* الكارت الرئيسي */
.ng-modal-content {
  position: relative;
  width: clamp(680px, 90vw, 1050px);
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 50px 120px rgba(0, 0, 0, 0.3),
    0 25px 70px rgba(220, 53, 69, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  animation: ngCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

@keyframes ngCardPop {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== 3. FAQ Accordion - إجابات كاملة + مسافة مثالية ===== */
.faq-item {
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.faq-question h3 {
  font-size: 1.3rem;
  color: #000;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: #dc3545;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ✅ حالة الإغلاق */
.faq-item:not(.active) .faq-answer {
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
}

/* ✅ حالة الفتح - إجابة كاملة + مسافة مثالية */
.faq-item.active .faq-answer,
.ng-faq-more-container .faq-item.active .faq-answer {
  max-height: none !important;
  height: auto !important;
  opacity: 1 !important;
  overflow: visible !important;
  padding: 2.5rem !important; /* ✅ مسافة مثالية */
  transition: padding 0.4s ease !important;
}

/* ✅ تنسيق النص */
.faq-answer p {
  margin: 0 0 1.2rem 0 !important; /* ✅ مسافة بين الفقرات */
  padding: 0 !important;
  line-height: 1.85 !important;
  color: #555;
  font-size: 1.05rem;
}

/* ===== 4. Responsive Mobile ===== */
@media (max-width: 768px) {
  .ng-modal-content {
    width: 95vw;
    border-radius: 24px;
  }
  
  .faq-question {
    padding: 1.5rem 2rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 2rem !important;
  }
  
  .faq-answer p {
    margin-bottom: 1rem !important;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.8rem !important;
  }
}


/* ===== 5. Modal Scrollable ===== */
.ng-faq-modal .ng-modal-content {
  max-height: 92vh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ===== الهيدر ===== */
.ng-modal-header {
  position: relative;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.98) 0%, rgba(255, 107, 107, 0.98) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.ng-header-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #dc3545 20%, #ff6b6b 50%, #dc3545 80%, transparent 100%);
  animation: ngStripeGlow 4s ease-in-out infinite;
}

@keyframes ngStripeGlow {
  0%, 100% { transform: scaleX(0); transform-origin: right; }
  50% { transform: scaleX(1); transform-origin: center; }
}

.ng-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ng-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.ng-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(16px);
  font-size: 1.15rem;
}

.ng-close-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
}

/* ===== محتوى الأسئلة ===== */
.ng-faq-more-container {
  flex: 1;
  min-height: 350px;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 40px 48px;
  scrollbar-width: thin;
  scrollbar-color: rgba(220, 53, 69, 0.5) rgba(248, 250, 252, 0.6);
}

/* Scrollbar مخصص */
.ng-faq-more-container::-webkit-scrollbar {
  width: 10px;
}
.ng-faq-more-container::-webkit-scrollbar-track {
  background: rgba(248, 250, 252, 0.6);
  border-radius: 12px;
}
.ng-faq-more-container::-webkit-scrollbar-thumb {
  background: rgba(220, 53, 69, 0.5);
  border-radius: 12px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.ng-faq-more-container::-webkit-scrollbar-thumb:hover {
  background: rgba(220, 53, 69, 0.7);
}

/* ===== الـ Accordion داخل الـ modal ===== */
.ng-faq-more-container .faq-item {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.ng-faq-more-container .faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.ng-faq-more-container .faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.ng-faq-more-container .faq-question:hover {
  color: #dc3545;
}

.ng-faq-more-container .faq-question h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #111827;
  line-height: 1.5;
}

.ng-faq-more-container .faq-question i {
  font-size: 1.25rem;
  color: #dc3545;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* الإجابة: تتمدد حسب الطول */
.ng-faq-more-container .faq-answer {
  max-height: 0 !important;
  overflow: hidden;
  opacity: 0;
  padding: 0 !important;
  transition: 
    max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s ease,
    opacity 0.3s ease;
}

.ng-faq-more-container .faq-item.active .faq-answer {
  opacity: 1;
  padding: 28px 0 36px 0 !important;
}

.ng-faq-more-container .faq-answer p {
  margin: 0 0 18px 0;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #374151;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ng-faq-modal.active {
    padding: 12px;
  }
  
  .ng-modal-content {
    width: 96vw;
    max-height: 94vh;
    border-radius: 24px;
    margin: 0 auto;
  }
  
  .ng-modal-header {
    padding: 24px 28px;
  }
  
  .ng-modal-header h3 {
    font-size: 1.35rem;
  }
  
  .ng-faq-more-container {
    padding: 8px 28px 36px;
  }
  
  .ng-faq-more-container .faq-question h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .ng-modal-content {
    width: 98vw;
    border-radius: 20px;
  }
  
  .ng-faq-more-container {
    padding: 4px 20px 28px;
  }
}

/* ===== Animation Keyframes ===== */
@keyframes ngModalPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -55%) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ngFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== إصلاح أيقونات Timeline رحلة الدراسة - نهائي ===== */
.ng-timeline #ngSteps .ng-step .ng-icon {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 28px rgba(220, 53, 69, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative !important;
  z-index: 3 !important;
}

/* تأكيد ظهور جميع الأيقونات */
.ng-step .ng-icon i {
  opacity: 1 !important;
  visibility: visible !important;
  font-size: inherit !important;
  position: relative !important;
  z-index: 4 !important;
}

/* الخطوة النشطة */
.ng-step.is-active .ng-icon {
  transform: scale(1.1) !important;
  box-shadow: 0 16px 40px rgba(220, 53, 69, 0.45) !important;
  background: linear-gradient(135deg, #c82333 0%, #e63946 100%) !important;
}

/* Hover effect */
.ng-step:hover .ng-icon {
  transform: scale(1.05) !important;
  box-shadow: 0 14px 35px rgba(220, 53, 69, 0.35) !important;
}

/* النقاط (Dots) واضحة */
.ng-step .ng-dot {
  opacity: 1 !important;
  visibility: visible !important;
  background: #fff !important;
  border: 3px solid #dc3545 !important;
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3) !important;
}

/* الخطوة النشطة - النقطة */
.ng-step.is-active .ng-dot {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2), 0 12px 32px rgba(220, 53, 69, 0.35) !important;
  transform: scale(1.2) !important;
}

/* الـ Panel مفتوح */
.ng-step.is-open .ng-panel {
  max-height: 500px !important; /* مساحة كافية */
  opacity: 1 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .ng-timeline .ng-step .ng-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  
  .ng-step .ng-dot {
    width: 12px !important;
    height: 12px !important;
  }
}


/* 🎌 التقويم الياباني - يسار الفعاليات */
.calendar-japan-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(253,252,250,0.98));
  border-radius: 22px;
  border: 1px solid rgba(220,53,69,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 
    0 12px 35px rgba(220,53,69,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  min-width: 140px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calendar-japan-box:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 18px 50px rgba(220,53,69,0.22),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.calendar-icon {
  font-size: 1.4rem;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(220,53,69,0.3));
}

.calendar-title {
  font-size: 0.78rem;
  color: #555;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ألوان حسب طبيعة اليوم */
.calendar-status {
  font-size: 0.82rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 14px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.2px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* 1. يوم عمل - أزرق هادئ 💼 */
.calendar-status.work-day {
  color: #fff;
  background: linear-gradient(135deg, #007bff, #0056b3);
  box-shadow: 0 4px 16px rgba(0,123,255,0.3);
  animation: workPulse 3s ease-in-out infinite;
}

@keyframes workPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,123,255,0.3); }
  50% { box-shadow: 0 6px 22px rgba(0,123,255,0.45); }
}

/* 2. نهاية الأسبوع - أخضر استرخاء 🛌 */
.calendar-status.weekend-day {
  color: #fff;
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 6px 22px rgba(40,167,69,0.4);
  animation: weekendGlow 2.5s ease-in-out infinite;
}

@keyframes weekendGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); box-shadow: 0 8px 28px rgba(40,167,69,0.55); }
}

/* 3. عيد رسمي - أحمر ذهبي احتفال 🎍 */
.calendar-status.holiday-day {
  color: #fff !important;
  background: linear-gradient(135deg, #FF6B6B, #DC3545, #FFD700);
  box-shadow: 
    0 8px 28px rgba(220,53,69,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: holidayCelebrate 2s ease-in-out infinite;
  font-size: 0.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes holidayCelebrate {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.06) rotate(2deg); }
  50% { transform: scale(1.06) rotate(-2deg); }
  75% { transform: scale(1.04) rotate(1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* تأثير Hover عام */
.calendar-japan-box:hover .calendar-status {
  transform: translateY(-1px) scale(1.02);
}


@keyframes japanCelebrate {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    box-shadow: 0 6px 20px rgba(220,53,69,0.4);
  }
  25% { transform: scale(1.05) rotate(1deg); }
  75% { transform: scale(1.05) rotate(-1deg); }
}

/* Events Grid: يسار ← صندوق ← عنوان ← تيكر */
.events-banner .container {
  grid-template-columns: auto auto auto 1fr !important;
  gap: 10px 14px !important;
  align-items: center;
}

/* موبايل: عمودي */
@media (max-width: 768px) {
  .events-banner .container {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    text-align: center;
  }
  .calendar-japan-box {
    order: 1;
    justify-content: center;
    margin: 0 auto;
  }
}
/* نفس CSS السابق + هذا للأيام الخاصة */
.calendar-status.weekend-day {
  color: white !important;
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 6px 20px rgba(40,167,69,0.4);
  animation: weekendGlow 2s ease-in-out infinite;
}

@keyframes weekendGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(40,167,69,0.5); }
}
/* Tokyo Date + Time */
.tokyo-datetime {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3px;
  padding: 3px 6px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
}

.tokyo-date {
  font-size: 0.68rem;
  color: #777;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tokyo-time {
  font-size: 0.75rem;
  color: #dc3545;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
}

.calendar-japan-box:hover .tokyo-datetime {
  background: rgba(220,53,69,0.1);
}

/* ✅ إصلاح الاقتباسات مع Font Awesome 5 */
.owner-message:before,
.testimonial-content:after {
  content: "\f10e" !important; /* fa-quote-right من FA5 */
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

/* إذا كانت هناك اقتباسات أخرى */
.quote-mark,
.fa-quote-right {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

/* ✅ إصلاح خطوط العناوين الرئيسية لـ Owner + Testimonials */
.owner-section .section-title,
.testimonials .section-title {
  font-size: 2.6rem !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin-bottom: 1.1rem !important;
  letter-spacing: -0.02em !important;
  position: relative !important;
  text-align: center !important;
}

.owner-section .section-title:after,
.testimonials .section-title:after {
  content: "" !important;
  position: absolute !important;
  bottom: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 78px !important;
  height: 4px !important;
  border-radius: 3px !important;
  background: linear-gradient(90deg, #dc3545, #ff6b6b) !important;
}

/* للتوافق مع الـ Owner Message (h2 داخل) */
.owner-message h2 {
  font-size: 2.35rem !important;
  font-weight: 900 !important;
  color: #111827 !important;
  letter-spacing: -0.02em !important;
  position: relative !important;
  margin-bottom: 1.2rem !important;
}

.owner-message h2:after {
  content: "" !important;
  position: absolute !important;
  bottom: -10px !important;
  right: 0 !important;
  width: 92px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background: linear-gradient(90deg, #dc3545, #ff6b6b) !important;
}

