/* =============================================
   MUHAMMED SHADE — PREMIUM GLASSMORPHISM PROFILE
   CSS matched to actual HTML/JS class names
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* === Reset === */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --font: 'Inter', system-ui, sans-serif;

  /* Brand Colors (Dark Theme & Silver Accents) */
  --blue-500: #ffffff;       /* Pure white accents */
  --blue-600: #e4e4e7;       /* Silver-white secondary */
  --blue-700: #ffffff;       /* Secondary accent highlights */
  --indigo-500: #a1a1aa;     /* Silver-grey labels */
  --violet-500: #71717a;     /* Dark silver */
  --emerald-500: #10b981;

  /* Text - Configured for dark-backdrop compatibility */
  --text-primary: #ffffff;
  --text-secondary: #e4e4e7;
  --text-muted: #a1a1aa;
  --text-light: #71717a;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #09090b 0%, #18181b 40%, #020205 100%);
  --grad-blue: linear-gradient(135deg, #3f3f46 0%, #09090b 100%);
  --grad-multicolor: linear-gradient(135deg, #a1a1aa 0%, #52525b 50%, #27272a 100%);
  --grad-wa: linear-gradient(135deg, #25d366 0%, #128c7e 100%);

  /* Glass - Modern dark glass style */
  --glass-bg: rgba(15, 15, 20, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(25px);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.4);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Transitions */
  --t: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-bounce: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Admin compat */
  --card-bg: rgba(15, 15, 20, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow-main: 0 12px 40px rgba(0, 0, 0, 0.25);
  --accent-blue: #a1a1aa;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--grad-hero);
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* 3D Tech Grid background overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: 
    radial-gradient(rgba(113, 113, 122, 0.15) 1.5px, transparent 1.5px),
    linear-gradient(to right, rgba(113, 113, 122, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(113, 113, 122, 0.05) 1px, transparent 1px);
  background-size: 30px 30px, 30px 30px, 30px 30px;
  z-index: 1;
  pointer-events: none;
}

/* Animated rotating gradient blobs for 3D depth */
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle 500px at 15% 20%, rgba(113, 113, 122, 0.12) 0%, transparent 60%),
    radial-gradient(circle 450px at 85% 25%, rgba(82, 82, 91, 0.10) 0%, transparent 60%),
    radial-gradient(circle 600px at 50% 80%, rgba(244, 244, 245, 0.25) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  animation: move-blobs 25s ease-in-out infinite alternate;
}

@keyframes move-blobs {
  0% { transform: scale(1) translate(0px, 0px); }
  50% { transform: scale(1.08) translate(30px, -45px); }
  100% { transform: scale(0.95) translate(-20px, 35px); }
}

/* ======================
   MAIN CONTAINER
   ====================== */
.container {
  position: relative; z-index: 2;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 140px;
}

/* ======================
   BG GLOWS (legacy divs)
   ====================== */
.bg-glow { display: none; }

/* ======================
   PROFILE HEADER
   ====================== */
.profile-header {
  text-align: center;
  padding: 36px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
  margin-top: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.profile-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-multicolor);
}

/* Avatar */
.avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--t-bounce);
}

.avatar-container::before {
  content: '';
  position: absolute; inset: -4px;
  background: linear-gradient(135deg, #ffffff, #a1a1aa, #52525b);
  border-radius: 62% 47% 63% 45% / 55% 58% 48% 52%;
  z-index: -1;
  opacity: 0.35;
  filter: blur(10px);
  animation: morph-blob 8s ease-in-out infinite alternate;
}

.avatar-container:hover {
  transform: scale(1.05) rotate(1deg);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.1);
  animation: morph-blob 8s ease-in-out infinite alternate;
  transition: border-color 0.3s ease;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

@keyframes morph-blob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 53% 47% 43% 57% / 51% 56% 44% 49%;
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  }
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--emerald-500);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.profile-name {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 50%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.profile-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}

.profile-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  max-width: 340px;
  margin: 0 auto;
}

/* ======================
   SOCIAL ROW (hero pills)
   ====================== */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 11px;
  border-radius: var(--r-full);
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 750;
  font-family: var(--font);
  border: 1.5px solid transparent;
  transition: var(--t-bounce);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Default social pills: deep black with steel-silver border/icon */
.social-icon-pill.insta { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-icon-pill.insta:hover, .social-icon-pill.insta:active {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
  color: white; border-color: transparent;
  box-shadow: 0 4px 16px rgba(253,29,29,0.32); transform: translateY(-2px) scale(1.04);
}

.social-icon-pill.fb { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-icon-pill.fb:hover, .social-icon-pill.fb:active {
  background: #1877F2; color: white; border-color: transparent;
  box-shadow: 0 4px 16px rgba(24,119,242,0.32); transform: translateY(-2px) scale(1.04);
}

.social-icon-pill.li { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-icon-pill.li:hover, .social-icon-pill.li:active {
  background: #0A66C2; color: white; border-color: transparent;
  box-shadow: 0 4px 16px rgba(10,102,194,0.32); transform: translateY(-2px) scale(1.04);
}

.social-icon-pill.tw { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-icon-pill.tw:hover, .social-icon-pill.tw:active {
  background: #ffffff; color: #09090b; border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.22); transform: translateY(-2px) scale(1.04);
}

/* ======================
   CLIENTS SECTION
   ====================== */
.clients-section {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0 8px;
}

.clients-heading {
  font-size: 0.72rem;
  font-weight: 800;
  color: #a1a1aa;
  text-align: center;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Client Cards Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.client-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 12px 6px;
  text-align: center;
  transition: var(--t-bounce);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.client-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Logo avatar — bright metallic-colored rings */
.client-logo-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  margin: 0 auto 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Color-coded metallic rings for each card position */
.client-card:nth-child(4n+1) .client-logo-avatar {
  background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(99,102,241,0.12));
  border-color: rgba(99,102,241,0.45);
  color: #c7d2fe;
  box-shadow: 0 4px 14px rgba(99,102,241,0.2);
}
.client-card:nth-child(4n+2) .client-logo-avatar {
  background: linear-gradient(135deg, rgba(16,185,129,0.35), rgba(16,185,129,0.12));
  border-color: rgba(16,185,129,0.45);
  color: #a7f3d0;
  box-shadow: 0 4px 14px rgba(16,185,129,0.2);
}
.client-card:nth-child(4n+3) .client-logo-avatar {
  background: linear-gradient(135deg, rgba(245,158,11,0.35), rgba(245,158,11,0.12));
  border-color: rgba(245,158,11,0.45);
  color: #fde68a;
  box-shadow: 0 4px 14px rgba(245,158,11,0.2);
}
.client-card:nth-child(4n+4) .client-logo-avatar {
  background: linear-gradient(135deg, rgba(236,72,153,0.35), rgba(236,72,153,0.12));
  border-color: rgba(236,72,153,0.45);
  color: #fbcfe8;
  box-shadow: 0 4px 14px rgba(236,72,153,0.2);
}

.client-name {
  font-size: 0.65rem;
  font-weight: 750;
  color: #e4e4e7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-country-badge {
  font-size: 0.54rem;
  font-weight: 700;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ======================
   QUICK LINKS / ACTION CARDS
   ====================== */
.quick-links {
  margin-bottom: 20px;
}

.section-title-hidden { display: none; }

.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--t);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.action-card:hover, .action-card:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-hover);
  background: rgba(30, 30, 38, 0.85);
  border-color: rgba(255,255,255,0.18);
}

/* Card Icon */
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.wa-btn .card-icon {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.07));
  color: #128c7e;
  border: 1px solid rgba(37,211,102,0.18);
}

.wa-btn:hover .card-icon, .wa-btn:active .card-icon {
  background: var(--grad-wa);
  color: white; border-color: transparent;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transform: scale(1.08);
}

.email-btn .card-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.email-btn:hover .card-icon, .email-btn:active .card-icon {
  background: var(--grad-blue);
  color: var(--text-primary); border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
}

/* Card Details */
.card-details { flex: 1; }

.card-details h3 {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.card-details p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-arrow {
  color: var(--text-light);
  transition: var(--t);
  flex-shrink: 0;
}

.action-card:hover .card-arrow,
.action-card:active .card-arrow {
  color: var(--blue-500);
  transform: translateX(4px);
}

/* Compact social strip under action cards */
.social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 4px 0;
}

.social-strip-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: var(--t-bounce);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Compact social strip: deep black pills */
.social-strip-btn.insta { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-strip-btn.insta:hover, .social-strip-btn.insta:active {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 60%, #fcb045);
  color: white; border-color: transparent;
  box-shadow: 0 6px 18px rgba(253,29,29,0.28); transform: translateY(-3px) scale(1.08);
}

.social-strip-btn.fb { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-strip-btn.fb:hover, .social-strip-btn.fb:active {
  background: #1877F2; color: white; border-color: transparent;
  box-shadow: 0 6px 18px rgba(24,119,242,0.28); transform: translateY(-3px) scale(1.08);
}

.social-strip-btn.li { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-strip-btn.li:hover, .social-strip-btn.li:active {
  background: #0A66C2; color: white; border-color: transparent;
  box-shadow: 0 6px 18px rgba(10,102,194,0.28); transform: translateY(-3px) scale(1.08);
}

.social-strip-btn.tw { background: #09090b; border-color: rgba(200,200,210,0.35); color: #c4c4cc; }
.social-strip-btn.tw:hover, .social-strip-btn.tw:active {
  background: #ffffff; color: #09090b; border-color: transparent;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2); transform: translateY(-3px) scale(1.08);
}

/* ======================
   TAB NAV (matches .tab-nav .tab-btn)
   ====================== */
.tab-nav {
  display: flex;
  background: rgba(15, 15, 20, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 5px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
  gap: 4px;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  padding: 11px 10px;
  border: none;
  background: transparent;
  border-radius: var(--r-lg);
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font);
  white-space: nowrap;
}

.tab-btn.active {
  background: #ffffff;
  color: #09090b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Tab panes */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ======================
   SERVICES GRID
   (uses .service-card, .service-number,
    .service-icon-box, h3, p from JS)
   ====================== */
.services-header, .other-services-header {
  margin-bottom: 16px;
}

.services-header h2, .other-services-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.services-header p, .other-services-header p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 16px 14px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before, .service-card:active::before { opacity: 1; }

.service-card:hover, .service-card:active {
  transform: perspective(800px) translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: rgba(30, 30, 35, 0.85);
  border-color: rgba(255,255,255,0.18);
}

/* Service Number — hidden per design */
.service-card .service-number {
  display: none;
}

/* Service Icon Box (.service-icon-box from JS) */
.service-icon-box {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--t);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box,
.service-card:active .service-icon-box {
  background: var(--grad-blue);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* Service Title (h3 from JS) */
.service-card h3 {
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

/* Service Desc (p from JS) */
.service-card p {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

/* Other Services Section */
.other-services-section {
  margin-top: 28px;
}

.other-services-section::before {
  content: '— Technical & Digital —';
  display: block;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--indigo-500);
  margin-bottom: 16px;
  opacity: 0.6;
}

/* ======================
   CONTACT TAB
   ====================== */
.contact-card-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-tile {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow);
}

.tile-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.tile-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tile-value {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--text-primary);
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}

.copy-btn:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.tile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.tile-action-link {
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--t);
}

.tile-action-link:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.25);
}

.divider {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ======================
   INQUIRY FORM
   ====================== */
.inquiry-form-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 8px 32px rgba(30,64,175,0.1);
  position: relative;
  overflow: hidden;
}

.inquiry-form-container::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-multicolor);
}

.inquiry-form-container h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font);
  transition: var(--t);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-weight: 400; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.form-group textarea { resize: none; }

.submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--r-lg);
  border: none;
  background: var(--grad-blue);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.submit-btn:hover, .submit-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.4);
}

/* ======================
   FOOTER
   ====================== */
.profile-footer {
  text-align: center;
  padding: 20px;
  color: #a1a1aa;
  font-size: 0.72rem;
  font-weight: 600;
}

.profile-footer .branding {
  font-size: 0.65rem;
  margin-top: 4px;
  opacity: 0.8;
  color: #71717a;
}

/* ======================
   MODAL
   ====================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  width: 100%; max-width: 360px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(30,64,175,0.2);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.3);
}

.modal-overlay.active .modal-card { transform: scale(1); }

.modal-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-500);
  box-shadow: 0 0 0 12px rgba(16,185,129,0.06);
}

.modal-card h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.redirect-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.07);
  border: 1.5px solid rgba(37,211,102,0.2);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 750;
  color: #065f46;
}

.spinner-ring {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(37,211,102,0.3);
  border-top-color: var(--emerald-500);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ======================
   TOAST
   ====================== */
.toast-notification {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15,23,42,0.92);
  color: white;
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ======================
   ADMIN PANEL COMPAT
   ====================== */
.admin-nav { margin-bottom: 24px; }

.admin-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-main);
  margin-bottom: 30px;
  animation: fadeIn 0.4s ease;
}

.admin-section h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 24px; }

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  padding: 20px; border-radius: 16px; text-align: center;
}

.stat-card h3 { font-size: 2.2rem; color: var(--accent-blue); margin-bottom: 4px; }
.stat-card p { font-size: 0.82rem; color: var(--text-muted); font-weight: 700; }

table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 0.88rem; }
th, td { padding: 14px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); }
th { font-weight: 750; color: var(--text-primary); background: rgba(255,255,255,0.08); }
tr:hover { background: rgba(255,255,255,0.05); }
.timestamp { color: var(--text-muted); font-size: 0.78rem; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(37,99,235,0.1);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 750;
}

.admin-tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.admin-tab-btn {
  padding: 9px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(37,99,235,0.2);
  background: rgba(255,255,255,0.5);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 750;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--t);
}

.admin-tab-btn.active, .admin-tab-btn:hover {
  background: var(--grad-blue);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.service-editor-item {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.service-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-editor-header h4 { font-size: 0.88rem; font-weight: 750; color: var(--text-primary); }

.client-editor-item {
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 120px 80px auto;
  gap: 10px;
  align-items: end;
}

.btn-sm {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 750;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: var(--t);
}

.btn-danger { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-primary { background: var(--grad-blue); color: white; box-shadow: 0 4px 12px rgba(37,99,235,0.25); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,99,235,0.3); }

.upload-preview { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.upload-preview img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blue-500); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ======================
   CLIENTS SECTION & MARQUEE
   ====================== */
.clients-section {
  margin: 16px 0;
  padding: 16px 0 8px;
}

.clients-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
}

.clients-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.clients-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.clients-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 40px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marquee-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,0.1);
}

.marquee-logo-box {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad-blue);
  color: #09090b;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.client-country {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--blue-600, #2563eb);
  background: rgba(37,99,235,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ======================
   SERVICE CARD BADGE (Number)
   ====================== */
.service-number {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--blue-600, #2563eb);
  background: rgba(37,99,235,0.08);
  padding: 2px 7px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 380px) {
  .profile-name { font-size: 1.6rem; }
  .services-grid { gap: 8px; }
  .service-card { padding: 14px 12px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .social-icon-pill span { display: none; }
  .social-row { gap: 6px; }
  .client-editor-item { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 480px) {
  .container { max-width: 480px; }
}

@supports (padding: max(0px)) {
  .container { padding-bottom: max(140px, calc(80px + env(safe-area-inset-bottom))); }
}

::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; }

/* ======================
   INFINITE MARQUEE STYLE
   ====================== */
.clients-section {
  padding: 12px 0;
  margin-top: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.clients-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  margin-top: 12px;
}

.clients-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.clients-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: var(--r-lg);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: var(--t-bounce);
  white-space: nowrap;
}

.marquee-item:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.marquee-logo-box {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(0,0,0,0.15);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.client-country {
  font-size: 0.62rem;
  font-weight: 700;
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ======================
   COMPACT SOCIAL ROW
   ====================== */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.social-icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: var(--t-bounce);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.social-icon-pill svg {
  width: 20px;
  height: 20px;
  transition: transform 0.28s ease;
}

.social-icon-pill:hover {
  transform: translateY(-3px) scale(1.08);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.social-icon-pill:hover svg {
  transform: scale(1.1);
}

.social-icon-pill.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-color: transparent;
}

.social-icon-pill.fb:hover {
  background: #1877f2;
  border-color: transparent;
}

.social-icon-pill.li:hover {
  background: #0a66c2;
  border-color: transparent;
}

.social-icon-pill.tw:hover {
  background: #000000;
  border-color: transparent;
}


/* ======================
   COMPACT QUICK ACTION CARDS (SETTINGS GROUP)
   ====================== */
.quick-links {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 6px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 24px;
  overflow: hidden;
}

.action-card {
  padding: 12px 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: var(--r-lg);
  box-shadow: none;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0;
  position: relative;
  /* Button resets */
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.action-card:hover {
  transform: translateY(0) scale(1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.action-card .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.action-card.wa-btn .card-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.action-card.email-btn .card-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.action-card:hover .card-icon {
  transform: scale(1.08);
}

.action-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.action-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* Separator lines between items */
.action-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 68px; right: 16px;
  height: 1px;
  background: rgba(15, 23, 42, 0.06);
  transition: opacity 0.2s ease;
}

.action-card:hover::after {
  opacity: 0;
}

/* Sub-elements inside action-card */
.card-details {
  flex: 1;
  min-width: 0;
}

.card-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.action-card:hover .card-arrow {
  transform: translateX(3px);
  opacity: 0.9;
}

/* ======================
   OTHER SERVICES LIST GRID
   ====================== */
.other-services-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.other-service-list-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.other-service-list-card:hover {
  transform: translateX(4px);
  background: rgba(30, 30, 40, 0.85);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-hover);
}

.other-service-list-card .other-service-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.other-service-list-card .other-service-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
}

.other-service-list-card .other-service-right {
  flex: 1;
  text-align: left;
}

.other-service-list-card h3 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.25;
}

.other-service-list-card p {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.other-service-list-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3.5px;
  background: var(--grad-multicolor);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.other-service-list-card:hover::before {
  opacity: 1;
}

/* ======================
   SAVE CONTACT OVERLAY BANNER
   ====================== */
.contact-banner-overlay {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.contact-banner-card {
  width: 100%;
  max-width: 400px;
  background: rgba(15, 15, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  pointer-events: auto;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-banner-overlay.show .contact-banner-card {
  transform: translateY(0);
}

.contact-banner-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.contact-banner-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-500);
}

.banner-pulse-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px;
  height: 10px;
  background: var(--emerald-500);
  border-radius: 50%;
  border: 2px solid white;
}

.contact-banner-info {
  flex: 1;
}

.contact-banner-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.contact-banner-info p {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-action-save {
  background: var(--grad-blue);
  color: white;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
  transition: var(--t);
}

.banner-action-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

.banner-action-dismiss {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.banner-action-dismiss:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* === Save Contact CTA === */
.primary-save-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin: 18px auto 6px;
  padding: 15px 24px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 20%, #ffffff 40%, #94a3b8 60%, #cbd5e1 80%, #f1f5f9 100%);
  background-size: 200% 200%;
  color: #09090b;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.7);
  transition: var(--t-bounce);
  position: relative;
  overflow: hidden;
  animation: metallic-wave 8s ease infinite;
}

.primary-save-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  animation: shine-sweep 3s infinite ease-in-out;
}

@keyframes shine-sweep {
  0% { transform: translateX(-100%); }
  35%, 100% { transform: translateX(100%); }
}

@keyframes metallic-wave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.primary-save-btn:hover, .primary-save-btn:active {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 20%, #f1f5f9 45%, #cbd5e1 80%, #94a3b8 100%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.primary-save-btn svg {
  animation: pulse-icon 2s infinite ease-in-out;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* === Modal Popup Overlay === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: rgba(15, 15, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-x {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.modal-close-x:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.inquiry-modal-card {
  text-align: left;
}

.inquiry-modal-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ======================
   EMAIL PICKER BOTTOM SHEET
   ====================== */
.email-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.email-picker-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.email-picker-sheet {
  width: 100%;
  max-width: 480px;
  background: #0f0f12;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 0 0;
  padding: 12px 16px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}

.email-picker-overlay.active .email-picker-sheet {
  transform: translateY(0);
}

.email-picker-handle {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.email-picker-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding: 0 4px;
}

.email-picker-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  margin-bottom: 6px;
}

.email-picker-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.email-picker-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-picker-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.email-picker-addr {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.email-picker-cancel {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s ease;
}

.email-picker-cancel:hover {
  background: rgba(255, 255, 255, 0.15);
}
