/* ==========================================================================
   BML GROUP DIGITAL BUSINESS CARD - MODERN EXECUTIVE STYLESHEET
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --bg-dark: #040d1a;
  --bg-surface: #0a192f;
  --bg-card: rgba(13, 27, 49, 0.75);
  --bg-card-hover: rgba(18, 36, 65, 0.9);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-focus: rgba(0, 195, 255, 0.5);

  --primary-navy: #072959;
  --primary-deep: #031b38;
  --accent-cyan: #00d2ff;
  --accent-blue: #0072ff;
  --accent-glow: rgba(0, 210, 255, 0.25);
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-highlight: #38bdf8;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Elevations & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 35px rgba(0, 210, 255, 0.18);
  --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.5);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Orbs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #0072ff, transparent 70%);
  top: -80px;
  right: -60px;
}

.orb-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #00d2ff, transparent 70%);
  bottom: 10%;
  left: -120px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #031b38, transparent 70%);
  top: 45%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(40px) scale(1.08);
  }

  100% {
    transform: translateY(-30px) scale(0.95);
  }
}

/* App Container */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* --------------------------------------------------------------------------
   Top Navigation
   -------------------------------------------------------------------------- */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-highlight);
  font-family: var(--font-heading);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.top-actions {
  display: flex;
  gap: 0.6rem;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(12px);
}

.icon-btn:hover {
  background: rgba(0, 210, 255, 0.18);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.25);
}

/* --------------------------------------------------------------------------
   Executive Hero Section
   -------------------------------------------------------------------------- */
.profile-hero {
  background: linear-gradient(135deg, rgba(10, 31, 62, 0.85), rgba(7, 21, 44, 0.95));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), #0072ff, transparent);
  animation: shimmerBorder 6s linear infinite;
}

@keyframes shimmerBorder {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.avatar-wrapper {
  position: relative;
  width: 106px;
  height: 106px;
  margin: 0 auto 1.3rem;
}

.avatar-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-cyan), #0051ba, var(--accent-cyan));
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #0d3468, #05162e);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, #a5d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: #0284c7;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #071b36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.profile-designation {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: #e0f2fe;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.profile-tenure {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.profile-tenure strong {
  color: #e2e8f0;
}

.profile-summary {
  font-size: 0.92rem;
  color: #cbd5e1;
  max-width: 460px;
  margin: 0 auto 1.1rem;
  line-height: 1.55;
}

.education-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Quick Action Buttons & Grid
   -------------------------------------------------------------------------- */
.quick-actions-bar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0072ff 0%, #00d2ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px -4px rgba(0, 114, 255, 0.5);
  font-size: 1.05rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(0, 210, 255, 0.65);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-primary-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn-primary-outline:hover {
  background: rgba(0, 210, 255, 0.12);
  transform: translateY(-2px);
}

/* Action Tile 4-Column Grid */
.action-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.action-tile {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.call-tile .tile-icon {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
}

.whatsapp-tile .tile-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.email-tile .tile-icon {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
}

.location-tile .tile-icon {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.action-tile:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

.action-tile:hover .tile-icon {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Interactive 3D Physical Business Card Simulation
   -------------------------------------------------------------------------- */
.card-preview-section {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 0.2rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-heading .subtext {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.flip-card-container {
  width: 100%;
  height: 330px;
  perspective: 1200px;
  cursor: pointer;
  user-select: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.7s cubic-bezier(0.2, 0.85, 0.4, 1.2);
  transform-style: preserve-3d;
}

.flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Front Face */
.card-front {
  background: #ffffff;
  display: flex;
  position: relative;
}

/* Dynamic Navy curved background on the right side matching original card */
.card-front::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 58%;
  height: 120%;
  background: linear-gradient(145deg, #072e66 0%, #031737 100%);
  transform: skewX(-14deg);
  border-left: 5px solid #00c3ff;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.card-front-left {
  position: relative;
  z-index: 2;
  width: 46%;
  padding: 1.4rem 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-laurel-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bml-wreath-svg {
  width: 110px;
  height: 95px;
  display: block;
}

.card-brand-divider {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.3rem 0;
}

.card-brand-divider span:first-child,
.card-brand-divider span:last-child {
  flex: 1;
  height: 1px;
  background-color: #072959;
}

.divider-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #072959;
}

.card-tagline {
  font-size: 0.62rem;
  font-style: italic;
  color: #093b7b;
  text-align: center;
  line-height: 1.35;
  font-weight: 600;
}

.card-front-right {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 1.5rem 1.2rem 1.1rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-executive-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.15;
}

.card-executive-header h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-top: 0.15rem;
}

.accent-bar {
  width: 36px;
  height: 3.5px;
  background: #00d2ff;
  margin: 0.5rem 0 0.85rem;
  border-radius: var(--radius-full);
}

.card-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.card-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-icon-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00a8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-text-wrap small {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1;
  margin-bottom: 2px;
}

.contact-text-wrap a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  word-break: break-all;
}

.card-front-qr {
  display: flex;
  justify-content: flex-end;
}

.qr-box-small {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.qr-box-small img {
  width: 100%;
  height: 100%;
  display: block;
}

.flip-hint-badge {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #f1f5f9;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Card Back Face */
.card-back {
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  transform: rotateY(180deg);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid #0072ff;
  color: #0f172a;
  position: relative;
}

.card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 38px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
}

.card-back-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed #cbd5e1;
}

.back-logo-center {
  margin: 0 auto;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: #072959;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.back-qr-corner img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
}

.card-back-brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin: 0.4rem 0;
}

.brand-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.4rem 0.2rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.brand-badge-icon {
  font-size: 0.6rem;
  font-weight: 800;
  color: #0072ff;
  margin-bottom: 0.15rem;
}

.brand-item strong {
  display: block;
  font-size: 0.6rem;
  color: #0f172a;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-item small {
  display: block;
  font-size: 0.52rem;
  color: #64748b;
  line-height: 1;
}

.card-back-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
}

.back-office-col h5 {
  font-size: 0.68rem;
  font-weight: 800;
  color: #072959;
  margin-bottom: 0.2rem;
}

.back-office-col p {
  font-size: 0.55rem;
  color: #475569;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.back-office-col span {
  font-size: 0.56rem;
  font-weight: 700;
  color: #0284c7;
}

.flip-controls {
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

.pill-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-highlight);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
}

.pill-btn:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--accent-cyan);
}

/* --------------------------------------------------------------------------
   Section Containers & Titles
   -------------------------------------------------------------------------- */
.section-container {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.section-title-wrap {
  text-align: left;
}

.badge-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.3rem;
}

.section-title-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.section-title-wrap p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Ventures & Companies Grid
   -------------------------------------------------------------------------- */
.ventures-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.1rem;
  backdrop-filter: blur(16px);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.venture-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 210, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.venture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.venture-icon {
  /* width: 42px;
  height: 42px; */
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  /* font-size: 1.2rem; */
}

.venture-icon img {
    object-fit: scale-down;
    height: 64px;
    width: 100%;
    padding: 5px;
}

.v-blue {
  background: rgba(0, 114, 255, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(0, 114, 255, 0.3);
}

.v-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.v-purple {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.v-green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.v-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.venture-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.venture-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.venture-card p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-cyan);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.venture-link:hover {
  color: #ffffff;
  gap: 0.6rem;
}

/* --------------------------------------------------------------------------
   Global Offices Section
   -------------------------------------------------------------------------- */
.office-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.office-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.office-tab.active {
  background: linear-gradient(135deg, #072959, #0052cc);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.35);
}

.office-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.office-panel.active {
  display: block;
}

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

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

.office-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: relative;
}

.office-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: rgba(0, 210, 255, 0.12);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 210, 255, 0.25);
}

.office-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.office-address {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.office-address i {
  color: #f43f5e;
  margin-top: 4px;
}

.office-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-bottom: 1.2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.contact-row i {
  width: 18px;
  color: var(--accent-cyan);
}

.contact-row span {
  color: var(--text-secondary);
}

.contact-row a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-row a:hover {
  color: var(--accent-cyan);
}

.office-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.office-actions .btn {
  font-size: 0.84rem;
  padding: 0.75rem 0.5rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.digital-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.footer-logo i {
  color: var(--accent-cyan);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.copyright {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Modals & Bottom Sheet
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 20, 0.82);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #091a32;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  padding: 1.5rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Call Modal Options */
.call-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.call-option-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #ffffff;
  transition: var(--transition-fast);
}

.call-option-item:hover {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--accent-cyan);
  transform: translateX(4px);
}

.call-flag {
  font-size: 1.5rem;
}

.call-text {
  flex: 1;
}

.call-text strong {
  display: block;
  font-size: 0.88rem;
}

.call-text span {
  font-size: 0.8rem;
  color: var(--accent-cyan);
}

.call-option-item i {
  color: var(--text-muted);
}

/* QR Display Modal */
.text-center {
  text-align: center;
}

.qr-display-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.qr-card-frame {
  background: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.qr-card-frame img {
  width: 200px;
  height: 200px;
  display: block;
}

.qr-display-wrap h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-top: 0.2rem;
}

.qr-display-wrap p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   Toast Notification
   -------------------------------------------------------------------------- */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0284c7;
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .modal-backdrop {
    align-items: center;
  }

  .flip-card-container {
    height: 330px;
  }

  .card-front-left {
    padding: 1.8rem 1.2rem 1.4rem;
  }

  .card-front-right {
    padding: 1.8rem 1.4rem 1.4rem;
  }

  .card-executive-header h3 {
    font-size: 1.55rem;
  }
}

@media (max-width: 480px) {
  .flip-card-container {
    height: 320px;
  }

  .card-front-left {
    width: 44%;
    padding: 1.2rem 0.6rem 0.9rem;
  }

  .card-front-right {
    width: 56%;
    padding: 1.2rem 0.8rem 0.9rem;
  }

  .bml-wreath-svg {
    width: 85px;
    height: 75px;
  }

  .card-executive-header h3 {
    font-size: 1.18rem;
  }

  .contact-text-wrap a {
    font-size: 0.68rem;
  }

  .qr-box-small {
    width: 46px;
    height: 46px;
  }

  .card-back-brands {
    grid-template-columns: repeat(3, 1fr);
  }

  .office-actions {
    grid-template-columns: 1fr;
  }
}