/* VCard Template 3 - Dark Theme */
.vcard-one,
.vcard-one * {
  box-sizing: border-box;
}

body {
  background: #0a0a0c;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

/* Professional Mesh Background */
.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0a0a0c;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: blobFloat 20s infinite alternate;
}

.blob-1 {
  background: #3b82f6;
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}

.blob-2 {
  background: #8b5cf6;
  bottom: -100px;
  right: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  background: #1e293b;
  top: 40%;
  left: 50%;
  width: 800px;
  height: 800px;
  animation-duration: 35s;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(100px, 50px) rotate(120deg) scale(1.1); }
  66% { transform: translate(-50px, 150px) rotate(240deg) scale(0.9); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

.vcard-one.main-content {
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(25px);
  max-width: 576px;
  min-height: 100vh;
  color: #ffffff;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}



.ovx {
  overflow-x: auto;
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.ovx > * {
  scroll-snap-align: start;
}

.ovx::-webkit-scrollbar {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.ovx::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}




@keyframes liquidGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.vcard-one .vcard-one-heading {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.vcard-one__banner {
  height: 150px;
  overflow: hidden;
}

.vcard-one__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clickable {
  cursor: pointer;
  transition: opacity 0.2s;
}

.clickable:active {
  opacity: 0.7;
}


.vcard-one__banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.vcard-one__profile {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.vcard-one__profile .avatar-wrapper {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.vcard-one__profile .profile-avatar {
  height: 130px;
  width: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1a1b1e;
  background: #25262b;
}

.vcard-one__profile .qr-badge {
  width: 60px;
  height: 60px;

  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  bottom: -5px;
  right: -5px;
  border: 2px solid #1a1b1e;
}

.vcard-one__profile .qr-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-full-display {
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-url-copy {
  margin-top: 10px;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.vcard-one__profile .profile-info {
  margin-top: 70px;
  margin-left: 20px;
}


.vcard-one__profile .profile-name {
  color: #ffffff;
  font-size: 22px !important;
  font-weight: 700;
  line-height: 1.2;
}

.vcard-one__profile .profile-designation {
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.4;
}

.vcard-one__profile .add-contact-btn {
  background: #ffffff;
  color: #1a1b1e;
  border-radius: 6px !important;
  font-weight: 600;
  padding: 6px 12px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  margin-top: 5px;
}

/* SMART CONNECT — continuous "blazing" attention animation: a pulsing glow in
   the theme's own dark brand color (#3b82f6), a light sweeping across the
   button, and the bolt flickering, so it stands out next to the static
   Add to contact button. */
.vcard-one__profile .add-contact-btn.smart-connect-btn {
  position: relative;
  overflow: hidden;
  animation: scGlow 1.8s ease-in-out infinite;
}
.vcard-one__profile .add-contact-btn.smart-connect-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: scShimmer 2.6s linear infinite;
  pointer-events: none;
}
.vcard-one__profile .add-contact-btn.smart-connect-btn i {
  animation: scIconPulse 1.8s ease-in-out infinite;
}
@keyframes scGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, .5), 0 0 6px 1px rgba(59, 130, 246, .3); }
  50% { box-shadow: 0 0 0 5px rgba(59, 130, 246, 0), 0 0 16px 5px rgba(59, 130, 246, .65); }
}
@keyframes scShimmer {
  0% { background-position: -150% 0; }
  100% { background-position: 250% 0; }
}
@keyframes scIconPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0)); }
  50% { transform: scale(1.18); filter: drop-shadow(0 0 4px rgba(59, 130, 246, .9)); }
}


.vcard-one__event {
  padding: 30px 20px;
}

.vcard-one__event .contact-icon-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.vcard-one__event .contact-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}

.vcard-one__event .contact-icon-circle:hover {
  transform: scale(1.1);
}

.vcard-one__event .contact-icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}



.vcard-one__event .contact-info-list {
  background: #25262b;
  border-radius: 12px;
  padding: 20px;
}

.vcard-one__event .contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.vcard-one__event .contact-info-item:last-child {
  margin-bottom: 0;
}

.vcard-one__event .contact-info-item i {
  color: #ffffff;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.vcard-one__event .contact-info-item a {
  color: #ffffff;
  text-decoration: none;
}

.vcard-one__social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.vcard-one__social a img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.vcard-one__qr-code,
.vcard-one__service,
.vcard-one__product,
.vcard-one__gallery,
.vcard-one__timing,
.vcard-one__appointment,
.vcard-one__testimonial,
.vcard-one__payment,
.vcard-one__location {
  padding: 40px 20px;
}

.vcard-one__location .location-address {
  color: #d4d4d8;
  font-size: 14px;
  line-height: 1.5;
}

.vcard-one__location .location-map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.vcard-one__location .location-map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.btn-location-maps {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 100%);
  border: none;
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-location-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(66, 133, 244, 0.45);
  color: #fff;
}

.vcard-one .section-container {
  background: #25262b;
  border-radius: 12px;
  padding: 20px;
}

/* Service & Product Cards */
.vcard-one .service-card, 
.vcard-one .product-card {
  background: #2c2e33;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #373a40;
}

.vcard-one .service-card:hover, 
.vcard-one .product-card:hover {
  transform: translateY(-5px);
}

.vcard-one .service-card img, 
.vcard-one .product-card img,
.vcard-one .service-card-img,
.vcard-one .product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

.service-grid-block,
.product-grid-block {
  width: calc(100% / 2.2);
  flex: 0 0 calc(100% / 2.2);
  min-width: 0;
  scroll-snap-align: start;
}

@media (max-width: 767.98px) {
  .service-grid-block,
  .product-grid-block {
    width: calc(100% / 1.6);
    flex: 0 0 calc(100% / 1.6);
  }
}

.vcard-one__service .services-scroll,
.vcard-one__product .products-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 12px;
}

/* 1 column per scroll panel — wider cards on mobile */
.service-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-auto-flow: row;
  row-gap: 16px;
  width: 100%;
}

.service-product-cell {
  min-width: 0;
}

.appointment-cta-row .appointment-cta-item {
  flex: 1;
  min-width: 0;
}

.vcard-one .product-card .product-price {
  font-size: 15px;
  margin-bottom: 0;
}

.vcard-one .service-card .card-body, 
.vcard-one .product-card .card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vcard-one .service-card .card-title, 
.vcard-one .product-card .card-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.vcard-one .service-card .card-text, 
.vcard-one .product-card .card-text {
  color: #a1a1aa;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcard-one .vcard-one-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-custom {
  background: #ffffff;
  color: #1a1b1e;
  border: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-custom:hover {
  background: #f1f1f1;
  color: #000000;
}



/* Modern Business Hours */
.modern-hours-card {
  background: #2c2e33;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid #ffffff1a;
}

.modern-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #ffffff08;
  transition: background 0.2s;
}

.modern-hour-item:last-child {
  border-bottom: none;
}

.modern-hour-item:hover {
  background: #ffffff05;
}

.modern-hour-item.closed .day-name {
  opacity: 0.5;
}

.day-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.time-text {
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 500;
}

.badge-closed {
  background: #ef444420;
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lightbox */
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-content img {
  max-height: 80vh;
  width: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-modal.top-right {
  position: absolute;
  top: -40px;
  right: 0;
  background: #ffffff20;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(5px);
}


/* Payment Section Premium Design */
.upi-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.upi-card {
  background: #2c2e33;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #373a40;
  transition: all 0.2s;
}

.upi-card:hover {
  border-color: #ffffff;
}

.upi-icon-wrapper {
  width: 65px;
  height: 40px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.upi-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.upi-info {
  flex-grow: 1;
}

.upi-label {
  display: block;
  font-size: 11px;
  color: #ffffff;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.upi-value {
  display: block;
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
}

.copy-btn, .copy-icon-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  opacity: 0.7;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.copy-btn:hover, .copy-icon-btn:hover {
  opacity: 1;
}

.bank-panel {
  background: #2c2e33;
  border-radius: 16px;
  border: 1px solid #ffffff33;
  overflow: hidden;
}

.bank-header {
  background: #ffffff1a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.bank-body {
  padding: 20px;
}

.bank-item {
  margin-bottom: 15px;
}

.bank-item:last-child {
  margin-bottom: 0;
}

.bank-item label {
  font-size: 11px;
  color: #ffffff;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bank-item p {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 0;
}




.copy-action {
  min-width: 60px;
  display: flex;
  justify-content: flex-end;
}

.copied-text {
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.share-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.share-float:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Forms */
.vcard-one .form-group {
  margin-bottom: 20px;
}

.vcard-one label {
  color: #ffffff;
  font-size: 13px !important;
  margin-bottom: 8px;
  display: block;
}

.vcard-one .input-container {
  position: relative;
}

.vcard-one .input-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a1a1aa;
}

.vcard-one input,
.vcard-one textarea,
.vcard-one select {
  background: #2c2e33;
  border: 1px solid #373a40;
  border-radius: 8px;
  color: #ffffff;
  padding: 12px 15px 12px 45px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 13px !important;
}

.vcard-one input::placeholder,
.vcard-one textarea::placeholder,
.vcard-one select::placeholder {
  color: #d1d5db !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

.vcard-one input::-webkit-input-placeholder,
.vcard-one textarea::-webkit-input-placeholder {
  color: #d1d5db !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

.vcard-one input::-moz-placeholder,
.vcard-one textarea::-moz-placeholder {
  color: #d1d5db !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

.vcard-one input:-ms-input-placeholder,
.vcard-one textarea:-ms-input-placeholder {
  color: #d1d5db !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

.vcard-one input::-ms-input-placeholder,
.vcard-one textarea::-ms-input-placeholder {
  color: #d1d5db !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

.vcard-one input:focus,
.vcard-one textarea:focus,
.vcard-one select:focus {
  border-color: #6b7280;
  box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
}

.vcard-one input.is-invalid,
.vcard-one textarea.is-invalid,
.vcard-one select.is-invalid {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

.vcard-one input.is-invalid:focus,
.vcard-one textarea.is-invalid:focus,
.vcard-one select.is-invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.vcard-one textarea {
  padding-left: 15px;
  min-height: 100px;
  font-size: 13px !important;
}

/* Enquiry Form Specific Styles */
.enquiry-form label {
  font-size: 13px !important;
}

.enquiry-form input,
.enquiry-form textarea {
  font-size: 13px !important;
}

/* Appointment Form Specific Styles */
.appointment-form label {
  font-size: 13px !important;
}

.appointment-form input,
.appointment-form textarea {
  font-size: 13px !important;
}

.vcard-one .submit-btn {
  background: #ffffff;
  color: #1a1b1e;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 12px 30px;
  width: auto;
  cursor: pointer;
}

.modern-testimonial-card {
  background: #2c2e33;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #ffffff1a;
  transition: transform 0.2s;
}

.modern-testimonial-card:hover {
  border-color: #ffffff33;
}


@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.google-review-card {
  background: linear-gradient(145deg, #2c2e33, #1e1f23);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.review-quote-mark {
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  margin-bottom: 12px;
}

.review-text-lg {
  color: #e4e4e7;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.reviewer-name-footer {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.star-rating-xs {
  color: #fcc419;
  font-size: 12px;
  letter-spacing: 4px;
}




/* Review Modal */
.review-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

/* Custom scrollbar for modal overlay */
.review-modal-overlay::-webkit-scrollbar {
  width: 8px;
}

.review-modal-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.review-modal-overlay::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.review-modal-overlay::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.review-modal-content, .lightbox-content {
  background: #1a1b1e;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 40px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #ffffff1a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  margin: auto;
  overflow-y: auto;
}

/* Custom scrollbar for modal content */
.review-modal-content::-webkit-scrollbar {
  width: 6px;
}

.review-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.review-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.review-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-content {
  max-width: 500px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
}


.close-modal {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 100;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.gallery-nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: all 0.2s;
  backdrop-filter: blur(5px);
}

.gallery-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  scale: 1.1;
}

.gallery-nav-btn.prev {
  left: 20px;
}

.gallery-nav-btn.next {
  right: 20px;
}

/* On mobile, adjust nav buttons to be less intrusive */
@media (max-width: 576px) {
  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
  }
  .gallery-nav-btn.prev { left: 10px; }
  .gallery-nav-btn.next { right: 10px; }
}




.interactive-stars {
  display: flex;
  align-items: center;
}

.interactive-stars i {
  font-size: 24px;
  color: #ffffff1a;
  cursor: pointer;
  transition: color 0.2s;
  margin-right: 5px;
}

.interactive-stars i.active {
  color: #fcc419;
}

.animate-zoom {
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* Payment */
.vcard-one .payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.vcard-one .payment-row img {
  height: 24px;
}

.vcard-one .payment-details-table {
  width: 100%;
}

.vcard-one .payment-details-table td {
  padding: 5px 0;
  font-size: 14px;
}

.vcard-one .payment-details-table td:first-child {
  font-weight: 600;
  width: 40%;
}

/* Floating Share Button */
.vcard-one .share-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s;
}

.vcard-one .share-float:hover {
  transform: scale(1.1);
}

.vcard-one .share-float i {
  color: #1a1b1e;
  font-size: 24px;
}

/* Banner Carousel */
.banner-carousel {
  height: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.banner-item {
  scroll-snap-align: start;
}

.banner-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Videos */
.video-container {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* File Downloads */
.file-download-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.file-download-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.file-icon-box {
  width: 40px;
  height: 40px;
  background: #ef444420;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Appointment Slots */
.slot-time-badge {
  background: #ffffff10;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid #ffffff15;
}

/* Slot Selection Grid */
.slots-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 5px 0;
}

.slot-button {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  min-width: 90px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slot-button:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.slot-button.selected {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1b1e;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.slot-button.selected:hover {
  background: #f1f1f1;
  transform: translateY(-1px);
}

/* Fixed CTA Bar */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 576px;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  padding: 12px 10px;
  z-index: 1100;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cta-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.cta-button i {
  font-size: 20px;
}

.cta-button:hover {
  color: #ffffff;
}

/* Adjust main content for CTA bar */
.vcard-one.main-content {
  padding-bottom: 80px;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-play-overlay i {
  width: 50px;
  height: 50px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.video-card:hover .video-play-overlay {
  background: rgba(0,0,0,0.4);
}

.video-card:hover .video-play-overlay i {
  transform: scale(1.1);
}

.btn-gradient-enquiry {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.btn-gradient-enquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-gradient-enquiry:hover::before {
  left: 100%;
}
.btn-gradient-enquiry:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
  filter: brightness(1.05);
}
.btn-gradient-enquiry:active {
  transform: translateY(-1px);
}

.btn-gradient-appointment {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%) !important;
  border: none !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.btn-gradient-appointment::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-gradient-appointment:hover::before {
  left: 100%;
}
.btn-gradient-appointment:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
  filter: brightness(1.05);
}
.btn-gradient-appointment:active {
  transform: translateY(-1px);
}

.share-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: all 0.3s ease;
}

.share-float:hover {
  transform: scale(1.1) rotate(15deg);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 575.98px) {
  .appointment-cta-row {
    flex-direction: column;
  }

  .appointment-cta-row .appointment-cta-item {
    width: 100%;
    flex: none;
  }
}