/* ==========================================================================
   مكتب الترجمة المعتمدة لجميع السفارات - Tanta
   Modern, Ultra-Fast, Mobile-First Stylesheet with Rich Animations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
  /* Color Palette */
  --primary: #0a192f;          /* Deep Navy */
  --primary-light: #172a45;    /* Medium Navy */
  --primary-glow: rgba(10, 25, 47, 0.85);
  --secondary: #d97706;        /* Luxury Gold / Amber */
  --secondary-light: #fbbf24;  /* Bright Gold */
  --accent: #dc2626;           /* Crimson Red from office banner */
  --accent-hover: #b91c1c;
  --accent-glow: rgba(220, 38, 38, 0.4);
  --success: #16a34a;          /* WhatsApp Green */
  --success-glow: rgba(22, 163, 74, 0.4);
  
  /* Neutral Palette */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-surface: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-focus: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(217, 119, 6, 0.25);
  --shadow-red: 0 8px 20px rgba(220, 38, 38, 0.3);

  /* Typography */
  --font-heading: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'Tajawal', system-ui, -apple-system, sans-serif;

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Heights */
  --header-height: 72px;
  --bottom-bar-height: 62px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-main: #090d16;
  --bg-card: #111827;
  --bg-surface: #1f2937;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border-color: #1e293b;
  --border-focus: #334155;
  --primary-light: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  padding-bottom: var(--bottom-bar-height);
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Responsive Display Utilities */
@media (max-width: 991px) {
  .d-none-mobile {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-none-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #991b1b, #dc2626, #991b1b);
  color: #ffffff;
  padding: 5px 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    font-size: 0.74rem;
  }
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

@media (min-width: 992px) {
  .site-header {
    height: var(--header-height);
  }
}

[data-theme="dark"] .site-header {
  background-color: rgba(17, 24, 39, 0.98);
}

.site-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border: 2px solid var(--secondary);
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

@media (min-width: 768px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }
}

.logo-wrap:hover .logo-img {
  transform: scale(1.08) rotate(3deg);
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), #991b1b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: var(--shadow-red);
  transform: rotate(-2deg);
  transition: transform var(--transition-bounce);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-badge {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

.logo-wrap:hover .logo-badge {
  transform: rotate(0deg) scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.15rem;
  }
}

.logo-title span {
  color: var(--accent);
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.2px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .logo-subtitle {
    font-size: 0.72rem;
  }
}

/* Desktop Nav Menu */
.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--accent);
    background-color: var(--bg-surface);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 12px;
    left: 12px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background-color: var(--border-color);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

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

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2.2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 84%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-card);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.drawer-link svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.drawer-link:hover, .drawer-link.active {
  background-color: var(--bg-surface);
  color: var(--accent);
}

.drawer-contact-card {
  margin-top: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.drawer-contact-card h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.drawer-contact-card p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  line-height: 1.2;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #ffffff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--secondary), #b45309);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.45);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--bg-surface);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 16px 32px;
    font-size: 1.12rem;
    border-radius: var(--radius-lg);
  }
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Hero Section (Streamlined & Clean on Mobile)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 30px 0 50px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.04) 0%, rgba(217, 119, 6, 0.02) 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 50px 0 70px;
  }
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.07) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-clean-container {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-badge-strip {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text-main);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

.hero-title .highlight-red {
  color: var(--accent);
  display: inline-block;
  position: relative;
}

.hero-title .highlight-gold {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
}

.hero-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}

@media (min-width: 768px) {
  .hero-features-list {
    gap: 14px;
    margin-bottom: 34px;
  }
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-card);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .hero-feat-item {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}

.hero-feat-item svg {
  width: 16px;
  height: 16px;
  fill: var(--success);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-color);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-item svg {
  width: 15px;
  height: 15px;
  fill: var(--secondary);
}

/* ==========================================================================
   Embassies Marquee & Grid
   ========================================================================== */
.embassies-section {
  padding: 40px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-tagline {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.section-heading-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.3rem;
  }
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.05rem;
  }
}

.embassy-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .embassy-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

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

.embassy-pill {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.embassy-pill:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
  background-color: var(--bg-card);
}

.embassy-flag-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.embassy-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.embassy-status {
  font-size: 0.72rem;
  color: var(--success);
  font-weight: 700;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-section {
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 28px 22px;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

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

.service-icon-box {
  width: 50px;
  height: 50px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: all var(--transition-bounce);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #ffffff;
  transform: scale(1.08) rotate(4deg);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-docs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.service-doc-tag {
  background-color: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(-4px);
}

/* ==========================================================================
   Statistics Counters
   ========================================================================== */
.stats-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  position: relative;
}

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

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--secondary-light);
  line-height: 1.1;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.process-section {
  padding: 50px 0;
  background-color: var(--bg-surface);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.process-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-4px);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-red);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Why Choose Us & Location Card
   ========================================================================== */
.why-us-section {
  padding: 50px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.why-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.why-content h4 {
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Branch Location Card in Tanta */
.tanta-branch-card {
  background: linear-gradient(135deg, var(--primary), #0c2340);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tanta-branch-card {
    padding: 32px 26px;
  }
}

.branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.2);
  color: var(--secondary-light);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.tanta-branch-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.branch-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.branch-info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary-light);
  flex-shrink: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 50px 0;
  background-color: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 10px;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.9rem;
  line-height: 1.2;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 50px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  padding: 16px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

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

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 0 18px 16px;
}

/* ==========================================================================
   AdSense Banner Placeholder / Container
   ========================================================================== */
.ad-slot-container {
  margin: 28px auto;
  padding: 14px;
  background: var(--bg-surface);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 970px;
}

.ad-slot-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner-section {
  padding: 40px 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, var(--accent), #991b1b);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner-card {
    padding: 40px 24px;
  }
}

.cta-banner-card h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .cta-banner-card h2 {
    font-size: 2rem;
  }
}

.cta-banner-card p {
  font-size: 0.95rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    gap: 14px;
  }
}

.btn-white {
  background-color: #ffffff;
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary);
  color: #ffffff;
  padding: 45px 0 20px;
  border-top: 4px solid var(--accent);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.footer-about p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 14px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #cbd5e1;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--secondary-light);
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary-light);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   Mobile Bottom App Bar (Native Feel)
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 20%;
  height: 100%;
  transition: color var(--transition-fast);
}

.bottom-bar-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-bounce);
}

.bottom-bar-item.active, .bottom-bar-item:hover {
  color: var(--accent);
}

.bottom-bar-item.active svg {
  transform: scale(1.12);
}

.bottom-bar-item.highlight-call {
  color: var(--accent);
}

.bottom-bar-item.highlight-wa {
  color: var(--success);
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Phone on Desktop ONLY)
   ========================================================================== */
.floating-actions {
  display: none; /* Hidden on mobile by default to prevent overlapping with content & bottom bar */
}

@media (min-width: 992px) {
  .floating-actions {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
  }
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  position: relative;
}

.fab-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: var(--shadow-glow);
  animation: pulse-wa 2.5s infinite;
}

.fab-phone {
  background: linear-gradient(135deg, var(--accent), #991b1b);
  box-shadow: var(--shadow-red);
}

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

.fab-tooltip {
  position: absolute;
  left: 62px;
  background-color: var(--bg-card);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Page Headers (Inside Subpages)
   ========================================================================== */
.page-header {
  padding: 30px 0 40px;
  background: linear-gradient(135deg, var(--primary), #0c2340);
  color: #fff;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .page-header {
    padding: 40px 0 50px;
  }
}

.page-header h1 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 2.8rem;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.breadcrumb a {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: var(--secondary-light);
}

.breadcrumb .current {
  color: var(--secondary-light);
  font-weight: 700;
}

/* ==========================================================================
   Content Pages (About, Pricing, Contact, Blog)
   ========================================================================== */
.content-section {
  padding: 40px 0 60px;
}

.prose {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-main);
}

.prose p {
  margin-bottom: 16px;
}

.prose h2, .prose h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.prose ul, .prose ol {
  margin-bottom: 20px;
  padding-right: 20px;
}

.prose li {
  margin-bottom: 6px;
  list-style-type: square;
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-red);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #991b1b);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

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

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.pricing-card .price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 14px;
}

.pricing-card .price-amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pricing-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-feat-item svg {
  width: 15px;
  height: 15px;
  fill: var(--success);
  flex-shrink: 0;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.blog-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.blog-thumb-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.blog-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex-grow: 1;
}

/* Contact Form Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
  }
}

.contact-card-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-card-box {
    padding: 30px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  color: var(--text-main);
  outline: none;
  font-weight: 600;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
}

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

.map-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 280px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .map-embed-wrapper {
    height: 340px;
  }
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Dedicated Calculator Card (Used in Pricing Page)
   ========================================================================== */
.hero-calc-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-calc-card {
    padding: 26px 22px;
  }
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.calc-icon-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), #b45309);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-icon-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.calc-form-group {
  margin-bottom: 14px;
}

.calc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
}

.calc-input, .calc-select {
  width: 100%;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  color: var(--text-main);
  outline: none;
  font-weight: 600;
  transition: border-color var(--transition-fast);
}

.calc-input:focus, .calc-select:focus {
  border-color: var(--accent);
}

.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .calc-row-2 {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(217, 119, 6, 0.08));
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  margin-bottom: 14px;
}

.calc-price-tag {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-heading);
}

.calc-time-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
  }
}

@keyframes pulse-wa {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* ==========================================================================
   Destination Decision Section ("قبل ما تترجم... اعرف هتقدم فين؟")
   ========================================================================== */
.dest-decision-section {
  padding: 55px 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  position: relative;
}

.dest-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.dest-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.dest-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-red);
}

.dest-icon-badge {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: inline-block;
  line-height: 1;
}

.dest-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.dest-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.dest-docs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.dest-doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
}

.dest-doc-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   Visa & Travel Preparation Section ("قبل ما تسافر... جهز مستنداتك صح!")
   ========================================================================== */
.visa-prep-section {
  padding: 55px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.visa-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .visa-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .visa-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.visa-step-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.visa-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.visa-step-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--secondary), #b45309);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.visa-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.visa-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Intro Trust Banner (Fast Trans style) */
.intro-trust-banner {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(217, 119, 6, 0.06));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .intro-trust-banner {
    padding: 36px 30px;
  }
}

.intro-trust-banner h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .intro-trust-banner h3 {
    font-size: 1.65rem;
  }
}

.intro-trust-banner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}


/* ==========================================================================
   Language Switcher & Bilingual Styles
   ========================================================================== */
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.lang-switcher-btn:hover {
  background-color: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.lang-switcher-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.drawer-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 10px;
  text-decoration: none;
}

.drawer-lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.drawer-lang-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   LTR / English Specific Layout Overrides
   ========================================================================== */
html[dir="ltr"] {
  direction: ltr;
}

html[dir="ltr"] body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}

html[dir="ltr"] h1, 
html[dir="ltr"] h2, 
html[dir="ltr"] h3, 
html[dir="ltr"] h4, 
html[dir="ltr"] .logo-title,
html[dir="ltr"] .hero-title,
html[dir="ltr"] .section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
}

html[dir="ltr"] .mobile-drawer {
  right: auto;
  left: -100%;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  transition: left var(--transition-smooth);
}

html[dir="ltr"] .mobile-drawer.open {
  left: 0;
  right: auto;
}

html[dir="ltr"] .floating-actions {
  left: auto;
  right: 24px;
}

html[dir="ltr"] .fab-tooltip {
  left: auto;
  right: 62px;
  transform: translateX(10px);
}

html[dir="ltr"] .fab-btn:hover .fab-tooltip {
  transform: translateX(0);
}

html[dir="ltr"] .footer-col h3::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .faq-question {
  text-align: left;
}

html[dir="ltr"] .calc-result-box {
  text-align: left;
}

html[dir="ltr"] .prose ul, html[dir="ltr"] .prose ol {
  padding-right: 0;
  padding-left: 20px;
}

html[dir="ltr"] .service-link svg {
  transform: rotate(180deg);
}

html[dir="ltr"] .dest-doc-item, 
html[dir="ltr"] .why-feature-item,
html[dir="ltr"] .branch-info-item,
html[dir="ltr"] .pricing-feat-item,
html[dir="ltr"] .hero-feat-item {
  text-align: left;
}


/* ==========================================================================
   Comprehensive Mobile-First & LTR Responsive Upgrades
   ========================================================================== */

/* Top Announcement Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #991b1b, #dc2626, #991b1b);
  color: #ffffff;
  padding: 5px 8px;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1001;
  line-height: 1.35;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

@media (min-width: 768px) {
  .top-announcement-bar {
    padding: 6px 0;
    font-size: 0.8rem;
  }
  .top-bar-content {
    justify-content: space-between;
  }
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

@media (min-width: 768px) {
  .site-header {
    height: 64px;
  }
}

@media (min-width: 992px) {
  .site-header {
    height: var(--header-height);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 6px;
}

/* Logo in Header */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--secondary);
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
}

@media (min-width: 480px) {
  .logo-img {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 768px) {
  .logo-img {
    width: 46px;
    height: 46px;
  }
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-title {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .logo-title {
    font-size: 0.98rem;
  }
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.12rem;
  }
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

@media (max-width: 360px) {
  .logo-subtitle {
    display: none;
  }
}

@media (min-width: 768px) {
  .logo-subtitle {
    font-size: 0.7rem;
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 8px;
  }
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  background-color: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .lang-switcher-btn {
    padding: 5px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }
}

.lang-switcher-btn:hover {
  background-color: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.lang-switcher-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.theme-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

@media (min-width: 480px) {
  .theme-toggle-btn {
    width: 36px;
    height: 36px;
  }
}

.theme-toggle-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

@media (min-width: 480px) {
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }
}

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

.mobile-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Hero Section Mobile Perfection */
.hero-section {
  padding: 24px 0 30px;
  background: radial-gradient(circle at 50% 20%, rgba(220, 38, 38, 0.04) 0%, rgba(10, 25, 47, 0.02) 60%, transparent 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 45px 0 50px;
  }
}

.hero-clean-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 12px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  line-height: 1.35;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-badge-strip {
    font-size: 0.84rem;
    padding: 6px 14px;
    gap: 8px;
    margin-bottom: 16px;
  }
}

.hero-badge-strip svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(1.4rem, 5vw, 2.7rem);
  line-height: 1.25;
  margin-bottom: 12px;
  text-align: center;
}

.hero-subtitle {
  font-size: clamp(0.84rem, 2.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Hero Feature Cards (2x2 Grid) */
.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .hero-features-list {
    gap: 8px;
  }
}

@media (min-width: 768px) {
  .hero-features-list {
    gap: 12px;
    margin-bottom: 28px;
  }
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-card);
  padding: 7px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  line-height: 1.25;
  text-align: start;
}

@media (min-width: 480px) {
  .hero-feat-item {
    font-size: 0.82rem;
    padding: 8px 10px;
    gap: 6px;
  }
}

@media (min-width: 768px) {
  .hero-feat-item {
    font-size: 0.92rem;
    padding: 10px 12px;
    gap: 8px;
  }
}

.hero-feat-item svg {
  width: 14px;
  height: 14px;
  fill: var(--success);
  flex-shrink: 0;
}

/* Hero CTAs */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: auto;
  }
}

.hero-cta-group .btn {
  padding: 11px 16px;
  font-size: 0.88rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-cta-group .btn {
    padding: 13px 22px;
    font-size: 0.95rem;
  }
}

/* Section Headings */
.section-tagline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  background: rgba(220, 38, 38, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.section-heading-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}

.section-title {
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: clamp(0.82rem, 2.2vw, 0.96rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Cards Grids Mobile Handling */
.dest-cards-grid,
.visa-steps-grid,
.services-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .dest-cards-grid,
  .visa-steps-grid,
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .dest-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .visa-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dest-card,
.visa-step-card,
.service-card {
  padding: 18px 14px;
}

@media (min-width: 768px) {
  .dest-card,
  .visa-step-card,
  .service-card {
    padding: 24px 20px;
  }
}

/* LTR Specific Alignments */
html[dir="ltr"] body {
  text-align: left;
}

html[dir="ltr"] .dest-card,
html[dir="ltr"] .visa-step-card,
html[dir="ltr"] .service-card,
html[dir="ltr"] .why-content,
html[dir="ltr"] .tanta-branch-card,
html[dir="ltr"] .footer-col,
html[dir="ltr"] .calc-result-box {
  text-align: left;
}

html[dir="rtl"] .dest-card,
html[dir="rtl"] .visa-step-card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .why-content,
html[dir="rtl"] .tanta-branch-card,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .calc-result-box {
  text-align: right;
}

html[dir="ltr"] .hero-clean-container,
html[dir="rtl"] .hero-clean-container,
html[dir="ltr"] .section-heading-wrap,
html[dir="rtl"] .section-heading-wrap {
  text-align: center;
}


/* ==========================================================================
   Desktop Navigation Bar Fit & Anti-Wrapping Optimization
   ========================================================================== */
.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }

  .nav-link {
    padding: 6px 9px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--accent);
    background-color: var(--bg-surface);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 8px;
    left: 8px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
  }
}

@media (min-width: 1200px) {
  .nav-menu {
    gap: 6px;
  }
  .nav-link {
    padding: 7px 12px;
    font-size: 0.92rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}


/* ==========================================================================
   Minova Enterprise Developer Credit Styling
   ========================================================================== */
.footer-credit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 12px rgba(56, 189, 248, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 6px 0;
  text-decoration: none;
}

.footer-credit-badge:hover {
  border-color: #38bdf8;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.35), rgba(15, 23, 42, 0.98));
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35), 0 0 20px rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.footer-credit-badge .credit-text {
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-credit-badge .credit-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.footer-credit-badge .brand-name {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
  font-weight: 900;
  font-size: 1.08rem;
  display: inline-block;
  transition: all 0.25s ease;
}

.footer-credit-badge:hover .brand-name {
  background: linear-gradient(135deg, #7dd3fc 0%, #93c5fd 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px rgba(125, 211, 252, 0.6);
}

.footer-credit-badge .credit-icon {
  width: 15px;
  height: 15px;
  fill: #38bdf8;
  flex-shrink: 0;
  transition: transform 0.25s ease, fill 0.25s ease;
}

.footer-credit-badge:hover .credit-icon {
  transform: translate(2px, -2px) scale(1.1);
  fill: #7dd3fc;
}

@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  
  .footer-credit-badge {
    width: auto;
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  
  .footer-credit-badge .brand-name {
    font-size: 1.02rem;
  }
}


/* ==========================================================================
   Facebook Social Links & Badges
   ========================================================================== */
.footer-fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.4);
  color: #60a5fa !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-fb-badge:hover {
  background: #1877f2;
  color: #ffffff !important;
  border-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
  transform: translateY(-2px);
}

.btn-fb-drawer {
  background: #1877f2 !important;
  color: #ffffff !important;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.btn-fb-drawer:hover {
  background: #166fe5 !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.btn-fb-branch {
  background: rgba(24, 119, 242, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(24, 119, 242, 0.4) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-fb-branch:hover {
  background: #1877f2 !important;
  color: #ffffff !important;
  border-color: #1877f2 !important;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}
