body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Ensure stable layout without shifting */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero section container */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 0;
}

/* Hero title gradient styles */
.hero-title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle-gradient {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 50%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Navbar styles */
.fixed {
  position: fixed;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .fixed {
    background: linear-gradient(to bottom, rgba(235, 116, 19, 0.95), rgba(255, 157, 77, 0.95));
  }
}

.relative.min-h-screen {
  margin-top: 0;
  padding-top: 0;
}

.btn-primary {
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #eb7413, #ff9d4d);
  box-shadow: 0 4px 15px rgba(235, 116, 19, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 116, 19, 0.4);
  background: linear-gradient(45deg, #ff9d4d, #eb7413);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translate(0, 0px); }
  50% { transform: translate(0, 15px); }
  100% { transform: translate(0, -0px); }
}

.highlight-card {
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.cta-form {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Phone input styles */
.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

.iti__selected-flag {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.phone-input {
  padding-left: 90px !important;
} 

/* Responsive design adjustments */
@media (max-width: 1024px) {
  .relative.min-h-screen {
    min-height: auto;
    padding: 0;
    padding-bottom: 6rem;
  }
}

@media (max-width: 768px) {
  .bg-white {
    background-color: white;
  }
  

}

@media (min-width: 769px) {
  .desktop-hero {
    display: block !important;
  }
  
  .mobile-hero {
    display: none !important;
  }
}

/* Form adjustments */
.bg-white {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .bg-white {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

#mobile-lang-menu {
  pointer-events: none;
}
#mobile-lang-menu.active {
  pointer-events: auto !important;
}

@media (max-width: 578px) {
  .mobile-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
  }
  body {
    padding-top: 56px !important;
  }
  .mobile-navbar-lang {
    width: 100% !important;
    max-width: 180px;
  }
  .mobile-navbar-lang > button {
    width: 100% !important;
    max-width: 180px;
  }
  #mobile-lang-menu {
    min-width: unset !important;
    width: 100% !important;
    max-width: 180px !important;
    left: 0 !important;
    right: auto !important;
  }
}
@media (min-width: 579px) {
  .mobile-navbar {
    display: none !important;
  }
  body {
    padding-top: 0 !important;
  }
}

/* See The Transformations Modern Grid */
.transform-gallery-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

@media (min-width: 640px) {
  .transform-gallery-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .transform-gallery-modern-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.transform-gallery-modern-card {
  background: #fff7ed;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(235, 116, 19, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 280px;
  max-height: 350px;
  position: relative;
}

.transform-gallery-modern-card:hover {
  box-shadow: 0 8px 32px 0 rgba(235, 116, 19, 0.18);
  transform: translateY(-4px) scale(1.02);
}

.transform-gallery-modern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  transition: transform 0.3s;
  background: #fff;
}
@media (max-width: 639px) {
  .transform-gallery-modern-card {
    min-height: 180px;
    border-radius: 1rem;
  }
  .transform-gallery-modern-img {
    border-radius: 1rem;
    aspect-ratio: 4/3;
  }
}
  
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

.whatsapp-float__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 9999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Grid container alignment */
.grid.grid-cols-1.lg\\:grid-cols-2 {
  align-items: flex-start !important;
}

/* Force form alignment */
#hero-form {
  margin-top: 0 !important;
  align-self: flex-end !important;
  position: relative !important;
  top: 0 !important;
}

/* Force form container alignment */
.w-full.max-w-lg.mx-auto.lg\\:mx-0 {
  margin-top: 0 !important;
  align-self: flex-end !important;
  position: relative !important;
  top: 0 !important;
}

/* Hero interactive face map */
.hero-face-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  min-height: 480px;
}

/* Hero interactive face map - New Design */
.hero-face-wrap-new {
  display: flex;
  align-items: flex-start !important;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  min-height: 500px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.face-procedures-left {
  flex: 0 0 200px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  padding-top: 0 !important;
  margin-top: 3rem;
}

.face-headings-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Interactive button animations */
.face-heading-new {
  display: block;
  padding: 0.6rem 0.8rem;
  background: #2a2a2a;
  border: 1px solid #555;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  width: 100%;
  text-align: center;
}

.face-heading-new:hover {
  background: linear-gradient(135deg, #eb7413 0%, #ff9d4d 100%);
  border-color: #4a90e2;
  box-shadow: 0 4px 15px rgba(235, 116, 19, 0.3);
  transform: translateY(-2px) scale(1.05);
}

.face-heading-new.active {
  background: linear-gradient(135deg, #eb7413 0%, #ff9d4d 100%);
  border-color: #4a90e2;
  box-shadow: 0 4px 15px rgba(235, 116, 19, 0.3);
}

/* Hover instruction animation - directly above buttons */
.face-procedures-left::before {
  content: "👆 Hover over buttons to see details";
  position: absolute;
  top: -10px;
  left: 0;
  transform: none;
  background: linear-gradient(135deg, #eb7413, #ff9d4d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: instructionBounce 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(235,116,19,0.3);
}

@keyframes instructionBounce {
  0%, 80%, 100% { 
    opacity: 0; 
    transform: translateY(0); 
  }
  10%, 70% { 
    opacity: 1; 
    transform: translateY(-3px); 
  }
}

.hero-face-canvas-new {
  position: relative;
  flex: 0 0 400px;
  height: 500px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-face-img-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 60% 20%;
  border-radius: 20px;
}

.face-spot-new {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 107, 53, 0.6);
  border: 2px solid rgba(255, 107, 53, 0.8);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
}

#spot-facelift {
  width: 50px;
  height: 25px;
  border-radius: 3px;
}

#spot-necklift {
  width: 60px;
  height: 30px;
  border-radius: 3px;
}

.face-spot-new:hover {
  transform: scale(1.5);
  background: #ff6b35;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.face-spot-new.active {
  opacity: 1;
  visibility: visible;
}

.face-arrow-new {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.face-arrow-new.show {
  opacity: 1;
}

/* Responsive styles for new hero face design */
@media (max-width: 1200px) {
  .hero-face-wrap-new {
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 1000px;
  }
  
  .face-procedures-left {
    flex: 0 0 180px;
  }
  
  .hero-face-canvas-new {
    flex: 0 0 350px;
    height: 450px;
  }
}

@media (max-width: 1024px) {
  .hero-face-wrap-new {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  .face-procedures-left {
    order: 1;
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
  
  .face-headings-new {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .face-heading-new {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    flex: 1;
    min-width: 100px;
    text-align: center;
    margin-bottom: 0.25rem;
  }
  
  /* Hide instruction on mobile */
  .face-procedures-left::before {
    display: none;
  }
  
  .hero-face-canvas-new {
    order: 2;
    flex: none;
    width: 100%;
    max-width: 400px;
    height: 450px;
  }
}

@media (max-width: 640px) {
  .hero-face-wrap-new {
    flex-direction: row;
    gap: 0.8rem;
    padding: 1rem;
    min-height: auto;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }


  .text-4xl{
    margin-top: 0 !important;
  }
  
  #hero-form{margin-top: 20px !important;}
  /* Butonlar sol tarafta */
  .face-procedures-left {
    order: 1;
    flex: 0 0 45%;
    width: 45%;
    margin: 0;
  }
  
  .face-headings-new {
    gap: 0.4rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .face-heading-new {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    min-width: 80px;
    flex: none;
  }
  
  /* Yüz görseli sağ tarafta */
  .hero-face-canvas-new {
    order: 2;
    flex: 0 0 50%;
    width: 50%;
    max-width: none;
    height: 250px;
    margin: 0;
  }
  
  .face-spot-new {
    width: 6px !important;
    height: 6px !important;
  }
  
  /* Mobile spot sizes - much smaller */
  #spot-facelift {
    width: 25px !important;
    height: 35px !important;
    border-radius: 1px !important;
  }
  
  #spot-necklift {
    width: 35px !important;
    height: 15px !important;
    border-radius: 1px !important;
  }
  
  #spot-blepharoplasty {
    width: 18px !important;
    height: 12px !important;
    border-radius: 1px !important;
  }
  
  #spot-temporallift {
    width: 25px !important;
    height: 12px !important;
    border-radius: 1px !important;
  }
  
  #spot-liplift {
    width: 30px !important;
    height: 8px !important;
    border-radius: 1px !important;
  }
  
  #spot-fatgrafting {
    width: 25px !important;
    height: 30px !important;
    border-radius: 1px !important;
  }
  
  /* Form altında */
  .hero-face-wrap-new > div:last-child {
    order: 3;
    width: 100%;
    margin-top: 2rem;
    flex-basis: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-face-wrap { 
    grid-template-columns: 1fr; 
    min-height: auto;
  }
.hero-face-canvas { 
    width: 100%; 
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
    margin: 0 auto;
  }
  .face-headings-left {
    min-height: auto;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .face-headings-left li:first-child .face-heading::before {
    top: -35px;
    font-size: 10px;
    padding: 4px 8px;
  }
  
  /* Mobil için düzenlemeler */
  .hero-face-wrap { 
    gap: 1rem;
    display: flex;
    flex-direction: column; /* Alt alta */
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .hero-face-canvas { 
    max-width: 280px; /* Normal boyut */
    width: 280px;
    height: auto;
    aspect-ratio: 3/4;
    order: 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .face-headings-left {
    gap: 0.75rem;
    margin-bottom: 2rem;
    order: 2;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    flex-direction: row; /* Tab'lar yatay */
    flex-wrap: wrap;
    justify-content: center;
    min-width: auto;
    max-width: none;
  }
  
  /* Mobil için tab'ları normal boyut */
  .face-heading {
    font-size: 12px;
    padding: 8px 12px;
    min-width: auto;
    flex: none;
    text-align: center;
    white-space: nowrap;
    line-height: normal;
  }
  
  /* Mobilde ok işaretlerini gizle */
  .face-heading::after {
    display: none;
  }
  
  
  /* Mobil için spot'ları daha üstte göster */
  .face-spot {
    z-index: 25 !important;
  }
  
  /* Mobilde görseli arkaya al */
  .hero-face-img {
    z-index: 1 !important;
  }
  
  /* Mobilde LeaderLine'ı en üste al */
  .leader-line {
    z-index: 50 !important;
  }
  
  /* Mobilde başlık ile menü arasındaki boşluğu azalt */
  .hero-content-shift {
    padding-top: 0 !important;
    min-height: auto !important;
  }
  
  /* Mobilde container margin'ini de kaldır */
  .container {
    margin-top: 0 !important;
  }
  
  
}

/* Sol taraf headings */
.face-headings-left {
  text-align: left;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 350px;
  gap: 0.5rem;
}

.face-headings-left li {
  margin-bottom: 0;
  transform: translateX(-10px);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

.face-headings-left li:nth-child(1) { animation-delay: 0.1s; }
.face-headings-left li:nth-child(2) { animation-delay: 0.2s; }
.face-headings-left li:nth-child(3) { animation-delay: 0.3s; }
.face-headings-left li:nth-child(4) { animation-delay: 0.4s; }
.face-headings-left li:nth-child(5) { animation-delay: 0.5s; }
.face-headings-left li:nth-child(6) { animation-delay: 0.6s; }

.face-headings-left li:last-child {
  margin-bottom: 0;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .face-headings-left {
    text-align: center;
    padding: 0;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .face-headings-left li {
    margin-bottom: 0;
  }
}
.hero-face-canvas {
  position: relative;
  width: 400px;
  height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.hero-face-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
  top: 0 !important;
  left: 0 !important;
}
.face-spot {
  position: absolute;
  background: rgba(235,116,19,0.3);
  border: 2px solid rgba(235,116,19,0.6);
  border-radius: 3px;
  z-index: 20;
  box-shadow: 
    0 0 25px rgba(235,116,19,0.4),
    inset 0 0 15px rgba(235,116,19,0.15);
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  backdrop-filter: blur(1px);
}

.face-spot:hover {
  opacity: 1 !important;
  transform: scale(1.1);
}

/* Anatomik bölgeler için özel boyutlar */
#spot-facelift {
  width: 80px;
  height: 90px;
  border-radius: 4px;
}

#spot-necklift {
  width: 100px;
  height: 50px;
  border-radius: 3px;
}

#spot-blepharoplasty {
  width: 35px;
  height: 25px;
  border-radius: 3px;
}

#spot-temporallift {
  width: 55px;
  height: 55px;
  border-radius: 3px;
}

#spot-liplift {
  width: 65px;
  height: 18px;
  border-radius: 2px;
}

#spot-fatgrafting {
  width: 50px;
  height: 60px;
  border-radius: 4px;
}

.face-arrow {
  position: absolute;
  transform: translate(-110px, -9px);
  pointer-events: none;
}
.face-headings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.face-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  color: #1f2937;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 
    0 8px 25px rgba(0,0,0,0.1),
    0 4px 15px rgba(235,116,19,0.1),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: visible;
  min-width: 140px;
  cursor: pointer;
}

/* İlk tab için özel hint badge */
.face-headings-left li:first-child .face-heading::before {
  content: "👆 Hover for details";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #eb7413, #ff9d4d);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: hintBounce 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(235,116,19,0.3);
}

@keyframes hintBounce {
  0%, 70%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
  10%, 60% { opacity: 1; transform: translateX(-50%) translateY(-3px); }
}

.face-headings-left li:first-child .face-heading:hover::before {
  opacity: 0 !important;
  animation: none !important;
}

/* Interactive hint - ok işaretleri geri */
.face-heading::after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(235,116,19,0.8);
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  animation: pulseArrow 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes pulseArrow {
  0%, 100% { opacity: 0; transform: translateY(-50%) translateX(0); }
  50% { opacity: 1; transform: translateY(-50%) translateX(5px); }
}

.face-heading:hover::after {
  opacity: 0 !important;
  animation: none !important;
}

.face-heading:hover {
  transform: translateY(-2px) scale(1.05);
  color: #ffffff;
  border-color: rgba(235,116,19,0.6);
  background: linear-gradient(135deg, #eb7413, #ff9d4d);
  box-shadow: 
    0 15px 35px rgba(235,116,19,0.3),
    0 8px 25px rgba(235,116,19,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}


.face-heading:active {
  transform: translateY(0) scale(1.02);
}
