/* ==========================================================================
   Meknes Group - Luxury Travel & Tourism Official Stylesheet
   Author: Meknes Digital Agency
   ========================================================================== */

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

:root {
  /* Brand Palette */
  --primary-red: #c61d23;
  --primary-red-dark: #9b1116;
  --primary-red-light: #e63946;
  --primary-red-glow: rgba(198, 29, 35, 0.25);
  
  --gold-accent: #d4af37;
  --gold-dark: #aa820a;
  --gold-light: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.3);

  --dark-navy: #0b132b;
  --dark-surface: #111a36;
  --dark-card: #172244;
  
  --text-main: #1f2937;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --bg-main: #f8fafd;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --border-color: #e2e8f0;
  --border-glow: rgba(198, 29, 35, 0.15);

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(11, 19, 43, 0.15);
  --shadow-glow-red: 0 10px 30px rgba(198, 29, 35, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

[lang="en"] body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

ul {
  list-style: none;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(11, 19, 43, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-inner {
  height: 70px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.logo-brand:hover .brand-logo-img {
  transform: scale(1.06);
}

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

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.brand-title span {
  color: var(--primary-red-light);
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.35rem;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switch-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-normal);
}

.lang-switch-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-contact-header {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px var(--primary-red-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-contact-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--dark-navy);
  z-index: 1100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  transition: right 0.3s ease;
}

[lang="en"] .mobile-nav-drawer {
  right: auto;
  left: -100%;
  transition: left 0.3s ease;
}

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

[lang="en"] .mobile-nav-drawer.open {
  left: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 85px;
  background: radial-gradient(circle at 80% 20%, #1f080a 0%, #0b132b 60%, #060a17 100%);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-art {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 40%, rgba(198, 29, 35, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-accent);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-badge-iata {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff5c5c, var(--primary-red), #ff8080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.75;
}

.hero-stats-row {
  display: flex;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
  padding-block: 1.2rem;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--gold-accent);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: #fff;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-glow-red);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(198, 29, 35, 0.5);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* Hero Visual & Feature Cards */
.hero-visual-card {
  position: relative;
}

.hero-visual-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-visual-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual-main:hover img {
  transform: scale(1.04);
}

.hero-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.overlay-tag {
  background: var(--gold-accent);
  color: var(--dark-navy);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.overlay-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.hero-floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: rgba(17, 26, 54, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

[lang="en"] .hero-floating-badge {
  right: auto;
  left: -15px;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.floating-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.floating-badge-text strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.floating-badge-text span {
  font-size: 0.78rem;
  color: var(--gold-accent);
}

/* ==========================================================================
   Interactive Booking Wizard & Search Bar
   ========================================================================== */
.booking-wizard-section {
  position: relative;
  z-index: 30;
  margin-top: -55px;
  margin-bottom: 4rem;
}

.booking-wizard-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 1.75rem 2rem;
}

.wizard-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.wizard-tab {
  background: transparent;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.wizard-tab:hover {
  color: var(--primary-red);
  background: rgba(198, 29, 35, 0.05);
}

.wizard-tab.active {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-red-glow);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.wizard-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) auto;
  gap: 1.2rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--text-main);
  font-weight: 500;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-red-glow);
}

.btn-wizard-submit {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
  color: #fff;
  border: none;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  box-shadow: var(--shadow-glow-red);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-wizard-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 29, 35, 0.45);
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section {
  padding-block: 5.5rem;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--dark-navy);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-dark .section-subtitle {
  color: var(--gold-accent);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: #fff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ==========================================================================
   About Section & Official Accreditations
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 480px;
  width: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--primary-red);
  max-width: 280px;
}

[lang="en"] .about-floating-card {
  right: auto;
  left: -25px;
  border-left: none;
  border-right: 5px solid var(--primary-red);
}

.about-floating-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.about-floating-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-content h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.35;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.director-quote-box {
  background: rgba(198, 29, 35, 0.04);
  border: 1px solid rgba(198, 29, 35, 0.15);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-block: 1.5rem;
  position: relative;
}

.director-quote-box p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.director-author {
  font-weight: 800;
  color: var(--primary-red);
  font-size: 0.92rem;
  display: block;
}

.director-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.accreditation-badge {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.accreditation-badge:hover {
  transform: translateY(-3px);
  border-color: var(--primary-red);
}

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

.badge-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   Services Hub Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-red-glow);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-badge-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[lang="en"] .service-badge-pill {
  right: auto;
  left: 15px;
}

.service-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon-bubble {
  width: 48px;
  height: 48px;
  background: rgba(198, 29, 35, 0.08);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-bubble {
  background: var(--primary-red);
  color: #fff;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tag-item {
  background: #f1f5f9;
  color: var(--text-main);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.2rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-red);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.service-card:hover .service-action-btn {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

/* ==========================================================================
   Visas & International Travel Hub
   ========================================================================== */
.visa-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.visa-filter-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.visa-filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.visa-filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-red-glow);
}

.visa-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.75rem;
}

.visa-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.visa-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.visa-flag-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.visa-country-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.visa-country-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.visa-features-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.visa-features-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  padding-block: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visa-features-list li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: 900;
}

.btn-visa-apply {
  background: #f8fafc;
  color: var(--primary-red);
  border: 1px solid rgba(198, 29, 35, 0.3);
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  display: block;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-visa-apply:hover {
  background: var(--primary-red);
  color: #fff;
}

/* ==========================================================================
   Second Citizenship & Golden Visa (Luxury Showcase)
   ========================================================================== */
.citizenship-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

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

.citizenship-program-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.citizenship-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--primary-red));
}

.citizenship-program-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.program-flag-badge {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.program-country {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.program-investment {
  font-size: 0.9rem;
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.program-perks {
  margin-bottom: 1.5rem;
}

.program-perks li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.8);
  padding-block: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.program-perks li::before {
  content: '★';
  color: var(--gold-accent);
  font-size: 0.75rem;
}

.btn-program-inquire {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  display: block;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-program-inquire:hover {
  background: var(--gold-accent);
  color: var(--dark-navy);
}

.citizenship-steps-timeline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.timeline-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}

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

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: var(--dark-navy);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.step-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ==========================================================================
   VIP Protocol & Fleet
   ========================================================================== */
.vip-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.fleet-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.fleet-body {
  padding: 1.5rem;
}

.fleet-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-badge {
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Partners & Airlines Carousel / Grid
   ========================================================================== */
.partners-section {
  padding-block: 4rem;
  background: #ffffff;
  border-block: 1px solid var(--border-color);
}

.partners-title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.partner-logo-box {
  padding: 0.75rem 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.partner-logo-box:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.partner-airline-tag {
  color: var(--primary-red);
  font-size: 1.1rem;
}

/* ==========================================================================
   Clients & Government Portfolio
   ========================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.client-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.client-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.client-icon {
  width: 38px;
  height: 38px;
  background: rgba(198, 29, 35, 0.08);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* ==========================================================================
   Branches & Interactive Locator
   ========================================================================== */
.branches-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.branches-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.branch-nav-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: start;
  width: 100%;
}

.branch-nav-card:hover {
  border-color: var(--primary-red);
}

.branch-nav-card.active {
  border-color: var(--primary-red);
  background: rgba(198, 29, 35, 0.04);
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.branch-nav-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-nav-card.active .branch-nav-title {
  color: var(--primary-red);
}

.branch-nav-city {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.branch-detail-display {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.branch-header-badge {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.branch-detail-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.branch-info-row:last-child {
  border-bottom: none;
}

.info-icon {
  color: var(--primary-red);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-main);
}

.info-text p, .info-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.branch-actions-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.btn-branch-phone {
  background: var(--primary-red);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-branch-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-branch-whatsapp:hover {
  background: #1eb956;
  color: #fff;
}

/* ==========================================================================
   Media & Offers Gallery (Posters Lightbox)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-normal);
  aspect-ratio: 1 / 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-overlay-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.gallery-overlay-hint {
  color: var(--gold-accent);
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.modal-container {
  position: relative;
  max-width: 750px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--primary-red);
}

/* ==========================================================================
   Payment Methods & Banks Banner
   ========================================================================== */
.payment-methods-strip {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 3.5rem;
}

.payment-strip-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.bank-tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.bank-pill {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQ & Support
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: start;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-chevron {
  transition: transform var(--transition-fast);
  color: var(--primary-red);
  font-weight: 900;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-inline: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Floating Widgets (WhatsApp & Scroll Top)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  border-radius: 50%;
  z-index: 1000;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.floating-whatsapp-btn .wa-btn-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.wa-inline-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 6px;
}

[lang="en"] .wa-inline-icon {
  margin-left: 0;
  margin-right: 6px;
}

[lang="en"] .floating-whatsapp-btn {
  right: auto;
  left: 30px;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65);
}

.scroll-top-btn {
  position: fixed;
  bottom: 105px;
  right: 35px;
  width: 50px;
  height: 50px;
  background: var(--dark-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

[lang="en"] .scroll-top-btn {
  right: auto;
  left: 35px;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--primary-red);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-red);
}

[lang="ar"] .footer-title::after {
  left: auto;
  right: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-inline-start: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item span {
  color: var(--primary-red-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom strong {
  color: var(--gold-accent);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-grid, .citizenship-showcase-grid, .branches-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .wizard-form-grid {
    grid-template-columns: 1fr;
  }

  .citizenship-cards-stack {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   Enhanced Official Logos Styling
   ========================================================================== */
.airlines-official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.airline-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  position: relative;
  overflow: hidden;
}

.airline-logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(15%);
  transition: all var(--transition-fast);
}

.airline-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.airline-logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.clients-official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.client-logo-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  position: relative;
  overflow: hidden;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  transition: all var(--transition-fast);
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

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