@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* Cabinet Grotesk Fonts (Local) */
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/sample style/CabinetGrotesk_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/sample style/CabinetGrotesk_Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/sample style/CabinetGrotesk_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/sample style/CabinetGrotesk_Extrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinet Grotesk';
  src: url('assets/sample style/CabinetGrotesk_Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* DM Sans (Local Latin Subset) */
@font-face {
  font-family: 'DM Sans';
  src: url('assets/sample style/DMSans_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Fraunces (Local Latin Subset) */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/sample style/Fraunces_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Premium Reverted Color System: Yellow Main, Navy Secondary */
  --bg-dark: #eebd00;
  /* Warm bright yellow base */
  --bg-darker: #eebd00;
  /* Soft gold background */
  --surface-glass: rgba(255, 255, 255, 0.72);
  --border-glass: rgba(32, 32, 112, 0.08);

  /* Accent Colors */
  --accent-gold: #202070;
  /* Royal Navy Blue */
  --accent-gold-light: #2a2a8a;
  --accent-gold-gradient: #202070;
  --accent-yellow: #eebd00;
  /* Yellow highlight */

  /* Text Colors */
  --text-primary: #14144a;
  --text-secondary: #1e1e62;
  --text-muted: #2a2a7a;

  /* Brands Styling */
  --color-threads: #000000;
  --color-x: #0f1419;
  --color-facebook: #1877f2;
  --color-instagram: #e1306c;
  --color-whatsapp: #25d366;

  /* Typography */
  --font-heading: 'Cabinet Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --shadow-card: 0 10px 30px -10px rgba(32, 32, 112, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Mesh Gradient Backdrops */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #eebd00;
}

.blob {
  display: none;
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(120px);
  opacity: 0.18;
  animation: drift 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: var(--accent-gold);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background-color: var(--accent-yellow);
  bottom: -150px;
  right: -150px;
  animation-delay: -7s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(120px, 80px) scale(1.15);
  }

  100% {
    transform: translate(-60px, 150px) scale(0.9);
  }
}

/* Main Layout Centering Container */
.linktree-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1rem;
}

/* Main Business Card */
.linktree-card {
  background: transparent;
  width: 100%;
  max-width: 560px;
  padding: 1rem 0.5rem;
  position: relative;
  z-index: 10;
}

/* Lang Switcher Pill */
.card-header-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.lang-switcher-pill {
  background: rgba(32, 32, 112, 0.04);
  border: 1px solid rgba(32, 32, 112, 0.06);
  border-radius: var(--radius-full);
  padding: 4px;
  display: flex;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.lang-btn.active {
  background: var(--accent-gold);
  color: #FFFDEE;
  box-shadow: 0 2px 8px rgba(32, 32, 112, 0.18);
}

/* Profile Hero */
.profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.75rem;
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 1.25rem;
}

.avatar-img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-card);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  transition: var(--transition-fast);
}

.avatar-container:hover .avatar-img {
  transform: scale(1.05);
}

.avatar-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  border: 2px dashed var(--accent-yellow);
  animation: spin 35s linear infinite;
  z-index: 1;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.status-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #10B981;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  border: 3.5px solid #fff;
  z-index: 3;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.profile-credentials {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-yellow);
  background: var(--accent-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(32, 32, 112, 0.1);
}

.profile-name-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.profile-brand-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem 0 0.6rem 0;
}

.profile-brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.profile-brand-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.profile-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.profile-tagline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 350px;
  line-height: 1.5;
}

/* Micro Metrics Layout */
.profile-micro-metrics {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.25rem 0;
  width: 100%;
}

.micro-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.micro-metric-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.micro-metric-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Business Card CTA Actions */
.profile-card-actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.75rem;
}

.action-btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  outline: none;
}

.action-btn-primary {
  background: var(--accent-gold);
  color: #FFFDEE;
  border: none;
  box-shadow: 0 4px 15px rgba(32, 32, 112, 0.15);
}

.action-btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 32, 112, 0.22);
}

.action-btn-secondary {
  background: rgba(32, 32, 112, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(32, 32, 112, 0.08);
}

.action-btn-secondary:hover {
  background: rgba(32, 32, 112, 0.08);
  transform: translateY(-2px);
}

/* Linktree Accordion Stack */
.linktree-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.linktree-item {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(32, 32, 112, 0.06);
  background: rgba(255, 255, 255, 0.45);
  transition: var(--transition-fast);
}

.linktree-item:hover {
  border-color: rgba(32, 32, 112, 0.15);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 15px rgba(32, 32, 112, 0.03);
}

.accordion-header {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  transition: var(--transition-fast);
  outline: none;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-header-left svg {
  color: var(--accent-gold);
}

.accordion-arrow {
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  background: rgba(255, 255, 255, 0.35);
}

.accordion-inner {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(32, 32, 112, 0.04);
}

/* Compact Timeline Details */
.timeline {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(32, 32, 112, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: calc(-1.25rem - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(32, 32, 112, 0.1);
}

.timeline-item.education .timeline-marker {
  background: var(--accent-gold);
}

.timeline-date {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.timeline-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.timeline-org {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Skills/Expertise Chips */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-chip {
  background: rgba(32, 32, 112, 0.04);
  border: 1px solid rgba(32, 32, 112, 0.08);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.skill-chip svg {
  color: var(--accent-yellow);
}

.skill-chip:hover {
  background: var(--accent-gold);
  color: #FFFDEE;
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Contact WhatsApp Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-row .form-group {
  flex: 1;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(32, 32, 112, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(32, 32, 112, 0.04);
}

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

.btn-submit {
  width: 100%;
  background: #10B981;
  color: #fff;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
  outline: none;
}

.btn-submit:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.32);
}

.form-feedback {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 0.5rem;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Compact Social Grid */
.socials-grid {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin: 0.5rem 0 1.25rem 0;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--accent-gold);
  border: 1px solid rgba(32, 32, 112, 0.08);
  background: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  color: #fff;
}

.social-btn-threads:hover {
  background: var(--color-threads);
  border-color: var(--color-threads);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-btn-x:hover {
  background: var(--color-x);
  border-color: var(--color-x);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-btn-facebook:hover {
  background: var(--color-facebook);
  border-color: var(--color-facebook);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.32);
}

.social-btn-instagram:hover {
  background: var(--color-instagram);
  border-color: var(--color-instagram);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.32);
}

.social-btn-tiktok:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Custom Toasts Styling */
#toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-notification {
  background: var(--accent-gold);
  color: #FFFDEE;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(32, 32, 112, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  white-space: nowrap;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Minimal Footer copyright */
.linktree-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Campaign Speech Styling */
.speech-container {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.poem-block {
  font-style: italic;
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-yellow);
  padding-left: 1rem;
  margin: 0.5rem 0;
  font-weight: 500;
  line-height: 1.5;
}

.speech-paragraph {
  text-align: justify;
  text-justify: inter-word;
}

/* Direct Speech Section Styling */
.profile-speech-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(32, 32, 112, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.profile-speech-section:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(32, 32, 112, 0.15);
  box-shadow: 0 5px 15px rgba(32, 32, 112, 0.03);
}

.speech-section-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speech-section-title svg {
  color: var(--accent-gold);
  opacity: 0.85;
}

/* Responsive Grid Layout Wrappers */
.profile-layout-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.profile-main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.25rem;
}

/* Tablet Layout Modifications */
@media (min-width: 768px) {
  html {
    font-size: 20px;
  }
  
  .blob {
    display: block; /* Enable subtle animated gradient backdrops on tablets */
  }

  .linktree-card {
    max-width: 680px;
    padding: 1.5rem 1.25rem;
  }

  .profile-speech-section {
    padding: 2rem;
  }

  .profile-card-actions {
    gap: 1rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .profile-micro-metrics {
    gap: 2.5rem;
  }
}

/* Desktop Widescreen Layout Modifications (Split-pane dashboard) */
@media (min-width: 1024px) {
  html {
    font-size: 19px;
  }

  .linktree-container {
    padding: 3.5rem 2rem;
    align-items: flex-start; /* Prevent vertical centering scrollbar issues */
  }

  .linktree-card {
    max-width: 1140px;
    padding: 2rem 1.5rem;
  }

  .profile-layout-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .profile-sidebar {
    position: sticky;
    top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(32, 32, 112, 0.06);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    transition: var(--transition-fast);
  }

  .profile-sidebar:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(32, 32, 112, 0.15);
    box-shadow: var(--shadow-card);
  }

  .profile-hero {
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .profile-card-actions {
    margin-bottom: 0;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .profile-card-actions .action-btn {
    width: 100%;
    flex: none;
  }

  .profile-main-content {
    gap: 1.5rem;
  }

  .profile-speech-section {
    margin-bottom: 0;
    padding: 2.25rem;
  }

  .linktree-stack {
    margin-bottom: 0;
  }

  /* Make accordion content scroll beautifully on large displays */
  .accordion-inner {
    padding: 1.5rem 2rem 2rem 2rem;
  }
}

/* Mobile Screens Styles Override */
@media (max-width: 480px) {
  .linktree-card {
    padding: 1.75rem;
    border-radius: var(--radius-md);
  }

  .profile-name-title {
    font-size: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* ==========================================================================
   Google Translate Styling & Hiding Controls
   ========================================================================== */

/* Hide Google Translate top banner, toolbar, and balloon popups */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner,
.goog-te-balloon-frame,
#goog-gt-tt,
.skiptranslate,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

html, body {
  top: 0px !important;
}

/* Hide the native Google Translate gadget elements and links */
#google_translate_element,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

/* Disable highlighting behavior when hovering translated text */
.goog-text-highlight {
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Custom Styled Select Dropdown inside Language Switcher Pill */
.lang-dropdown-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 2px;
}

.lang-dropdown-select {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.lang-dropdown-select:hover {
  background: rgba(32, 32, 112, 0.08);
}

.lang-dropdown-select.active {
  background: var(--accent-gold);
  color: #FFFDEE;
  box-shadow: 0 2px 8px rgba(32, 32, 112, 0.18);
}

/* Dropdown options styling */
.lang-dropdown-select option {
  background: #FFFDEE;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.lang-dropdown-select optgroup {
  background: #FFFDEE;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-body);
}

/* WhatsApp Direct CTA Button */
.whatsapp-cta-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0.5rem 0 1.25rem 0;
}

.whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  background: #25D366; /* Flat WhatsApp Green */
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
  transition: var(--transition-fast);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
  stroke: #fff;
  fill: none;
}

/* ==========================================================================
   Share Modal Styling
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 32, 112, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content.share-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(32, 32, 112, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .modal-content.share-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(32, 32, 112, 0.06);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 0;
}

.modal-close-btn {
  background: rgba(32, 32, 112, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  outline: none;
}

.modal-close-btn:hover {
  background: rgba(32, 32, 112, 0.1);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 0.75rem;
  padding: 1.5rem;
}

.share-btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
}

.share-btn-item:hover {
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.share-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Brands styling */
.share-btn-item.whatsapp .share-icon-circle { background: #25D366; }
.share-btn-item.telegram .share-icon-circle { background: #0088cc; }
.share-btn-item.facebook .share-icon-circle { background: #1877F2; }
.share-btn-item.twitter .share-icon-circle { background: #000000; }
.share-btn-item.linkedin .share-icon-circle { background: #0A66C2; }
.share-btn-item.copy-link .share-icon-circle { background: #6B7280; }

.share-btn-item:hover .share-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.share-modal-footer {
  padding: 1rem 1.5rem;
  background: rgba(32, 32, 112, 0.03);
  border-top: 1px solid rgba(32, 32, 112, 0.06);
  text-align: center;
}

.preview-utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.preview-utility-link:hover {
  color: var(--accent-gold);
}

.preview-utility-link svg {
  stroke: currentColor;
}



