/* ============================================================
   VOO VCARD — Template 33: NEON GLOW
   A futuristic glassmorphism template with animated gradients,
   particle background, and neon accents.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --neon-primary: #6366f1;
  --neon-secondary: #8b5cf6;
  --neon-accent: #06b6d4;
  --neon-pink: #ec4899;
  --neon-glow: rgba(99, 102, 241, 0.4);
  --neon-bg: #0a0a1a;
  --neon-surface: rgba(255, 255, 255, 0.04);
  --neon-surface-hover: rgba(255, 255, 255, 0.08);
  --neon-border: rgba(255, 255, 255, 0.08);
  --neon-text: #e2e8f0;
  --neon-text-dim: #94a3b8;
  --neon-radius: 20px;
  --neon-radius-sm: 12px;
  --neon-font: 'Cairo', 'Inter', sans-serif;
}

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

body {
  font-family: var(--neon-font);
  background: var(--neon-bg);
  color: var(--neon-text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.neon-main {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* ---------- Particle Canvas ---------- */
#neonParticles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Background gradient orbs ---------- */
.neon-bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.neon-bg-orb--1 {
  width: 400px; height: 400px;
  background: var(--neon-primary);
  top: -100px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.neon-bg-orb--2 {
  width: 350px; height: 350px;
  background: var(--neon-pink);
  bottom: 10%; left: -80px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.neon-bg-orb--3 {
  width: 300px; height: 300px;
  background: var(--neon-accent);
  top: 50%; right: -50px;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -40px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -50px); }
}

/* ---------- Banner / Cover ---------- */
.neon-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  z-index: 1;
}
.neon-banner img,
.neon-banner video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.neon-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 70%;
  background: linear-gradient(to top, var(--neon-bg), transparent);
  z-index: 1;
}

/* ---------- Profile Section ---------- */
.neon-profile {
  position: relative;
  z-index: 2;
  margin-top: -90px;
  padding: 0 24px;
  text-align: center;
}

.neon-avatar-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
}

.neon-avatar-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    from 0deg,
    var(--neon-primary),
    var(--neon-secondary),
    var(--neon-pink),
    var(--neon-accent),
    var(--neon-primary)
  );
  animation: ringRotate 4s linear infinite;
  position: relative;
}

@keyframes ringRotate {
  to { filter: hue-rotate(360deg); }
}

.neon-avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--neon-bg);
}

.neon-online-dot {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 18px; height: 18px;
  background: #22c55e;
  border: 3px solid var(--neon-bg);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.neon-name {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 0 20px var(--neon-glow);
}

.neon-occupation {
  font-size: 15px;
  color: var(--neon-accent);
  font-weight: 500;
  margin-bottom: 6px;
}

.neon-company {
  font-size: 13px;
  color: var(--neon-text-dim);
  margin-bottom: 16px;
}

.neon-description {
  font-size: 14px;
  color: var(--neon-text-dim);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 24px;
}

/* ---------- Action Buttons ---------- */
.neon-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.neon-action-btn {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--neon-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.neon-action-btn i {
  font-size: 18px;
  color: var(--neon-primary);
}
.neon-action-btn:hover {
  background: var(--neon-surface-hover);
  border-color: var(--neon-primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

/* ---------- Social Icons ---------- */
.neon-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 24px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.neon-social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-surface);
  border: 1px solid var(--neon-border);
  color: var(--neon-text);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.neon-social-icon:hover {
  background: var(--neon-primary);
  border-color: var(--neon-primary);
  color: #fff;
  box-shadow: 0 0 18px var(--neon-glow);
  transform: scale(1.15);
  text-decoration: none;
}

/* ---------- Glass Card (Shared) ---------- */
.neon-glass {
  background: var(--neon-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius);
  padding: 24px;
  margin: 0 16px 20px;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.neon-glass:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.08);
}

/* ---------- Section Heading ---------- */
.neon-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.neon-section-title i {
  color: var(--neon-primary);
  font-size: 18px;
}
.neon-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--neon-border), transparent);
  margin-inline-start: 8px;
}

/* ---------- Contact Info ---------- */
.neon-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.neon-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--neon-text);
  padding: 12px 16px;
  border-radius: var(--neon-radius-sm);
  background: rgba(255,255,255, 0.02);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.neon-contact-item:hover {
  border-color: var(--neon-border);
  background: var(--neon-surface-hover);
  color: #fff;
  text-decoration: none;
}
.neon-contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.neon-contact-label {
  font-size: 11px;
  color: var(--neon-text-dim);
  font-weight: 500;
}
.neon-contact-value {
  font-size: 14px;
  font-weight: 600;
  direction: ltr;
}

/* ---------- Services ---------- */
.neon-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.neon-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.neon-service-card:hover {
  border-color: var(--neon-primary);
  box-shadow: 0 0 24px rgba(99,102,241,0.12);
  transform: translateY(-4px);
}
.neon-service-card img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}
.neon-service-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.neon-service-card p {
  font-size: 12px;
  color: var(--neon-text-dim);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Gallery ---------- */
.neon-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.neon-gallery-item {
  border-radius: var(--neon-radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.neon-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.neon-gallery-item:hover img {
  transform: scale(1.1);
}
.neon-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.neon-gallery-item:hover::after {
  opacity: 1;
}
/* Video play overlay */
.neon-gallery-item .video-play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* ---------- Products ---------- */
.neon-products-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.neon-products-scroll::-webkit-scrollbar { height: 4px; }
.neon-products-scroll::-webkit-scrollbar-track { background: transparent; }
.neon-products-scroll::-webkit-scrollbar-thumb { background: var(--neon-primary); border-radius: 4px; }

.neon-product-card {
  min-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}
.neon-product-card:hover {
  border-color: var(--neon-primary);
  transform: translateY(-4px);
}
.neon-product-img {
  height: 160px;
  overflow: hidden;
}
.neon-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.neon-product-card:hover .neon-product-img img {
  transform: scale(1.08);
}
.neon-product-body {
  padding: 14px;
}
.neon-product-body h4 {
  font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.neon-product-body .neon-price {
  font-size: 16px; font-weight: 800; color: var(--neon-accent);
}
.neon-product-body p {
  font-size: 12px; color: var(--neon-text-dim); margin: 6px 0 0;
}

/* ---------- Testimonials ---------- */
.neon-testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  padding: 20px;
  margin-bottom: 14px;
  position: relative;
}
.neon-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 60px;
  line-height: 1;
  color: var(--neon-primary);
  opacity: 0.2;
  font-family: serif;
}
.neon-testimonial-text {
  font-size: 13px;
  color: var(--neon-text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.neon-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.neon-testimonial-author img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.neon-testimonial-author span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* ---------- Blog ---------- */
.neon-blog-card {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  padding: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.neon-blog-card:hover {
  border-color: var(--neon-primary);
  text-decoration: none;
  color: inherit;
}
.neon-blog-card img {
  width: 80px; height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.neon-blog-card h4 {
  font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.neon-blog-card p {
  font-size: 12px; color: var(--neon-text-dim); margin: 0; line-height: 1.5;
}

/* ---------- Business Hours ---------- */
.neon-hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.neon-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  font-size: 13px;
}
.neon-hour-row .neon-day {
  font-weight: 600; color: #fff;
}
.neon-hour-row .neon-time {
  color: var(--neon-accent); font-weight: 500;
}
.neon-hour-row.closed .neon-time {
  color: #ef4444;
}

/* ---------- QR Code ---------- */
.neon-qr-section {
  text-align: center;
}
.neon-qr-code {
  display: inline-block;
  padding: 16px;
  background: #fff;
  border-radius: var(--neon-radius-sm);
  margin-bottom: 10px;
}
.neon-qr-code svg,
.neon-qr-code img {
  width: 180px; height: 180px;
}

/* ---------- Contact Form ---------- */
.neon-form-group {
  margin-bottom: 14px;
}
.neon-form-group label {
  font-size: 12px; color: var(--neon-text-dim); margin-bottom: 6px; display: block;
}
.neon-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--neon-border);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.neon-input:focus {
  border-color: var(--neon-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
textarea.neon-input {
  resize: vertical;
  min-height: 100px;
}
.neon-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.neon-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* ---------- Appointment ---------- */
.neon-time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.neon-slot {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--neon-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.neon-slot:hover, .neon-slot.active {
  border-color: var(--neon-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--neon-primary);
}

/* ---------- Custom Links ---------- */
.neon-custom-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius-sm);
  text-decoration: none;
  color: var(--neon-text);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.neon-custom-link:hover {
  border-color: var(--neon-primary);
  transform: translateX(-4px);
  text-decoration: none;
  color: #fff;
}
.neon-custom-link i {
  font-size: 20px; color: var(--neon-primary);
}
.neon-custom-link span {
  font-size: 14px; font-weight: 600;
}

/* ---------- Footer / Made By ---------- */
.neon-footer {
  text-align: center;
  padding: 20px 24px 40px;
  position: relative;
  z-index: 2;
}
.neon-footer small {
  color: var(--neon-text-dim);
  font-size: 12px;
}
.neon-footer a {
  color: var(--neon-primary);
  text-decoration: none;
}

/* ---------- Sticky Bar ---------- */
.neon-sticky-bar {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  padding: 12px 20px;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--neon-border);
  display: flex;
  justify-content: center;
  gap: 24px;
  z-index: 100;
}
.neon-sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--neon-text-dim);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.neon-sticky-bar a i {
  font-size: 20px;
}
.neon-sticky-bar a:hover {
  color: var(--neon-primary);
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 400px) {
  .neon-services-grid { grid-template-columns: 1fr; }
  .neon-name { font-size: 24px; }
  .neon-banner { height: 220px; }
  .neon-avatar-ring { width: 120px; height: 120px; }
}

/* ---------- Language dropdown ---------- */
.neon-lang-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 8px 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-border);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}
.neon-lang-btn:hover {
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-decoration: none;
}

/* ---------- Map ---------- */
.neon-map {
  border-radius: var(--neon-radius);
  overflow: hidden;
  margin: 0 16px 20px;
  position: relative;
  z-index: 2;
}
.neon-map iframe {
  border: none;
  width: 100%;
  height: 250px;
}

/* ---------- Affiliation ---------- */
.neon-affiliation {
  text-align: center;
  padding: 16px;
  margin: 0 16px 20px;
  background: var(--neon-surface);
  border: 1px solid var(--neon-border);
  border-radius: var(--neon-radius);
  position: relative;
  z-index: 2;
}
.neon-affiliation h4 {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.neon-affiliation a {
  color: var(--neon-accent);
  word-break: break-all;
  font-size: 13px;
}

/* ---------- iframes/embed ---------- */
.neon-iframe-section .embed-responsive {
  border-radius: var(--neon-radius-sm);
  overflow: hidden;
}

/* ---------- Password Overlay ---------- */
.neon-glass .content-blur {
  filter: none !important;
}
