/* ============================================================
   VOO VCARD — Template 34: TAP STYLE
   A clean, premium light-theme digital business card
   inspired by Tap's design — bright, modern, and inviting.
   ============================================================ */

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

:root {
  --tap-primary: #1a1a2e;
  --tap-accent: #6c5ce7;
  --tap-accent-light: #a29bfe;
  --tap-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --tap-cta: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
  --tap-bg: #f4f4f8;
  --tap-card: #ffffff;
  --tap-text: #1a1a2e;
  --tap-text-dim: #6b7280;
  --tap-text-light: #9ca3af;
  --tap-border: rgba(0, 0, 0, 0.06);
  --tap-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --tap-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --tap-radius: 20px;
  --tap-radius-sm: 14px;
  --tap-radius-xs: 10px;
  --tap-font: 'Cairo', 'Poppins', sans-serif;
}

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

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

.tap-main {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  background: var(--tap-bg);
  padding-bottom: 40px;
}

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

/* ---------- Language Dropdown ---------- */
.tap-lang-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tap-lang-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
}

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

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

.tap-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tap-avatar:hover {
  transform: scale(1.05);
}
.tap-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tap-verified-badge {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 30px; height: 30px;
  background: #3b82f6;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.tap-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--tap-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.tap-occupation {
  font-size: 15px;
  color: var(--tap-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.tap-company {
  font-size: 13px;
  color: var(--tap-text-dim);
  margin-bottom: 8px;
  font-weight: 400;
}

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

/* ---------- CTA Buttons Row ---------- */
.tap-cta-row {
  display: flex;
  gap: 10px;
  padding: 0 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.tap-connect-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--tap-cta);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.tap-connect-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}
.tap-connect-btn:hover::before {
  left: 100%;
}
.tap-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}
.tap-connect-btn i {
  font-size: 18px;
}

.tap-save-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tap-card);
  border: 2px solid var(--tap-border);
  border-radius: 14px;
  color: var(--tap-text);
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.tap-save-btn:hover {
  border-color: var(--tap-accent);
  color: var(--tap-accent);
  transform: translateY(-2px);
  box-shadow: var(--tap-shadow);
  text-decoration: none;
}

/* ---------- Welcome Message ---------- */
.tap-welcome {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.tap-welcome p {
  font-size: 14px;
  color: var(--tap-text-dim);
  font-weight: 500;
}

/* ---------- Social Icons (Big & Colorful) ---------- */
.tap-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.tap-social-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--tap-card);
  border: 1px solid var(--tap-border);
  color: var(--tap-text);
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.tap-social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.tap-social-icon a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Social icon colors */
.tap-social-icon .fa-instagram { color: #E4405F; }
.tap-social-icon .fa-facebook-f,
.tap-social-icon .fa-facebook { color: #1877F2; }
.tap-social-icon .fa-tiktok { color: #000000; }
.tap-social-icon .fa-twitter,
.tap-social-icon .fa-x-twitter { color: #000000; }
.tap-social-icon .fa-linkedin-in,
.tap-social-icon .fa-linkedin { color: #0A66C2; }
.tap-social-icon .fa-youtube { color: #FF0000; }
.tap-social-icon .fa-whatsapp { color: #25D366; }
.tap-social-icon .fa-snapchat,
.tap-social-icon .fa-snapchat-ghost { color: #FFFC00; }
.tap-social-icon .fa-telegram,
.tap-social-icon .fa-telegram-plane { color: #0088CC; }
.tap-social-icon .fa-pinterest,
.tap-social-icon .fa-pinterest-p { color: #BD081C; }
.tap-social-icon .fa-github { color: #333; }
.tap-social-icon .fa-dribbble { color: #EA4C89; }
.tap-social-icon .fa-behance { color: #1769FF; }
.tap-social-icon .fa-spotify { color: #1DB954; }
.tap-social-icon .fa-globe { color: var(--tap-accent); }

/* ---------- Action Quick Buttons ---------- */
.tap-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.tap-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 10px;
  background: var(--tap-card);
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius-sm);
  color: var(--tap-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.tap-action-btn i {
  font-size: 22px;
  color: var(--tap-accent);
  transition: transform 0.3s ease;
}
.tap-action-btn:hover {
  background: var(--tap-card);
  border-color: var(--tap-accent);
  transform: translateY(-3px);
  box-shadow: var(--tap-shadow-hover);
  color: var(--tap-text);
  text-decoration: none;
}
.tap-action-btn:hover i {
  transform: scale(1.15);
}

/* ---------- Card (Shared Container) ---------- */
.tap-card {
  background: var(--tap-card);
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius);
  padding: 24px;
  margin: 0 16px 16px;
  position: relative;
  z-index: 2;
  box-shadow: var(--tap-shadow);
  transition: all 0.3s ease;
}
.tap-card:hover {
  box-shadow: var(--tap-shadow-hover);
}

/* ---------- Section Title ---------- */
.tap-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tap-text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tap-section-title i {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--tap-accent), var(--tap-accent-light));
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
}
.tap-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tap-border);
  margin-inline-start: 8px;
}

/* ---------- Contact Info ---------- */
.tap-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tap-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--tap-text);
  padding: 14px 16px;
  border-radius: var(--tap-radius-xs);
  background: var(--tap-bg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.tap-contact-item:hover {
  border-color: var(--tap-accent);
  background: #f0eeff;
  color: var(--tap-text);
  text-decoration: none;
  transform: translateX(-4px);
}
.tap-contact-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tap-accent), var(--tap-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.tap-contact-label {
  font-size: 11px;
  color: var(--tap-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tap-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--tap-text);
  direction: ltr;
}

/* ---------- Services ---------- */
.tap-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tap-service-card {
  background: var(--tap-bg);
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tap-service-card:hover {
  border-color: var(--tap-accent);
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.1);
  transform: translateY(-4px);
}
.tap-service-card img {
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}
.tap-service-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--tap-text);
  margin-bottom: 6px;
}
.tap-service-card p {
  font-size: 12px;
  color: var(--tap-text-dim);
  line-height: 1.5;
  margin: 0;
}

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

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

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

/* ---------- Testimonials ---------- */
.tap-testimonial-card {
  background: var(--tap-bg);
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius-sm);
  padding: 20px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.tap-testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.tap-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 56px;
  line-height: 1;
  color: var(--tap-accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.tap-testimonial-text {
  font-size: 13px;
  color: var(--tap-text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.tap-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tap-testimonial-author img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tap-accent-light);
}
.tap-testimonial-author span {
  font-size: 13px;
  font-weight: 600;
  color: var(--tap-text);
}

/* ---------- Blog ---------- */
.tap-blog-card {
  display: flex;
  gap: 14px;
  background: var(--tap-bg);
  border: 1px solid var(--tap-border);
  border-radius: var(--tap-radius-sm);
  padding: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.tap-blog-card:hover {
  border-color: var(--tap-accent);
  text-decoration: none;
  color: inherit;
  transform: translateX(-4px);
}
.tap-blog-card img {
  width: 80px; height: 80px;
  border-radius: var(--tap-radius-xs);
  object-fit: cover;
  flex-shrink: 0;
}
.tap-blog-card h4 {
  font-size: 14px; font-weight: 700; color: var(--tap-text); margin-bottom: 6px;
}
.tap-blog-card p {
  font-size: 12px; color: var(--tap-text-dim); margin: 0; line-height: 1.5;
}

/* ---------- Business Hours ---------- */
.tap-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tap-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--tap-radius-xs);
  background: var(--tap-bg);
  font-size: 13px;
  transition: background 0.2s ease;
}
.tap-hour-row:hover {
  background: #eeedf6;
}
.tap-hour-row .tap-day {
  font-weight: 600; color: var(--tap-text);
}
.tap-hour-row .tap-time {
  color: var(--tap-accent); font-weight: 500;
}
.tap-hour-row.closed .tap-time {
  color: #ef4444;
}

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

/* ---------- Forms ---------- */
.tap-form-group {
  margin-bottom: 14px;
}
.tap-form-group label {
  font-size: 12px;
  color: var(--tap-text-dim);
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
}
.tap-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--tap-bg);
  border: 1.5px solid var(--tap-border);
  border-radius: var(--tap-radius-xs);
  color: var(--tap-text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.tap-input:focus {
  border-color: var(--tap-accent);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
  background: #fff;
}
.tap-input::placeholder {
  color: var(--tap-text-light);
}
textarea.tap-input {
  resize: vertical;
  min-height: 100px;
}
.tap-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--tap-cta);
  border: none;
  border-radius: var(--tap-radius-sm);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.tap-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ---------- Appointment Slots ---------- */
.tap-time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.tap-slot {
  padding: 12px;
  text-align: center;
  border: 1.5px solid var(--tap-border);
  border-radius: var(--tap-radius-xs);
  font-size: 13px;
  font-weight: 600;
  color: var(--tap-text);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--tap-bg);
}
.tap-slot:hover, .tap-slot.active {
  border-color: var(--tap-accent);
  background: #f0eeff;
  color: var(--tap-accent);
}

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

/* ---------- Map ---------- */
.tap-map {
  border-radius: var(--tap-radius);
  overflow: hidden;
}
.tap-map iframe {
  border: none;
  width: 100%;
  height: 250px;
}

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

/* ---------- Footer ---------- */
.tap-footer {
  text-align: center;
  padding: 24px 24px 40px;
  position: relative;
  z-index: 2;
}
.tap-footer small {
  color: var(--tap-text-light);
  font-size: 12px;
}
.tap-footer a {
  color: var(--tap-accent);
  text-decoration: none;
}
.tap-footer a:hover {
  text-decoration: underline;
}

/* ---------- Hover Lift Utility ---------- */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--tap-shadow-hover);
}

/* ---------- Scroll Animations ---------- */
[data-tap-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-tap-animate].tap-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-tap-animate="scale"] {
  transform: scale(0.9);
}
[data-tap-animate="scale"].tap-visible {
  transform: scale(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 400px) {
  .tap-services-grid { grid-template-columns: 1fr; }
  .tap-name { font-size: 22px; }
  .tap-banner { height: 200px; }
  .tap-avatar { width: 110px; height: 110px; }
  .tap-socials { gap: 12px; }
  .tap-social-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 14px; }
}

/* ---------- RTL Support ---------- */
.rtl {
  direction: rtl;
  text-align: right;
}
.rtl .tap-contact-item:hover {
  transform: translateX(4px);
}
.rtl .tap-blog-card:hover {
  transform: translateX(4px);
}
.rtl .tap-custom-link:hover {
  transform: translateX(4px);
}
.rtl .tap-section-title::after {
  margin-inline-start: 0;
  margin-inline-end: 8px;
}

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