:root {
  /* Color Palette - Premium Sage & Warm Neutrals */
  --sage: hsl(135, 15%, 49%);
  --sage-light: hsl(135, 25%, 70%);
  --sage-pale: hsl(135, 30%, 94%);
  --cream: hsl(38, 40%, 97%);
  --warm-white: hsl(45, 100%, 99%);
  --dark: hsl(135, 20%, 14%);
  --mid: hsl(135, 15%, 28%);
  --text: hsl(135, 12%, 21%);
  --muted: hsl(135, 8%, 46%);
  --accent: hsl(41, 90%, 41%);
  --accent-light: hsl(44, 82%, 79%);
  --coral: hsl(17, 60%, 56%);
  --border: hsl(135, 15%, 86%);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Radius */
  --radius-lg: 32px;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 20px rgba(28, 43, 30, 0.04);
  --shadow: 0 10px 30px rgba(28, 43, 30, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 43, 30, 0.12);
  
  /* Glassmorphism */
  --glass-bg: rgba(251, 248, 243, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--sage);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  background: var(--sage-pale);
  padding: 4px;
  border-radius: 50px;
}

.lang-btn {
  padding: 6px 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--dark);
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(28, 43, 30, 0.2);
}

.nav-cta:hover {
  background: var(--sage) !important;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sage-pale);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, hsla(135, 25%, 70%, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: drift 20s infinite alternate ease-in-out;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-50px, 50px); }
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(28, 43, 30, 0.2);
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(107, 143, 113, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--dark);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  width: 100%;
  aspect-ratio: 0.85;
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: none; /* We will use animation instead */
}

.hero-slide.active img {
  animation: kenBurns 8s linear infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2rem;
}

.section-title em {
  color: var(--sage);
  font-style: italic;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.about-feature i {
  color: var(--sage);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== COACH SECTION ===== */
#coach {
  background: var(--warm-white);
  overflow: hidden;
}

.coach-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.coach-bio {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  border-color: var(--sage);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.expertise-icon {
  font-size: 1.5rem;
}

.coach-visual {
  position: relative;
}

.coach-image-template {
  position: relative;
  width: 100%;
  aspect-ratio: 0.85;
  padding: 20px;
}

.coach-image-template::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 4px solid var(--sage-light);
  border-radius: var(--radius-lg);
  z-index: 0;
  animation: floatCoach 6s infinite alternate ease-in-out;
}

@keyframes floatCoach {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(20px, 20px) rotate(3deg); }
}

.coach-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(400px, 60vh, 700px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coach-stats-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  color: #fff;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius);
  display: flex;
  gap: 2rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.overlay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-light);
}

.overlay-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .coach-grid { grid-template-columns: 1fr; gap: 4rem; }
  .coach-image-template { max-width: 450px; margin: 0 auto; }
}

/* ===== SERVICES ===== */
#services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--sage);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-item {
  position: relative;
}

.process-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: -1rem;
}

.process-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.process-text {
  color: var(--muted);
  line-height: 1.7;
}

.result-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 0.75; /* Standard portrait ratio for mobile screenshots */
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.result-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sage);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

/* ===== TESTIMONIALS (LEGACY / OTHER) ===== */
.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-icon {
  color: var(--sage-light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sage);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--dark);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== CONTACT/FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  background: var(--dark);
  padding: 4rem;
  color: #fff;
}

.contact-form-container {
  padding: 4rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group.full {
  grid-column: span 2;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px hsla(135, 15%, 49%, 0.1);
}

.form-submit {
  grid-column: span 2;
  background: var(--dark);
  color: #fff;
  padding: 18px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 100px 0 40px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand h2 span { color: var(--sage); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li { margin-bottom: 1rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--sage); }

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25D366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

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

/* ===== CONSULTATION POPUP ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: #fff;
  width: 100%;
  max-width: 450px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.popup-close:hover {
  color: var(--dark);
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.popup-header p {
  font-size: 0.9rem;
  color: var(--sage);
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .coach-image-template { max-width: 450px; margin: 0 auto; }
  .expertise-grid { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
  .hero-title { font-size: 3rem; }
  .coach-stats-overlay { 
    right: 0; 
    left: 0; 
    bottom: -30px; 
    justify-content: center; 
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .contact-info, .contact-form-container { padding: 2.5rem 1.5rem; }
  .nav-logo { font-size: 1.2rem; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; font-size: 1.5rem; }
  .expertise-grid { grid-template-columns: 1fr; }
}

/* Smooth Touch Scrolling */
@media (hover: none) {
  .service-card:hover, .gallery-item:hover {
    transform: none;
  }
}
