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

:root {
  --primary: #6E1941;
  --primary-light: #9B235B;
  --primary-glow: rgba(155, 35, 91, 0.45);
  --bg-dark-1: #1F0712;
  --bg-dark-2: #380C21;
  --bg-dark-3: #12040B;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-hover: rgba(255, 255, 255, 0.09);
  --text-main: #FFFFFF;
  --text-muted: #D1B3C4;
  --text-dim: #9E7D91;
  --accent-gold: #F59E0B;
  --accent-rose: #FB7185;
  --accent-viber: #7360F2;
  --accent-blue: #0A66C2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark-3);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Single Viewport Container */
.viewport-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  background: radial-gradient(circle at 50% 20%, #220513 0%, #100209 50%, #050003 100%);
  overflow: hidden;
}

/* Ambient glow blobs - subtle and deeper */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 550px;
  height: 550px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(110, 25, 65, 0.4) 0%, rgba(35, 7, 20, 0) 70%);
  animation: pulseBlob 8s ease-in-out infinite alternate;
}

.blob-2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: 5%;
  background: radial-gradient(circle, rgba(75, 15, 45, 0.25) 0%, rgba(10, 2, 6, 0) 70%);
}

.blob-3 {
  width: 350px;
  height: 350px;
  top: 25%;
  right: 5%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(10, 2, 6, 0) 70%);
}

@keyframes pulseBlob {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* Main Frosted Glass Card */
.main-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 980px;
  background: var(--glass-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.65),
    0 0 50px rgba(110, 25, 65, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Header & Brand */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  background: #ffffff;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px var(--primary-glow);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05) rotate(2deg);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: linear-gradient(135deg, #FFFFFF 30%, #FFD6E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Upgrading Status Badge */
.upgrade-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 100px;
  color: #FCD34D;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.upgrade-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #F59E0B;
  box-shadow: 0 0 10px #F59E0B;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}


/* Grid Layout for Details */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(155, 35, 91, 0.25);
  border: 1px solid rgba(155, 35, 91, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD6E8;
  flex-shrink: 0;
}

.card-icon svg {
  width: 18px;
  height: 18px;
}

.card-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: var(--text-main);
  transition: opacity 0.2s ease;
}

.contact-item:hover {
  opacity: 0.9;
}

.contact-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-value {
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-word;
}

.viber-pill {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent-viber);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.link-pill {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.address-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #F1F5F9;
}

/* Footer Action Bar */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

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

.social-btn.fb:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: #1877F2;
  color: #60A5FA;
}

.social-btn.in:hover {
  background: rgba(10, 102, 194, 0.2);
  border-color: #0A66C2;
  color: #93C5FD;
}

.social-btn.it:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: #F59E0B;
  color: #FCD34D;
}

.copyright-text {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Quick Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #9B235B 0%, #6E1941 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(110, 25, 65, 0.4);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 35, 91, 0.55);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .brand-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main-card {
    padding: 32px 24px;
  }
  
  .viewport-container {
    height: auto;
    min-height: 100vh;
    padding: 24px 16px;
  }
}

@media (max-width: 640px) {
  .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .copyright-text {
    text-align: center;
  }
  
  .action-buttons {
    width: 100%;
  }
  
  .action-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
