/* --------------------------------------------------------
   QJPR Pranali Private Limited - Theme Custom Stylesheet
   Design Ethos: Sleek, Premium, Corporate Glassmorphic
   -------------------------------------------------------- */

/* 1. Root & Variables */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* Color Palette */
  --bg-primary: #030712;
  --color-primary: #00f2fe;
  --color-secondary: #4facfe;
  --color-accent: #0052d4;
  --color-glow: rgba(0, 242, 254, 0.25);

  /* Glass Variables */
  --glass-bg: rgba(10, 25, 47, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --glass-blur: 25px;
}

/* 2. Global Resets & Elements */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: #f8fafc;
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: #ffffff;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* 3. Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-pulse {
  animation: pulse-logo 2.2s infinite ease-in-out;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(0.9);
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.7));
  }
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 24px auto 12px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 10px;
  animation: fill-loader 2s ease-in-out forwards;
}

@keyframes fill-loader {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.loader-text {
  font-family: var(--font-body);
  color: #64748b;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}

/* 4. Background Effects */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #06112c 0%, #030712 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  mix-blend-mode: screen;
  animation: blob-drift 24s infinite ease-in-out alternate;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, rgba(0, 114, 255, 0.2) 80%);
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #8a2be2 0%, rgba(59, 130, 246, 0.1) 80%);
  bottom: -15%;
  right: -5%;
  animation-delay: -6s;
  animation-duration: 30s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00ffcc 0%, rgba(10, 102, 194, 0.15) 80%);
  top: 40%;
  left: 30%;
  animation-delay: -12s;
  animation-duration: 34s;
}

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

  33% {
    transform: translate(90px, -70px) scale(1.15) rotate(120deg);
  }

  66% {
    transform: translate(-60px, 100px) scale(0.9) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

/* Subtle Grid overlay */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.2) 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.2) 80%);
}

/* Dynamic CSS Particles Overlay */
.particles-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(0, 242, 254, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-rise infinite linear;
}

@keyframes particle-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  15% {
    opacity: 0.7;
  }

  85% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-130px) scale(0.4);
    opacity: 0;
  }
}

/* 5. Structure & Layout */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-content {
  flex-grow: 1;
  max-width: 1200px;
  padding: 0 24px;
}

/* 6. Premium Glass Cards Foundation */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

/* Premium Gradient Border Effect */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(0, 242, 254, 0.25) 0%,
      rgba(255, 255, 255, 0.03) 40%,
      rgba(255, 255, 255, 0.03) 70%,
      rgba(79, 172, 254, 0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* 7. Hero Section */
.hero {
  padding: 20px 0 50px;
  position: relative;
  z-index: 10;
}

.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
  margin-bottom: 6px;
  padding-left: 4px;
}

.qjpr-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  flex-shrink: 0;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .qjpr-logo-img {
    width: 56px;
    height: 56px;
  }

  .section-heading {
    padding-left: 0 !important;
    text-align: left !important;
  }
}

.brand-logo-container {
  display: inline-block;
  position: relative;
}

.logo-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.35) 0%, rgba(67, 100, 247, 0) 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.company-logo {
  position: relative;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.company-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 2.85rem;
  letter-spacing: -0.01em;
  word-spacing: 0.22em;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 65%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  max-width: 900px;
  text-transform: uppercase;
  line-height: 1.2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .company-title {
    font-size: 2.1rem;
    letter-spacing: -0.02em;
  }
}



/* 8. Links Grid & Card System */
.links-section {
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
}

.section-heading {
  padding-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-text {
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 10px 0;
}

@media (max-width: 992px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Premium Card Elements */
.link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  justify-content: space-between;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.link-card:hover .card-glow {
  opacity: 1;
}

.card-body-custom {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  width: 100%;
}

.card-icon-container {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: var(--brand-color, var(--color-accent));
  box-shadow: 0 8px 20px -5px var(--brand-color, var(--color-accent));
}

.card-icon-container::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: var(--brand-color, var(--color-accent));
  opacity: 0.35;
  filter: blur(6px);
  z-index: -1;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.card-info {
  margin-bottom: 26px;
  flex-grow: 1;
  width: 100%;
}

.card-info h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -0.015em;
}

.card-info p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* Card Hover States (with VanillaTilt integrations) */
.link-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-card:hover {
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 242, 254, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 242, 254, 0.3) !important;
}

.link-card:hover .card-icon-container {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 12px 25px -5px var(--brand-color, var(--color-accent));
}

.link-card:hover .card-icon-container::after {
  opacity: 0.7;
  filter: blur(10px);
}

/* 9. Premium Button System */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
  background-size: 200% 100%;
  background-position: left center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(67, 100, 247, 0.35);
  cursor: pointer;
}

.btn-premium:hover {
  background-position: right center;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(67, 100, 247, 0.5), 0 0 12px rgba(0, 242, 254, 0.3);
}

.btn-premium span {
  position: relative;
  z-index: 2;
}

.btn-premium .arrow-icon {
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-premium:hover .arrow-icon {
  transform: translateX(5px);
}

/* Shine Effect overlay */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 1;
}

.btn-premium:hover .btn-shine {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  100% {
    left: 150%;
  }
}

/* JS Click Ripple System */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
  z-index: 5;
}

@keyframes ripple-effect {
  to {
    transform: scale(4.5);
    opacity: 0;
  }
}

/* 10. Redesigned Contact Section */
.contact-card-wrapper {
  margin: 30px 0 50px;
  position: relative;
  z-index: 10;
}

.contact-glass-pane {
  padding: 48px;
  background: rgba(10, 25, 47, 0.35);
}

@media (max-width: 992px) {
  .contact-glass-pane {
    padding: 36px;
  }
}

@media (max-width: 576px) {
  .contact-glass-pane {
    padding: 28px 20px;
  }
}

.contact-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.bullet-glow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.contact-copy h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.15rem;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-copy .desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: inherit;
  position: relative;
}

.contact-item:not(.no-link):hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(0, 242, 254, 0.15);
  transform: translateX(6px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 20px;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.contact-item:not(.no-link):hover .contact-icon {
  transform: scale(1.1);
}

.email-icon {
  background: rgba(13, 110, 253, 0.12);
  border: 1px solid rgba(13, 110, 253, 0.25);
  color: #3b82f6;
  box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.2);
}

.phone-icon {
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.25);
  color: #22c55e;
  box-shadow: 0 4px 15px -3px rgba(34, 197, 94, 0.2);
}

.location-icon {
  background: rgba(108, 117, 125, 0.12);
  border: 1px solid rgba(108, 117, 125, 0.25);
  color: #94a3b8;
  box-shadow: 0 4px 15px -3px rgba(148, 163, 184, 0.25);
}

.contact-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-info .label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-info .value {
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 600;
  color: #f1f5f9;
}

.arrow-indicator {
  font-size: 0.85rem;
  color: #475569;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover .arrow-indicator {
  transform: translateX(4px);
  color: var(--color-primary);
}

/* 11. Modern Redesigned Footer */
.footer-glass {
  background: rgba(8, 18, 38, 0.5);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 10;
  margin-top: 20px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted-custom {
  color: #64748b;
  font-size: 0.85rem;
  font-family: var(--font-body);
  line-height: 1.5;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 18px -3px rgba(0, 0, 0, 0.4);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 10px 20px -3px rgba(220, 39, 67, 0.4);
}

.social-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 10px 20px -3px rgba(24, 119, 242, 0.4);
}

.social-link.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 10px 20px -3px rgba(255, 0, 0, 0.4);
}

.social-link.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 10px 20px -3px rgba(37, 211, 102, 0.4);
}

.footer-links {
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.footer-quick-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-quick-link:hover {
  color: var(--color-primary);
}

.footer-links .divider {
  color: #334155;
  margin: 0 10px;
}

.copyright {
  font-family: var(--font-body);
  color: #475569;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

/* 12. Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.6);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 242, 254, 0.45);
}

/* 13. Dynamic Tilt & GSAP Entrance Overrides */
/* Keeps layout items static during layout calculation, avoids flickering */
.links-grid>.glass-card,
.email-grid>.glass-card {
  opacity: 0;
  transform: translateY(30px);
}

.contact-glass-pane {
  opacity: 0;
  transform: translateY(30px);
}

/* 14. Pending Cards & Badges styling */
.pending-card {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.04) !important;
}

.pending-card:hover {
  box-shadow: var(--glass-shadow) !important;
  transform: none !important;
}

.pending-card .card-info p {
  color: #64748b;
}

.btn-pending {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px dashed rgba(255, 255, 255, 0.15) !important;
  color: #64748b !important;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
}

.pending-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* 15. WhatsApp Recruiter Helpline Modal System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 7, 18, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  width: 90%;
  max-width: 440px;
  background: rgba(10, 25, 47, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.85),
    0 0 30px rgba(0, 242, 254, 0.1) !important;
  padding: 36px 28px;
  border-radius: 28px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show .modal-window {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.modal-icon-glow {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px -5px rgba(37, 211, 102, 0.35);
}

.whatsapp-modal-main-icon {
  font-size: 1.85rem;
  color: #25d366;
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.4));
}

.modal-header-custom h3 {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 4px;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatsapp-modal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.whatsapp-number-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-number-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.pill-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-pill-icon {
  font-size: 1.1rem;
  color: #25d366;
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.3));
}

.pill-actions {
  display: flex;
  gap: 10px;
}

.pill-action-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.pill-action-icon.chat-link:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.pill-action-icon.call-link:hover {
  background: rgba(33, 150, 243, 0.12);
  border-color: rgba(33, 150, 243, 0.25);
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

/* 16. Corporate Email Directory Layout */
.email-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px 0;
}

@media (max-width: 992px) {
  .email-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .email-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.email-card {
  padding: 24px;
  height: 100%;
}

.email-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}

.email-icon-container {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--dept-color, var(--color-accent));
  box-shadow: 0 6px 15px -4px rgba(0, 0, 0, 0.4);
}

.email-info-block {
  width: 100%;
  margin-bottom: 18px;
  flex-grow: 1;
}

.email-info-block h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.email-link-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #94a3b8;
  word-break: break-all;
  margin: 0;
  text-decoration: none !important;
  transition: color 0.3s ease;
  display: inline-block;
}

.email-link-text:hover {
  color: var(--color-primary) !important;
  text-decoration: underline !important;
}

.email-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.email-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  cursor: pointer;
}

.mail-btn {
  background: rgba(67, 100, 247, 0.1);
  color: #fff;
  border-color: rgba(67, 100, 247, 0.2);
}

.mail-btn:hover {
  background: rgba(67, 100, 247, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 100, 247, 0.2);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.02);
  color: #94a3b8;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.copy-btn.copied {
  border-color: rgba(34, 197, 94, 0.4) !important;
  background: rgba(34, 197, 94, 0.15) !important;
  color: #4ade80 !important;
}

/* 17. Multi Button Row Adjustments */
.multi-btn-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}

.multi-btn-row .btn-premium {
  padding: 12px 6px !important;
  font-size: 0.88rem;
  white-space: nowrap;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.multi-btn-row .btn-premium .arrow-icon {
  margin-left: 6px !important;
  font-size: 0.82rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  transform: none;
}

.multi-btn-row .btn-premium:hover .arrow-icon {
  transform: translateX(3px);
}